diff --git a/.ddev/.gitignore b/.ddev/.gitignore
index 4efff32..9dc56c8 100644
--- a/.ddev/.gitignore
+++ b/.ddev/.gitignore
@@ -1,32 +1,19 @@
 #ddev-generated: Automatically generated ddev .gitignore.
 # You can remove the above line if you want to edit and maintain this file yourself.
-/.gitignore
 
-/**/*.example
-/.dbimageBuild
-/.ddev-docker-*.yaml
-/.*downloads
-/.homeadditions
-/.importdb*
-/.sshimageBuild
-/.webimageBuild
-/apache/apache-site.conf
-/commands/.gitattributes
-/config.local.y*ml
-/config.*.local.y*ml
+/import.yaml
+/docker-compose.yaml
 /db_snapshots
-/mutagen/mutagen.yml
-/mutagen/.start-synced
-/nginx_full/nginx-site.conf
-/postgres/postgresql.conf
-/providers/acquia.yaml
-/providers/lagoon.yaml
-/providers/pantheon.yaml
-/providers/platform.yaml
-/providers/upsun.yaml
 /sequelpro.spf
-/traefik/config/geo-coop.yaml
-/traefik/certs/geo-coop.crt
-/traefik/certs/geo-coop.key
-/xhprof/xhprof_prepend.php
-/**/README.*
+/import-db
+/.bgsync*
+/config.*.y*ml
+/.webimageBuild
+/.dbimageBuild
+/.bgsyncimageBuild
+/.sshimageBuild
+/.webimageExtra
+/.dbimageExtra
+/.webimageBuild
+/.dbimageBuild
+/*-build/Dockerfile.example
diff --git a/.ddev/commands/db/mysql b/.ddev/commands/db/mysql
new file mode 100755
index 0000000..23a06db
--- /dev/null
+++ b/.ddev/commands/db/mysql
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+## #ddev-generated
+## Description: run mysql client in db container
+## Usage: mysql [flags] [args]
+## Example: "ddev mysql" or "ddev mysql -uroot -proot" or "echo 'SHOW TABLES;' | ddev mysql"
+## `ddev mysql --database=mysql -uroot -proot` gets you to the 'mysql' database with root privileges
+
+mysql -udb -pdb $@
diff --git a/.ddev/config.yaml b/.ddev/config.yaml
index e7af573..2f334a9 100644
--- a/.ddev/config.yaml
+++ b/.ddev/config.yaml
@@ -1,96 +1,66 @@
-name: geo-coop
-type: drupal11
+APIVersion: v1.10.1
+name: geo
+type: drupal8
 docroot: web
-php_version: "8.1"
-webserver_type: apache-fpm
+php_version: "7.2"
+webserver_type: nginx-fpm
+router_http_port: "80"
+router_https_port: "443"
 xdebug_enabled: false
 additional_hostnames: []
 additional_fqdns: []
-database:
-    type: mariadb
-    version: "10.5"
+mariadb_version: "10.2"
+nfs_mount_enabled: false
+provider: default
 use_dns_when_possible: true
-composer_version: "2"
-web_environment: []
-nodejs_version: "16"
-corepack_enable: false
-default_container_timeout: "240"
+timezone: ""
 
-# Key features of DDEV's config.yaml:
+
+# This config.yaml was created with ddev version v1.10.1 
+# webimage: drud/ddev-webserver:v1.10.0
+# dbimage: drud/ddev-dbserver:v1.10.0-10.2
+# dbaimage: drud/phpmyadmin:v1.10.0
+# bgsyncimage: drud/ddev-bgsync:v1.10.0
+# However we do not recommend explicitly wiring these images into the
+# config.yaml as they may break future versions of ddev.
+# You can update this config.yaml using 'ddev config'.
+
+# Key features of ddev's config.yaml:
 
 # name: <projectname> # Name of the project, automatically provides
 #   http://projectname.ddev.site and https://projectname.ddev.site
 
-# type: <projecttype>  # 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
+# type: <projecttype>  # drupal6/7/8, backdrop, typo3, wordpress, php
 
 # docroot: <relative_path> # Relative path to the directory containing index.php.
 
-# php_version: "8.3"  # PHP version to use, "5.6" through "8.4"
+# php_version: "7.2"  # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3"
 
-# You can explicitly specify the webimage but this
-# is not recommended, as the images are often closely tied to DDEV's' behavior,
+# You can explicitly specify the webimage, dbimage, dbaimage lines but this
+# is not recommended, as the images are often closely tied to ddev's' behavior,
 # so this can break upgrades.
 
 # webimage: <docker_image>  # nginx/php docker image.
+# dbimage: <docker_image>  # mariadb docker image.
+# dbaimage: <docker_image>
+# bgsyncimage: <docker_image>
 
-# database:
-#   type: <dbtype> # mysql, mariadb, postgres
-#   version: <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>  # Port to be used for http (defaults to port 80)
+# router_https_port: <port> # Port for https (defaults to 443)
 
-# router_http_port: <port>  # Port to be used for http (defaults to global configuration, usually 80)
-# router_https_port: <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 exec enable_xdebug" and "ddev exec disable_xdebug" work better,
+# as leaving xdebug enabled all the time is a big performance hit.
 
-# 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
+# webserver_type: nginx-fpm  # Can be set to apache-fpm or apache-cgi as well
 
 # 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,
+# 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>
-# 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
@@ -103,56 +73,29 @@ default_container_timeout: "240"
 # 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 <docroot>/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
+# upload_dir: custom/upload/dir
+# would set the destination path for ddev import-files to custom/upload/dir.
 
 # 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.
+# 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.
+# omit_containers: ["dba", "ddev-ssh-agent"]
+# would omit the dba (phpMyAdmin) and ddev-ssh-agent containers. Currently
+# only those two containers can be omitted here.
+# Note that these containers can also be omitted globally in the 
+# ~/.ddev/global_config.yaml or with the "ddev config global" command.
 
-# 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
+# nfs_mount_enabled: false
+# Great performance improvement but requires host configuration first.
+# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container
 
-# fail_on_hook_fail: False
-# Decide whether 'ddev start' should be interrupted by a failing hook
+# webcache_enabled: false (deprecated)
+# Was only for macOS, but now deprecated. 
+# See https://ddev.readthedocs.io/en/stable/users/performance/#using-webcache_enabled-to-cache-the-project-directory
 
 # host_https_port: "59002"
 # The host port binding for https can be explicitly specified. It is
@@ -170,23 +113,21 @@ default_container_timeout: "240"
 # 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
+# phpmyadmin_port: "1000"
+# The PHPMyAdmin port can be changed from the default 8036
 
-# 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.
+# mailhog_port: "1001"
+# The MailHog port can be changed from the default 8025
 
-# webimage_extra_packages: [php7.4-tidy, php-bcmath]
+# webimage_extra_packages: [php-yaml, php7.3-ldap]
 # 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
+# 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
 
@@ -196,91 +137,19 @@ default_container_timeout: "240"
 # 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"
+# ngrok_args: --subdomain mysite --auth username:pass
+# Provide extra flags to the "ngrok http" command, see 
+# https://ngrok.com/docs#http 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.
+# provider: default # Currently either "default" or "pantheon"
 #
-# 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://<project>.ddev.site:9999 and http://<project>.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",
+# 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
+# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more
 # information on the commands that can be extended and the tasks you can define
 # for them. Example:
 #hooks:
 # post-import-db:
-#   - exec: drush sql:sanitize
-#   - exec: drush updatedb
-#   - exec: drush cache:rebuild
+#   - exec: drush cr
+#   - exec: drush updb
diff --git a/.ddev/traefik/certs/geo.crt b/.ddev/traefik/certs/geo.crt
deleted file mode 100644
index 82cf1e4..0000000
--- a/.ddev/traefik/certs/geo.crt
+++ /dev/null
@@ -1,27 +0,0 @@
-#ddev-generated
------BEGIN CERTIFICATE-----
-MIIEZjCCAs6gAwIBAgIRAK3U6VQeR8o6nUc7H7ksR+4wDQYJKoZIhvcNAQELBQAw
-UzEeMBwGA1UEChMVbWtjZXJ0IGRldmVsb3BtZW50IENBMRQwEgYDVQQLDAttbG5j
-bkBuaXhvczEbMBkGA1UEAwwSbWtjZXJ0IG1sbmNuQG5peG9zMB4XDTI1MDEyNTAz
-MjEyM1oXDTI3MDQyNTAyMjEyM1owPzEnMCUGA1UEChMebWtjZXJ0IGRldmVsb3Bt
-ZW50IGNlcnRpZmljYXRlMRQwEgYDVQQLDAttbG5jbkBuaXhvczCCASIwDQYJKoZI
-hvcNAQEBBQADggEPADCCAQoCggEBALcfIXjuIeyEIrS3ieJNMiyQi0908vdwRRPm
-JyF3pi3y59wkD/354M3qkCeciElXaFwocZLLc5aPDaeqe5RxP0MndQ0nX7HbQYyB
-9dgoThvrCKbE2hc/75AlpBa/2kVEoefVF7hqMVz1K/TU2fbUTUK0vpU73m4Aqdfa
-fN6XVUO4VvGcw1LcxkoIxPqNOU3TqVKyoRdfzchTqkhZv18lqa3IMhQCjAYhjt0q
-LIp8n1kSJP46ypubzdIUf6ZxSMlf1A1RYMItbV5nj6DWkCcl3oarpzBVA/aw+WSq
-OrhCgHBSKTluFJrQ6y1vUEFgcF6Hldekg2DIg4/uUUUztYz0ExECAwEAAaOByDCB
-xTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0jBBgw
-FoAUR3Cycv34IqivU0o5oFchbxNKLNswfQYDVR0RBHYwdIILKi5kZGV2LnNpdGWC
-CWxvY2FsaG9zdIIMKi5kZGV2LmxvY2FsggtkZGV2LXJvdXRlcoIQZGRldi1yb3V0
-ZXIuZGRldoIYZGRldi1yb3V0ZXIuZGRldl9kZWZhdWx0gg1nZW8uZGRldi5zaXRl
-hwR/AAABMA0GCSqGSIb3DQEBCwUAA4IBgQBDkTBQ9ky52hOYo/N4q4wVpZlCM/4k
-5pmPeeMz6Qjjq2IvniU8ts1gd+FrVjclY5jaoqlK7ke8fLF/y6Pc4/MMYgCk/l7d
-xCGCz6FzaN390M/qg4U4fDhAiauize/89nLd6+Su9cpwgyg8ZedeT4rDbdf0YM+U
-zuNN/3xz0r+k+Tno0KJZuggoyfWKWZpsFyQneKqVzO5O92pUIRKwhL04GEaK+rOe
-i3umlICWAZ2ENVOY/pc8Z760imO11pXTRnR8C80byk9yM0c6WmzVeMMybNxg3Bx8
-0v3h21/MeZRYcwkDO5pVI6VcJsCh2U60sZghCe1Zrj/lgJ9n1YZYRxLwEcll/2Bi
-w/pDIm5LiyBwwa7tYY8bWVaJ/dGKmVY0TbN5Qy1zSSnmwbLa/z6wmDJT6b3mqdU4
-4XYE0Yi2SGXYWyCBoipi6felZmyNJRcZgUAQm28kk2kUgdxQsLVVxL3/IAfZA4mZ
-HAUnA3Mpd6z3opjEnYZxx47tHXFRXs3+rWQ=
------END CERTIFICATE-----
diff --git a/.ddev/traefik/certs/geo.key b/.ddev/traefik/certs/geo.key
deleted file mode 100644
index 24695b8..0000000
--- a/.ddev/traefik/certs/geo.key
+++ /dev/null
@@ -1,29 +0,0 @@
-#ddev-generated
------BEGIN PRIVATE KEY-----
-MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQC3HyF47iHshCK0
-t4niTTIskItPdPL3cEUT5ichd6Yt8ufcJA/9+eDN6pAnnIhJV2hcKHGSy3OWjw2n
-qnuUcT9DJ3UNJ1+x20GMgfXYKE4b6wimxNoXP++QJaQWv9pFRKHn1Re4ajFc9Sv0
-1Nn21E1CtL6VO95uAKnX2nzel1VDuFbxnMNS3MZKCMT6jTlN06lSsqEXX83IU6pI
-Wb9fJamtyDIUAowGIY7dKiyKfJ9ZEiT+Osqbm83SFH+mcUjJX9QNUWDCLW1eZ4+g
-1pAnJd6Gq6cwVQP2sPlkqjq4QoBwUik5bhSa0Ostb1BBYHBeh5XXpINgyIOP7lFF
-M7WM9BMRAgMBAAECggEBAIfRryHifYbO+m7PMpWGbBBhpPHp68tameGIcr1/4OFz
-qES++p2FGBeiQgkfMHY1PlIcLSCThcfFknspFz+iPymvukFnUrK3zIZKXe1U95n9
-WQ1YM+nKogRn5qx434tAvFUW1+EP4kzwCwosVP2duTAgnrpRDUjJdS+D/dmapML0
-VAE9nlSZmSKd+pwKaOnxP0e+6rWm3/C7dGV7/kjsiE5odbSaYvIIFVaYwbRaDNa+
-5N+Omir2HFGABs9P1T6Pi4muCpTsNY6KbVeurOmYG5juN415B9jb1APuY+LtHCSf
-ecbv8KNk7ApFaz7BK1IZJ3lVIPnz4teGm7u2bmhIgAECgYEAxZHb6AexKzP4rbb2
-JycMwQUrsA9AIQ24lfsNq2izsN22BIFxOPvodM7nURV5v7NMlw/CzD2v6MpTbw/J
-axK1SigjROGLn1QHIuGhq1ykSX+fKVztzPXyAxpjvnZOrsVMM9BYRv/FtejSQnLF
-dKuxwxdg5GqizY4QKDwvgZp1EtECgYEA7UdkVbhr6aRZwQHWE2R9jCccgCzwimSC
-nXtje+vFTfKzRdtJ6U4VVY3vIy7BehpVgPZ0p/GjYzh6qLEqHgRVi53Botsedpmg
-/oQSqFQrmn/Vob7saUy8B3tOMll1FoEU92YrQEYonrBhyTFMuzfIiwcQwRgUtMR4
-8JCWxbvwjEECgYEAjRHP7oaHh6ytVQR+EIi+f5g8kJLjHHbapSTEpu6014YHsIHo
-oWKloboWyvvFmg7hkj9rvUASueq11mh0TmLmVZQBUu6lLlfmXI61TFFy8RQSRouX
-NLEsY/DU5as+FWbFOX37en6o4nHiqBWhTeRGomGwCojlxFY6zS/kT+tEyvECgYBJ
-ik72omoPx/hpcYBAEm02+whCUatbuTsiRBPZXIGSXx5hEE4gGStTkOIFLYCZr3/A
-sKIHS0Uwg1jA3+gF1aIN258gMnmGmKblO1ntAelhwS0dLGdpW3cLepQJ1uALUYaG
-Bwxwp03/oPstuDHn9KobLN1se2IvhJVXOfkA3/b2AQKBgQCqkZxAPnfOrN2ethtV
-w/jsYzBNfhqTk9/B4G4j/I3GTfltk64JFBZud8ci4e1DJEkchWQZlIbiX9Fnx4+M
-CFFmDo2Tn40tQdi50m8BgbMoes9vlXCtSFFgoJUQBLTJ/n8N0y7nN2Gw40/jLmag
-mkFdV/iE29uEMgFLDLgcrH6/jw==
------END PRIVATE KEY-----
diff --git a/.ddev/traefik/config/geo.yaml b/.ddev/traefik/config/geo.yaml
deleted file mode 100644
index b628029..0000000
--- a/.ddev/traefik/config/geo.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
-#ddev-generated
-# If you remove the ddev-generated line above you
-# are responsible for maintaining this file. DDEV will not then
-# update it, for example if you add `additional_hostnames`, etc.
-
-http:
-  routers:
-    geo-web-80-http:
-      entrypoints:
-        - http-80
-      rule: HostRegexp(`^geo\.ddev\.site$`)
-      
-      service: "geo-web-80"
-      ruleSyntax: v3
-      tls: false
-      # middlewares:
-      #   - "geo-redirectHttps"
-    geo-web-8025-http:
-      entrypoints:
-        - http-8025
-      rule: HostRegexp(`^geo\.ddev\.site$`)
-      
-      service: "geo-web-8025"
-      ruleSyntax: v3
-      tls: false
-      # middlewares:
-      #   - "geo-redirectHttps"
-    
-    
-    
-    geo-web-80-https:
-      entrypoints:
-        - http-443
-      rule: HostRegexp(`^geo\.ddev\.site$`)
-      
-      service: "geo-web-80"
-      ruleSyntax: v3
-      
-      tls: true
-      
-    geo-web-8025-https:
-      entrypoints:
-        - http-8026
-      rule: HostRegexp(`^geo\.ddev\.site$`)
-      
-      service: "geo-web-8025"
-      ruleSyntax: v3
-      
-      tls: true
-      
-    
-
-  middlewares:
-    geo-redirectHttps:
-      redirectScheme:
-        scheme: https
-        permanent: true
-
-  services:
-    geo-web-80:
-      loadbalancer:
-        servers:
-          - url: http://ddev-geo-web:80
-        
-    geo-web-8025:
-      loadbalancer:
-        servers:
-          - url: http://ddev-geo-web:8025
-        
-    
-    
-    
-
-tls:
-  certificates:
-    - certFile: /mnt/ddev-global-cache/traefik/certs/geo.crt
-      keyFile: /mnt/ddev-global-cache/traefik/certs/geo.key
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index c15e746..2aeb67f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,7 +4,6 @@
 # Drutopia-provided files which should not be overridden
 /web/core
 /web/modules/contrib
-/web/libraries/
 /web/profiles/contrib
 /web/themes/contrib
 /web/sites/default/files
@@ -18,9 +17,6 @@
 /web/sites/example.sites.php
 /vendor/
 
-# Temporary data dumps directory
-/backups/
-
-# Drupal scaffolding auto-added ignores
-/.editorconfig
-/.gitattributes
+# This file will contain just the files of the old site
+d7
+data
diff --git a/.gitlab/issue_templates/bug.md b/.gitlab/issue_templates/bug.md
index 6228ae7..e779023 100644
--- a/.gitlab/issue_templates/bug.md
+++ b/.gitlab/issue_templates/bug.md
@@ -26,4 +26,4 @@ If bug is not present in a certain browser, specify that as well.
 
 
 /label ~Bug
-/assign @freescholar
+/assign @cedewey
diff --git a/.gitlab/issue_templates/task.md b/.gitlab/issue_templates/task.md
index 1b2580c..aa0ceae 100644
--- a/.gitlab/issue_templates/task.md
+++ b/.gitlab/issue_templates/task.md
@@ -7,4 +7,4 @@
 
 
 /label ~Task
-/assign @freescholar
+/assign @cedewey
diff --git a/.gitlab/issue_templates/user-story.md b/.gitlab/issue_templates/user-story.md
index 17f865a..3c5af98 100644
--- a/.gitlab/issue_templates/user-story.md
+++ b/.gitlab/issue_templates/user-story.md
@@ -18,4 +18,4 @@ so that [reason].
 [Steps required to complete user story, usually completed by Agaric.]
 
 /label ~"User Story"
-/assign @freescholar
+/assign @cedewey
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 8c45cc4..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
-  "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"
-    }
-  ]
-}
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index f8df0f8..0000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
-  "intelephense.environment.phpVersion": "8.1"
-}
\ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644
index 128c7cf..0000000
--- a/.vscode/tasks.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-	"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
-			}
-		}
-	]
-}
\ No newline at end of file
diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md
deleted file mode 100644
index a991491..0000000
--- a/DEPLOYMENT.md
+++ /dev/null
@@ -1,19 +0,0 @@
-Set up
-
-Make sure all your code is pushed, including an updated composer.lock file if you've made any changes to modules, themes, or libraries brought in that way.
-
-```shell
-cd ~/Projects/drutopia-platform/drutopia_host/hosting_private/
-just git-pull-all
-just docker
-just deploy-build test news
-just deploy-site test geo_test
-```
-
-When you're absolutely certain and ready to do a force override quickly:
-
-```
-just deploy-build-and-site-force test news geo_test
-```
-
-And same for `_live` of course.
diff --git a/README.md b/README.md
index f667e81..b072dd4 100644
--- a/README.md
+++ b/README.md
@@ -4,16 +4,12 @@ This project is based on Drutopia, which means it is compatible with
 existing and future Drutopia features.  We will be diverging from
 Drutopia for special functionality, however.
 
-See [DEPLOYMENT.md](DEPLOYMENT.md) for easy deploy instructions with Ahoy.
-
 ## Getting started
 
 One time:
 
-```shell
-mkdir -p ~/Projects/geo
-cd ~/Projects/geo
-git clone git@git.agaric.com:geo/geo-coop.git
+```
+git clone git@gitlab.com:agaric/sites/geo.git
 cd geo
 ```
 
@@ -22,30 +18,90 @@ the following steps to work.
 
 Whenever you want a fresh start:
 
-```shell
+
+```
 git pull
 ddev start
 ddev composer update
-ddev drush -y site:install minimal --existing-config
+ddev . drush -y site:install minimal --existing-config
 ```
 
 Note: If you receive a `Permission denied (publickey).` error it means you need to copy your key into the DDEV container by running `ddev auth ssh`.
 
 ## Pull live content down for development
 
-```shell
-ddev drush sql-sync @live @self
-ddev drush -y rsync --exclude-paths=css:js:php --verbose @live:%files/ @self:%files
+```
+drush sql-sync @live @self
+drush -y rsync --exclude-paths=css:js:php --verbose @live:%files/ @self:%files
 ```
 
-## Compile CSS
 
-```shell
-ddev npm run sass-dev
+## Running the migration in development
+
+Download the D7 files via the Backup and Migrate module.
+
+Put the D7 files in the following location:
 ```
+<Project Root>/d7/sites/default/files/
+```
+There is a reference to the `sites/default/files` in the database so that structure is mandatory for the migration.
 
-Or when ready to commit for production deploy:
+The path in the `upgrade_d7_file.yml` migration file is different because this is executed inside the docker container so in the docker container the <Project Root> is: `/var/www/html/` but no need to re-create those folders in the host machine.
+
+Download a database dump of the D7 site via the Backup and Migrate module.
+
+Create a database called `drupal7`:
+
+Use `ddev describe` to see what the host and port are for your local environment, and use that in the first line here:
 
 ```
-ddev npm run sass-prod
+mysql --host=127.0.0.1 --port=32779 --user=root --password=root --database=db
+CREATE DATABASE drupal7;
+GRANT ALL ON drupal7.* to 'db'@'%' IDENTIFIED BY 'db';
 ```
+
+Now `ctrl+c` out of there, and, again substituting the host and port for your own, import your file from whereever you placed and named your db SQL dump:
+
+```
+mysql --host=127.0.0.1 --port=32779 --user=root --password=root --database=drupal7 < data/db.mysql
+```
+
+(Above per [instructions for creating another database in ddev](https://stackoverflow.com/a/49785024/1943924).)
+
+Once the files are in the correct place and the database has been created we can run the following  to run all the migrations:
+
+```
+ddev . drush mim --group="migrate_drupal_7_geo"
+```
+Note: The migration will partially fail because of missing files. For now, re-run the migration command and it will complete the migration.
+
+## Running the migration on the hosted instance
+
+1. Ensure the files you need are uploaded to the server. Obtain the latest from the prior site: database, and files. Upload these to the server (e.g. `scp *.gz geo_live@drutopia.org:`) and we'll extract them there.
+1. If a deployment has been performed already, it must be moved out of the way by removing existing databases. Log into the server (`ssh geo_live@drutopia.org`) and remove the database(s):
+   - Start the mysql client (logged into geo_live): `mysql`
+   - Drop the drupal db: `drop database geo_live;`
+   - Drop the migration source db: `drop database geo_legacy;`
+   - Exit mysql by typing `ctrl+d`
+1. Extract the uploaded files (still on server):
+   - Unzip the uploaded database file (this expects there to be only ONE such file): `gunzip *.mysql.gz`
+   - Rename the database file: `mv *.mysql geo_legacy.sql`
+   - Unpack the files, but first cd to where they go (again, there should only be ONE file ending in .tar.gz in home): `cd site/d7/sites/default/files/` and untar: `tar xzf ~/*.tar.gz` (this will take a minute/two).
+   - The server side is ready! Log off by typing `ctrl+d`
+1. Now perform a deployment with drutopia_hosting. This will install the site using the minimal profile and existing config:
+   - `ahoy deploy-build news`
+   - `ahoy deploy-site geo_live`
+1. Return to the server (`ssh geo_live@drutopia.org`), load legacy db and run the migration:
+   - Read the db source into the proper database: `mysql geo_legacy < geo_legacy.sql`
+   - `drush mim --group="migrate_drupal_7_geo"`
+   - `drush php:script article_type_term.php`
+
+## Post go-live tasks
+
+1. Remove all d7 files: `rm -rf site/d7` and `rm geo_legacy.sql`, etc.
+1. Change the site settings in hosting:
+   - config_import -> True
+   - php_settings_code -> blank
+1. Change the news build settings in hosting:
+   - remove custom build commands (i.e. sed)
+1. At this point, the deploy should be typical (deploy-build/deploy-site as normal)
diff --git a/UPGRADE.md b/UPGRADE.md
deleted file mode 100644
index 4375345..0000000
--- a/UPGRADE.md
+++ /dev/null
@@ -1,34 +0,0 @@
-## Uninstall
-
-### The following will be uninstalled automatically on deploy to D9-latest (now merged into master branch)
-
-- Color
-- Quick Edit
-- Seven
-
-### The following can be removed manually after the D10 upgrade is complete
-
-- Stable (uninstall and remove from composer.json)
-- Geo upgrade (this one is actually now used during the upgrade, and it may not hurt to keep it around, though it can be uninstalled at the end)
-
-### Migration related modules
-
-Modules related to the migration from D7 to D8 are still enabled, they can probably be disabled, but this can be done after the upgrade is finished.
-
-## Drupal 9.3.3 -> Drupal 9 latest
-
-1. Add the following to the vault member:
-```
-post_deploy:
-        - command: "then stable9"
-          action: drush
-```
-2. Deploy master branch to site
-3. Remove the post_deploy command from the vault member
-
-## Drupal 9 latest -> Drupal 10
-
-1. Deploy drupal10-rebased branch to site
-2. Edit media items and apply cropping where needed (likely the hero blocks in header and footer will be tiny)
-3. Uninstall Stable theme and Geo Upgrade custom module (remember to commit this change)
-4. After finally deployed to live, remove the root composer dependency on honeypot (this was there because honeypot needed a constraint in order to apply database updates correctly)
diff --git a/composer.json b/composer.json
index cc6ae2b..daed21b 100644
--- a/composer.json
+++ b/composer.json
@@ -1,224 +1,87 @@
 {
     "name": "agaric-sites/geo",
-    "description": "Drutopia-based site for the Grassroots Economic Organizing collective and potentially other news sites.",
-    "homepage": "https://geo.coop",
+    "description": "Drutopia-based site for the Grassroots Economic Organizing collective.",
     "type": "project",
-    "license": "GPL-2.0-or-later",
+    "license": "GPL-2.0+",
     "minimum-stability": "dev",
     "prefer-stable": true,
-    "support": {
-        "docs": "http://docs.drutopia.org/en/latest",
-        "issues": "https://gitlab.com/drutopia/drutopia/-/issues"
+    "config": {
+        "sort-packages": true
+    },
+    "require": {
+        "composer/installers": "^1.0",
+        "cweagans/composer-patches": "^1.0",
+        "drupal-composer/drupal-scaffold": "^2.0.0",
+        "drupal/claro": "^1.0@alpha",
+        "drupal/config_actions": "1.x-dev",
+        "drupal/convert_bundles": "^1.0@alpha",
+        "drupal/cshs": "^1.0@beta",
+        "drupal/drutopia_collection": "dev-8.x-1.x as 1.x-dev",
+        "drupal/field_token_value": "^1.0",
+        "drupal/fixed_block_content": "^1.0",
+        "drupal/link_attributes": "^1.9",
+        "drupal/migrate_plus": "^4.2",
+        "drupal/migrate_source_csv": "3.1",
+        "drupal/migrate_tools": "^4.1",
+        "drupal/migrate_upgrade": "^3",
+        "drush/drush": "^9.0",
+        "drutopia/drutopia": "^1.0-beta2"
     },
     "repositories": {
-        "drupal/empty_page": {
-            "type": "git",
-            "url": "git@git.drupal.org:issue/empty_page-3287186.git"
-        },
         "drupal": {
             "type": "composer",
             "url": "https://packages.drupal.org/8"
+        },
+        "drutopia": {
+            "type": "vcs",
+            "url": "https://github.com/drutopia/drutopia"
+        },
+        "drupal/drutopia_collection": {
+            "type": "git",
+            "url": "git@gitlab.com:drutopia/drutopia_collection.git"
         }
     },
-    "require": {
-        "composer/installers": "^2",
-        "cweagans/composer-patches": "^1.7",
-        "drupal/admin_toolbar": "^3",
-        "drupal/antibot": "^2",
-        "drupal/asset_injector": "^2",
-        "drupal/auto_entitylabel": "^3",
-        "drupal/backup_migrate": "^5",
-        "drupal/better_exposed_filters": "^6",
-        "drupal/block_class": "^4",
-        "drupal/bpmn_io": "^1",
-        "drupal/cancel_button": "^1",
-        "drupal/ckeditor_iframe": "^3.0@beta",
-        "drupal/ckeditorheight": "^1",
-        "drupal/classitup": "^1",
-        "drupal/comment_notify": "^1",
-        "drupal/content_lock": "^2",
-        "drupal/convert_bundles": "^2",
-        "drupal/core-composer-scaffold": "^10",
-        "drupal/core-recommended": "^10",
-        "drupal/cshs": "^4",
-        "drupal/csp": "^1",
-        "drupal/customerror": "^1",
-        "drupal/dashboards": "^2",
-        "drupal/date_popup": "^2",
-        "drupal/datetimehideseconds": "^1",
-        "drupal/diff": "^1",
-        "drupal/drd_agent": "^4",
-        "drupal/drutopia_collection": "2.0.x-dev@dev",
-        "drupal/drutopia_core": "2.0.x-dev@dev",
-        "drupal/drutopia_organization": "2.0.x-dev@dev",
-        "drupal/drutopia_paragraph_title": "^1",
-        "drupal/drutopia_site": "2.0.x-dev@dev",
-        "drupal/easy_breadcrumb": "^2",
-        "drupal/eca": "^1",
-        "drupal/eca_context": "^1.0",
-        "drupal/editor_advanced_link": "^2.0",
-        "drupal/editoria11y": "^2",
-        "drupal/empty_page": "dev-8.x-1.x",
-        "drupal/entity_reference_override": "^2",
-        "drupal/entitygroupfield": "^2",
-        "drupal/environment_indicator": "^4",
-        "drupal/eva": "^3",
-        "drupal/exif_orientation": "^1",
-        "drupal/facet_bot_blocker": "^1.0",
-        "drupal/facets": "dev-3.0.x as 2.0.x-dev",
-        "drupal/fakeobjects": "^2",
-        "drupal/field_defaults": "^2",
-        "drupal/field_formatter_class": "^1",
-        "drupal/field_token_value": "^3",
-        "drupal/filter_perms": "^1",
-        "drupal/fitvids": "^2",
-        "drupal/fixed_block_content": "^1",
-        "drupal/footnotes": "^4",
-        "drupal/geolocation": "^3",
-        "drupal/gin_gutenberg": "^1",
-        "drupal/gin_login": "^2",
-        "drupal/givebutter": "1.0.x-dev@dev",
-        "drupal/google_analytics": "^4",
-        "drupal/gutenberg": "^2",
-        "drupal/http_cache_control": "^2",
-        "drupal/http_client_error_status": "^3",
-        "drupal/ief_complex_open": "^1",
-        "drupal/indieweb": "^1",
-        "drupal/inotherwords": "^3",
-        "drupal/insert": "^3",
-        "drupal/key": "^1.14",
-        "drupal/link_attributes": "^1.9",
-        "drupal/linkit": "^6",
-        "drupal/mailchimp": "^2",
-        "drupal/markdown": "^3",
-        "drupal/menu_link_config": "^1.0@alpha",
-        "drupal/menu_trail_by_path": "^2",
-        "drupal/microformats": "^2",
-        "drupal/migrate_plus": "^6",
-        "drupal/migrate_source_csv": "^3",
-        "drupal/migrate_tools": "^6",
-        "drupal/migrate_upgrade": "^4",
-        "drupal/migration_helpers": "1.0.x-dev@dev",
-        "drupal/minimalhtml": "^2",
-        "drupal/node_view_permissions": "^1.4",
-        "drupal/noreferrer": "^1",
-        "drupal/notfoundpassthrough": "1.x-dev",
-        "drupal/octavia": "2.0.x-dev@dev",
-        "drupal/octavia_camouflage": "2.0.x-dev@dev",
-        "drupal/paragraphs_features": "^2",
-        "drupal/password_policy": "^4",
-        "drupal/plausible": "^2.0@beta",
-        "drupal/prepopulate": "^2",
-        "drupal/preview_link": "^2",
-        "drupal/printable": "^3",
-        "drupal/r4032login": "^2",
-        "drupal/rabbit_hole": "^1.0@beta",
-        "drupal/regionincontent": "^1",
-        "drupal/registration_role": "^2",
-        "drupal/require_on_publish": "^1",
-        "drupal/role_delegation": "^1",
-        "drupal/scheduler": "^1",
-        "drupal/schema_metatag": "^3",
-        "drupal/scn": "^2",
-        "drupal/search404": "^2",
-        "drupal/search_api_autocomplete": "^1.6",
-        "drupal/search_api_saved_searches": "^1",
-        "drupal/seckit": "^2",
-        "drupal/select_or_other": "^4.0",
-        "drupal/shield": "^1.4",
-        "drupal/simple_sitemap": "^4.1",
-        "drupal/smart_date": "^4",
-        "drupal/sms": "^2",
-        "drupal/social_post_facebook": "3.0.x-dev@dev",
-        "drupal/social_post_twitter": "3.x-dev@dev",
-        "drupal/stable": "^2.0",
-        "drupal/stringoverrides": "^1.8",
-        "drupal/subpathauto": "^1.0@RC",
-        "drupal/taxonomy_import": "^2",
-        "drupal/taxonomy_manager": "^2",
-        "drupal/textarea_widget_for_text": "^1.1",
-        "drupal/tomselect": "1.0.x-dev@dev",
-        "drupal/trim": "^2",
-        "drupal/twig_tweak": "^3",
-        "drupal/ui_patterns": "^1",
-        "drupal/unique_content_field_validation": "^1.1",
-        "drupal/view_password": "^6",
-        "drupal/view_unpublished": "^1.0",
-        "drupal/viewsreference": "^1",
-        "drupal/visitors": "^2.17",
-        "drupal/webform": "^6.0",
-        "drupal/weight": "^3.3",
-        "drupal/workflow_buttons": "1.x-dev",
-        "drupal/wysiwyg_linebreaks": "^2",
-        "drush/drush": "*",
-        "drutopia/drutopia": "2.0.x-dev",
-        "league/commonmark": "^1.0",
-        "vlucas/phpdotenv": "^5.1",
-        "webflo/drupal-finder": "^1.2"
-    },
-    "require-dev": {
-        "behat/behat": "^3.4",
-        "behat/mink": "^1.7",
-        "drupal/upgrade_status": "^4"
-    },
-    "config": {
-        "sort-packages": true,
-        "process-timeout": 600,
-        "allow-plugins": {
-            "composer/installers": true,
-            "cweagans/composer-patches": true,
-            "drupal/core-composer-scaffold": true,
-            "drupal/core-project-message": false
-        }
-    },
-    "conflict": {
-        "drupal/drupal": "*"
+    "scripts": {
+        "post-install-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
+        "post-update-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
+        "nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
+        "quick-start": [
+            "composer install",
+            "php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
+        ]
     },
     "extra": {
-        "drupal-scaffold": {
-            "locations": {
-                "web-root": "web/"
-            },
-            "allowed-packages": [
-                "drupal/ui_patterns"
-            ]
-        },
         "installer-paths": {
-            "web/core": ["type:drupal-core"],
-            "web/libraries/{$name}": ["type:drupal-library"],
-            "web/modules/contrib/{$name}": ["type:drupal-module"],
-            "web/profiles/contrib/{$name}": ["type:drupal-profile"],
-            "web/themes/contrib/{$name}": ["type:drupal-theme"],
-            "drush/Commands/contrib/{$name}": ["type:drupal-drush"],
-            "web/modules/custom/{$name}": ["type:drupal-custom-module"],
-            "web/themes/custom/{$name}": ["type:drupal-custom-theme"]
-        },
-        "merge-plugin": {
-            "include": [
-                "web/modules/contrib/webform/composer.libraries.json"
+            "web/core": [
+                "drupal/core"
+            ],
+            "web/modules/contrib/{$name}": [
+                "type:drupal-module"
+            ],
+            "web/profiles/contrib/{$name}": [
+                "type:drupal-profile"
+            ],
+            "web/themes/contrib/{$name}": [
+                "type:drupal-theme"
+            ],
+            "drush/contrib/{$name}": [
+                "type:drupal-drush"
             ]
         },
         "enable-patching": true,
         "patches": {
             "drupal/core": {
-                "Adding attributes to views-view-list.html.twig doesn't work if Views List class Style option is empty": "https://www.drupal.org/files/issues/2023-03-16/2845400-24.patch",
-                "Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2024-08-21/2648950-284.patch",
-                "Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch"
+                "Allow an install hook in profiles installing from configuration": "https://www.drupal.org/files/issues/2018-11-27/2982052-22.patch"
             },
-            "drupal/ds": {
-                "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch"
+            "drutopia/drutopia": {
+                "Remove default content": "patches/drutopia-remove-default-content.patch"
             },
-            "drupal/unique_content_field_validation": {
-                "Overriden title field" : "https://www.drupal.org/files/issues/2023-01-05/unique-validation-title-override.patch"
+            "drupal/drutopia_core": {
+                "Remove default content": "patches/drutopia-core-remove-default-content.patch"
+            },
+            "drupal/migrate_tools": {
+                "The limit option does not accept a value": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
             }
         }
-    },
-    "scripts": {
-        "nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
-        "pull": "scripts/pull.sh",
-        "quick-start": [
-            "composer install",
-            "php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
-        ]
     }
 }
diff --git a/composer.lock b/composer.lock
index ba7688e..01208c1 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,211 +4,40 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "6bd753978fb10f60c53d2cc9ad07ba28",
+    "content-hash": "f804ec4ad073c4fec671eba27c8682ee",
     "packages": [
         {
-            "name": "abraham/twitteroauth",
-            "version": "7.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/abraham/twitteroauth.git",
-                "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/abraham/twitteroauth/zipball/a8622680f954d0c4f54fd80bedebe00c756ed7aa",
-                "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa",
-                "shasum": ""
-            },
-            "require": {
-                "composer/ca-bundle": "^1.2",
-                "ext-curl": "*",
-                "php": "8.*"
-            },
-            "require-dev": {
-                "php-vcr/php-vcr": "^1",
-                "php-vcr/phpunit-testlistener-vcr": "dev-php8",
-                "phpmd/phpmd": "^2",
-                "phpunit/phpunit": "^9",
-                "rector/rector": "^0.15.7",
-                "squizlabs/php_codesniffer": "^3"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Abraham\\TwitterOAuth\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Abraham Williams",
-                    "email": "abraham@abrah.am",
-                    "homepage": "https://abrah.am",
-                    "role": "Developer"
-                }
-            ],
-            "description": "The most popular PHP library for use with the Twitter OAuth REST API.",
-            "homepage": "https://twitteroauth.com",
-            "keywords": [
-                "Twitter API",
-                "Twitter oAuth",
-                "api",
-                "oauth",
-                "rest",
-                "social",
-                "twitter"
-            ],
-            "support": {
-                "issues": "https://github.com/abraham/twitteroauth/issues",
-                "source": "https://github.com/abraham/twitteroauth"
-            },
-            "time": "2024-02-11T18:58:08+00:00"
-        },
-        {
-            "name": "agaric/oxford-comma",
+            "name": "asm89/stack-cors",
             "version": "1.2.0",
-            "source": {
-                "type": "git",
-                "url": "git@gitlab.com:agaric/php/oxford-comma.git",
-                "reference": "62afcb36604999659fcfec4502c120152b39bfc6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://gitlab.com/api/v4/projects/agaric%2Fphp%2Foxford-comma/repository/archive.zip?sha=62afcb36604999659fcfec4502c120152b39bfc6",
-                "reference": "62afcb36604999659fcfec4502c120152b39bfc6",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.3.0"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/OxfordComma.php"
-                ],
-                "psr-4": {
-                    "Agaric\\OxfordComma\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "AGPL-3.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "benjamin melançon",
-                    "email": "ben@agaric.com",
-                    "homepage": "https://agaric.coop/mlncn",
-                    "role": "Developer"
-                }
-            ],
-            "description": "A function to take a list of terms and return them in an English phrase with proper punctuation 'red, black, and white' or 'red and black'.",
-            "homepage": "https://gitlab.com/agaric/php/oxford-comma",
-            "keywords": [
-                "Lists",
-                "Oxford comma",
-                "display",
-                "output",
-                "punctuation",
-                "text"
-            ],
-            "time": "2020-03-26T13:04:29+00:00"
-        },
-        {
-            "name": "agaric/php-facebook",
-            "version": "dev-main",
-            "source": {
-                "type": "git",
-                "url": "https://gitlab.com/agaric/php/php-facebook.git",
-                "reference": "a0cc6954345d7d1cdf51c571e7950afa01127441"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://gitlab.com/api/v4/projects/agaric%2Fphp%2Fphp-facebook/repository/archive.zip?sha=a0cc6954345d7d1cdf51c571e7950afa01127441",
-                "reference": "a0cc6954345d7d1cdf51c571e7950afa01127441",
-                "shasum": ""
-            },
-            "require": {
-                "league/oauth2-facebook": "^2.0"
-            },
-            "default-branch": true,
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Agaric\\FacebookApi\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "AGPL-3.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "keegan rankin",
-                    "email": "keegan@agaric.coop",
-                    "homepage": "https://agaric.coop/keegan",
-                    "role": "Developer"
-                },
-                {
-                    "name": "benjamin melançon",
-                    "email": "ben@agaric.com",
-                    "homepage": "https://agaric.coop/mlncn",
-                    "role": "Developer"
-                }
-            ],
-            "description": "Extends the Facebook OAuth 2.0 Client Provider with methods for posting to Facebook",
-            "homepage": "https://gitlab.com/agaric/php/php-facebook",
-            "keywords": [
-                "Authentication",
-                "authorization",
-                "client",
-                "facebook",
-                "oauth",
-                "oauth2",
-                "post"
-            ],
-            "support": {
-                "issues": "https://gitlab.com/agaric/php/php-facebook/-/issues",
-                "source": "https://gitlab.com/agaric/php/php-facebook/-/tree/1.0.0"
-            },
-            "time": "2022-05-11T20:31:53+00:00"
-        },
-        {
-            "name": "asm89/stack-cors",
-            "version": "v2.2.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/asm89/stack-cors.git",
-                "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
+                "reference": "c163e2b614550aedcf71165db2473d936abbced6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
-                "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
+                "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
+                "reference": "c163e2b614550aedcf71165db2473d936abbced6",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.3|^8.0",
-                "symfony/http-foundation": "^5.3|^6|^7",
-                "symfony/http-kernel": "^5.3|^6|^7"
+                "php": ">=5.5.9",
+                "symfony/http-foundation": "~2.7|~3.0|~4.0",
+                "symfony/http-kernel": "~2.7|~3.0|~4.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^9",
-                "squizlabs/php_codesniffer": "^3.5"
+                "phpunit/phpunit": "^5.0 || ^4.8.10",
+                "squizlabs/php_codesniffer": "^2.3"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.2-dev"
+                    "dev-master": "1.2-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Asm89\\Stack\\": "src/"
+                    "Asm89\\Stack\\": "src/Asm89/Stack/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -227,152 +56,29 @@
                 "cors",
                 "stack"
             ],
-            "support": {
-                "issues": "https://github.com/asm89/stack-cors/issues",
-                "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
-            },
-            "time": "2023-11-14T13:51:46+00:00"
+            "time": "2017-12-20T14:37:45+00:00"
         },
         {
-            "name": "barnabywalters/mf-cleaner",
-            "version": "v0.1.4",
+            "name": "brumann/polyfill-unserialize",
+            "version": "v1.0.4",
             "source": {
                 "type": "git",
-                "url": "https://github.com/barnabywalters/php-mf-cleaner.git",
-                "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4"
+                "url": "https://github.com/dbrumann/polyfill-unserialize.git",
+                "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/barnabywalters/php-mf-cleaner/zipball/ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4",
-                "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4",
-                "shasum": ""
-            },
-            "require-dev": {
-                "php": ">=5.3",
-                "phpunit/phpunit": "*"
-            },
-            "suggest": {
-                "mf2/mf2": "To parse microformats2 structures from (X)HTML"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/BarnabyWalters/Mf2/Functions.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Barnaby Walters",
-                    "email": "barnaby@waterpigs.co.uk"
-                }
-            ],
-            "description": "Cleans up microformats2 array structures",
-            "support": {
-                "issues": "https://github.com/barnabywalters/php-mf-cleaner/issues",
-                "source": "https://github.com/barnabywalters/php-mf-cleaner/tree/v0.1.4"
-            },
-            "time": "2014-10-06T23:11:15+00:00"
-        },
-        {
-            "name": "caxy/php-htmldiff",
-            "version": "v0.1.16",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/caxy/php-htmldiff.git",
-                "reference": "5c580b4f09285c078f0c5cb261573412a736a8cb"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/5c580b4f09285c078f0c5cb261573412a736a8cb",
-                "reference": "5c580b4f09285c078f0c5cb261573412a736a8cb",
+                "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
+                "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
                 "shasum": ""
             },
             "require": {
-                "ext-dom": "*",
-                "ext-mbstring": "*",
-                "ezyang/htmlpurifier": "^4.7",
-                "php": ">=7.3"
-            },
-            "require-dev": {
-                "doctrine/cache": "~1.0",
-                "phpunit/phpunit": "~9.0"
-            },
-            "suggest": {
-                "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider"
+                "php": "^5.3|^7.0"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "0.1.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-0": {
-                    "Caxy\\HtmlDiff": "lib/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GPL-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Josh Schroeder",
-                    "email": "jschroeder@caxy.com",
-                    "homepage": "http://www.caxy.com"
-                }
-            ],
-            "description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
-            "homepage": "https://github.com/caxy/php-htmldiff",
-            "keywords": [
-                "diff",
-                "html"
-            ],
-            "support": {
-                "issues": "https://github.com/caxy/php-htmldiff/issues",
-                "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.16"
-            },
-            "time": "2025-01-22T17:03:45+00:00"
-        },
-        {
-            "name": "cebe/markdown",
-            "version": "1.2.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/cebe/markdown.git",
-                "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
-                "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
-                "shasum": ""
-            },
-            "require": {
-                "lib-pcre": "*",
-                "php": ">=5.4.0"
-            },
-            "require-dev": {
-                "cebe/indent": "*",
-                "facebook/xhprof": "*@dev",
-                "phpunit/phpunit": "4.1.*"
-            },
-            "bin": [
-                "bin/markdown"
-            ],
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.2.x-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
-                    "cebe\\markdown\\": ""
+                    "Brumann\\Polyfill\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -381,72 +87,47 @@
             ],
             "authors": [
                 {
-                    "name": "Carsten Brandt",
-                    "email": "mail@cebe.cc",
-                    "homepage": "http://cebe.cc/",
-                    "role": "Creator"
+                    "name": "Denis Brumann",
+                    "email": "denis.brumann@sensiolabs.de"
                 }
             ],
-            "description": "A super fast, highly extensible markdown parser for PHP",
-            "homepage": "https://github.com/cebe/markdown#readme",
-            "keywords": [
-                "extensible",
-                "fast",
-                "gfm",
-                "markdown",
-                "markdown-extra"
-            ],
-            "support": {
-                "issues": "https://github.com/cebe/markdown/issues",
-                "source": "https://github.com/cebe/markdown"
-            },
-            "time": "2018-03-26T11:24:36+00:00"
+            "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
+            "time": "2019-07-14T23:16:24+00:00"
         },
         {
             "name": "chi-teck/drupal-code-generator",
-            "version": "3.6.1",
+            "version": "1.30.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/Chi-teck/drupal-code-generator.git",
-                "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
+                "reference": "8b7ae331e21e58088e3e52688823692ed6471ec3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
-                "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
+                "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8b7ae331e21e58088e3e52688823692ed6471ec3",
+                "reference": "8b7ae331e21e58088e3e52688823692ed6471ec3",
                 "shasum": ""
             },
             "require": {
                 "ext-json": "*",
-                "php": ">=8.1.0",
-                "psr/event-dispatcher": "^1.0",
-                "psr/log": "^3.0",
-                "symfony/console": "^6.3",
-                "symfony/dependency-injection": "^6.3.2",
-                "symfony/filesystem": "^6.3",
-                "symfony/string": "^6.3",
-                "twig/twig": "^3.4"
-            },
-            "conflict": {
-                "squizlabs/php_codesniffer": "<3.6"
-            },
-            "require-dev": {
-                "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
-                "drupal/coder": "8.3.23",
-                "drupal/core": "10.3.x-dev",
-                "ext-simplexml": "*",
-                "phpspec/prophecy-phpunit": "^2.2",
-                "phpunit/phpunit": "^9.6",
-                "squizlabs/php_codesniffer": "^3.9",
-                "symfony/var-dumper": "^6.4",
-                "symfony/yaml": "^6.3",
-                "vimeo/psalm": "^5.22.2"
+                "php": ">=5.5.9",
+                "symfony/console": "^3.4 || ^4.0",
+                "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
+                "twig/twig": "^1.38.2 || ^2.10"
             },
             "bin": [
                 "bin/dcg"
             ],
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                }
+            },
             "autoload": {
+                "files": [
+                    "src/bootstrap.php"
+                ],
                 "psr-4": {
                     "DrupalCodeGenerator\\": "src"
                 }
@@ -456,36 +137,31 @@
                 "GPL-2.0-or-later"
             ],
             "description": "Drupal code generator",
-            "support": {
-                "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
-                "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
-            },
-            "time": "2024-06-06T17:36:37+00:00"
+            "time": "2019-08-25T06:39:56+00:00"
         },
         {
             "name": "commerceguys/addressing",
-            "version": "v2.2.4",
+            "version": "v1.0.5",
             "source": {
                 "type": "git",
                 "url": "https://github.com/commerceguys/addressing.git",
-                "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda"
+                "reference": "2d048bfdb3b79f2d87f5d5b078769c059eaa3eb1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda",
-                "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda",
+                "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2d048bfdb3b79f2d87f5d5b078769c059eaa3eb1",
+                "reference": "2d048bfdb3b79f2d87f5d5b078769c059eaa3eb1",
                 "shasum": ""
             },
             "require": {
-                "doctrine/collections": "^1.6 || ^2.0",
-                "php": ">=8.0"
+                "doctrine/collections": "~1.0",
+                "php": ">=5.5.0"
             },
             "require-dev": {
-                "ext-json": "*",
-                "mikey179/vfsstream": "^1.6.11",
-                "phpunit/phpunit": "^9.6",
-                "squizlabs/php_codesniffer": "^3.7",
-                "symfony/validator": "^5.4 || ^6.3 || ^7.0"
+                "mikey179/vfsstream": "1.*",
+                "phpunit/phpunit": "~4.0",
+                "squizlabs/php_codesniffer": "2.*",
+                "symfony/validator": ">=3.2"
             },
             "suggest": {
                 "symfony/validator": "to validate addresses"
@@ -493,7 +169,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.x-dev"
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
@@ -520,121 +196,39 @@
                 "localization",
                 "postal"
             ],
-            "support": {
-                "issues": "https://github.com/commerceguys/addressing/issues",
-                "source": "https://github.com/commerceguys/addressing/tree/v2.2.4"
-            },
-            "time": "2025-01-13T16:03:24+00:00"
-        },
-        {
-            "name": "composer/ca-bundle",
-            "version": "1.5.6",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/composer/ca-bundle.git",
-                "reference": "f65c239c970e7f072f067ab78646e9f0b2935175"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175",
-                "reference": "f65c239c970e7f072f067ab78646e9f0b2935175",
-                "shasum": ""
-            },
-            "require": {
-                "ext-openssl": "*",
-                "ext-pcre": "*",
-                "php": "^7.2 || ^8.0"
-            },
-            "require-dev": {
-                "phpstan/phpstan": "^1.10",
-                "phpunit/phpunit": "^8 || ^9",
-                "psr/log": "^1.0 || ^2.0 || ^3.0",
-                "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-main": "1.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Composer\\CaBundle\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Jordi Boggiano",
-                    "email": "j.boggiano@seld.be",
-                    "homepage": "http://seld.be"
-                }
-            ],
-            "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
-            "keywords": [
-                "cabundle",
-                "cacert",
-                "certificate",
-                "ssl",
-                "tls"
-            ],
-            "support": {
-                "irc": "irc://irc.freenode.org/composer",
-                "issues": "https://github.com/composer/ca-bundle/issues",
-                "source": "https://github.com/composer/ca-bundle/tree/1.5.6"
-            },
-            "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": "2025-03-06T14:30:56+00:00"
+            "time": "2019-06-27T10:43:27+00:00"
         },
         {
             "name": "composer/installers",
-            "version": "v2.3.0",
+            "version": "v1.7.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/composer/installers.git",
-                "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e"
+                "reference": "141b272484481432cda342727a427dc1e206bfa0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e",
-                "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e",
+                "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
+                "reference": "141b272484481432cda342727a427dc1e206bfa0",
                 "shasum": ""
             },
             "require": {
-                "composer-plugin-api": "^1.0 || ^2.0",
-                "php": "^7.2 || ^8.0"
+                "composer-plugin-api": "^1.0"
+            },
+            "replace": {
+                "roundcube/plugin-installer": "*",
+                "shama/baton": "*"
             },
             "require-dev": {
-                "composer/composer": "^1.10.27 || ^2.7",
-                "composer/semver": "^1.7.2 || ^3.4.0",
-                "phpstan/phpstan": "^1.11",
-                "phpstan/phpstan-phpunit": "^1",
-                "symfony/phpunit-bridge": "^7.1.1",
-                "symfony/process": "^5 || ^6 || ^7"
+                "composer/composer": "1.0.*@dev",
+                "phpunit/phpunit": "^4.8.36"
             },
             "type": "composer-plugin",
             "extra": {
                 "class": "Composer\\Installers\\Plugin",
                 "branch-alias": {
-                    "dev-main": "2.x-dev"
-                },
-                "plugin-modifies-install-path": true
+                    "dev-master": "1.0-dev"
+                }
             },
             "autoload": {
                 "psr-4": {
@@ -655,6 +249,7 @@
             "description": "A multi-framework Composer library installer",
             "homepage": "https://composer.github.io/installers/",
             "keywords": [
+                "Craft",
                 "Dolibarr",
                 "Eliasis",
                 "Hurad",
@@ -662,7 +257,6 @@
                 "Kanboard",
                 "Lan Management System",
                 "MODX Evo",
-                "MantisBT",
                 "Mautic",
                 "Maya",
                 "OXID",
@@ -670,11 +264,11 @@
                 "Porto",
                 "RadPHP",
                 "SMF",
-                "Starbug",
                 "Thelia",
                 "Whmcs",
                 "WolfCMS",
                 "agl",
+                "aimeos",
                 "annotatecms",
                 "attogram",
                 "bitrix",
@@ -683,7 +277,6 @@
                 "cockpit",
                 "codeigniter",
                 "concrete5",
-                "concreteCMS",
                 "croogo",
                 "dokuwiki",
                 "drupal",
@@ -694,6 +287,7 @@
                 "grav",
                 "installer",
                 "itop",
+                "joomla",
                 "known",
                 "kohana",
                 "laravel",
@@ -702,18 +296,14 @@
                 "magento",
                 "majima",
                 "mako",
-                "matomo",
                 "mediawiki",
-                "miaoxing",
                 "modulework",
                 "modx",
                 "moodle",
                 "osclass",
-                "pantheon",
                 "phpbb",
                 "piwik",
                 "ppi",
-                "processwire",
                 "puppet",
                 "pxcms",
                 "reindex",
@@ -721,58 +311,40 @@
                 "shopware",
                 "silverstripe",
                 "sydes",
-                "sylius",
-                "tastyigniter",
+                "symfony",
+                "typo3",
                 "wordpress",
                 "yawik",
                 "zend",
                 "zikula"
             ],
-            "support": {
-                "issues": "https://github.com/composer/installers/issues",
-                "source": "https://github.com/composer/installers/tree/v2.3.0"
-            },
-            "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-06-24T20:46:46+00:00"
+            "time": "2019-08-12T15:00:31+00:00"
         },
         {
             "name": "composer/semver",
-            "version": "3.4.3",
+            "version": "1.5.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/composer/semver.git",
-                "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
+                "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
-                "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
+                "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
+                "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
                 "shasum": ""
             },
             "require": {
-                "php": "^5.3.2 || ^7.0 || ^8.0"
+                "php": "^5.3.2 || ^7.0"
             },
             "require-dev": {
-                "phpstan/phpstan": "^1.11",
-                "symfony/phpunit-bridge": "^3 || ^7"
+                "phpunit/phpunit": "^4.5 || ^5.0.5",
+                "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "3.x-dev"
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
@@ -808,59 +380,84 @@
                 "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.3"
-            },
-            "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-09-19T14:15:21+00:00"
+            "time": "2019-03-19T17:25:45+00:00"
         },
         {
             "name": "consolidation/annotated-command",
-            "version": "4.10.1",
+            "version": "2.12.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/annotated-command.git",
-                "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b"
+                "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/362310b13ececa9f6f0a4a880811fa08fecc348b",
-                "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b",
+                "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
+                "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
                 "shasum": ""
             },
             "require": {
-                "consolidation/output-formatters": "^4.3.1",
-                "php": ">=7.1.3",
-                "psr/log": "^1 || ^2 || ^3",
-                "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
-                "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
-                "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
+                "consolidation/output-formatters": "^3.4",
+                "php": ">=5.4.5",
+                "psr/log": "^1",
+                "symfony/console": "^2.8|^3|^4",
+                "symfony/event-dispatcher": "^2.5|^3|^4",
+                "symfony/finder": "^2.5|^3|^4"
             },
             "require-dev": {
-                "composer-runtime-api": "^2.0",
-                "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
-                "squizlabs/php_codesniffer": "^3",
-                "yoast/phpunit-polyfills": "^0.2.0"
+                "g1a/composer-test-scenarios": "^3",
+                "php-coveralls/php-coveralls": "^1",
+                "phpunit/phpunit": "^6",
+                "squizlabs/php_codesniffer": "^2.7"
             },
             "type": "library",
             "extra": {
+                "scenarios": {
+                    "symfony4": {
+                        "require": {
+                            "symfony/console": "^4.0"
+                        },
+                        "config": {
+                            "platform": {
+                                "php": "7.1.3"
+                            }
+                        }
+                    },
+                    "symfony2": {
+                        "require": {
+                            "symfony/console": "^2.8"
+                        },
+                        "require-dev": {
+                            "phpunit/phpunit": "^4.8.36"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.4.8"
+                            }
+                        },
+                        "scenario-options": {
+                            "create-lockfile": "false"
+                        }
+                    },
+                    "phpunit4": {
+                        "require-dev": {
+                            "phpunit/phpunit": "^4.8.36"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.4.8"
+                            }
+                        }
+                    }
+                },
                 "branch-alias": {
-                    "dev-main": "4.x-dev"
+                    "dev-master": "2.x-dev"
                 }
             },
             "autoload": {
@@ -879,48 +476,69 @@
                 }
             ],
             "description": "Initialize Symfony Console commands from annotated command class methods.",
-            "support": {
-                "issues": "https://github.com/consolidation/annotated-command/issues",
-                "source": "https://github.com/consolidation/annotated-command/tree/4.10.1"
-            },
-            "time": "2024-12-13T19:55:40+00:00"
+            "time": "2019-03-08T16:55:03+00:00"
         },
         {
             "name": "consolidation/config",
-            "version": "2.1.2",
+            "version": "1.2.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/config.git",
-                "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
+                "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
-                "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
+                "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
+                "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
                 "shasum": ""
             },
             "require": {
-                "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
-                "grasmash/expander": "^2.0.1 || ^3",
-                "php": ">=7.1.3",
-                "symfony/event-dispatcher": "^4 || ^5 || ^6"
+                "dflydev/dot-access-data": "^1.1.0",
+                "grasmash/expander": "^1",
+                "php": ">=5.4.0"
             },
             "require-dev": {
-                "ext-json": "*",
-                "phpunit/phpunit": ">=7.5.20",
-                "squizlabs/php_codesniffer": "^3",
-                "symfony/console": "^4 || ^5 || ^6",
-                "symfony/yaml": "^4 || ^5 || ^6",
-                "yoast/phpunit-polyfills": "^1"
+                "g1a/composer-test-scenarios": "^3",
+                "php-coveralls/php-coveralls": "^1",
+                "phpunit/phpunit": "^5",
+                "squizlabs/php_codesniffer": "2.*",
+                "symfony/console": "^2.5|^3|^4",
+                "symfony/yaml": "^2.8.11|^3|^4"
             },
             "suggest": {
-                "symfony/event-dispatcher": "Required to inject configuration into Command options",
                 "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
             },
             "type": "library",
             "extra": {
+                "scenarios": {
+                    "symfony4": {
+                        "require-dev": {
+                            "symfony/console": "^4.0"
+                        },
+                        "config": {
+                            "platform": {
+                                "php": "7.1.3"
+                            }
+                        }
+                    },
+                    "symfony2": {
+                        "require-dev": {
+                            "symfony/console": "^2.8",
+                            "symfony/event-dispatcher": "^2.8",
+                            "phpunit/phpunit": "^4.8.36"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.4.8"
+                            }
+                        }
+                    }
+                },
                 "branch-alias": {
-                    "dev-main": "2.x-dev"
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
@@ -939,39 +557,55 @@
                 }
             ],
             "description": "Provide configuration services for a commandline tool.",
-            "support": {
-                "issues": "https://github.com/consolidation/config/issues",
-                "source": "https://github.com/consolidation/config/tree/2.1.2"
-            },
-            "time": "2022-10-06T17:48:03+00:00"
+            "time": "2019-03-03T19:37:04+00:00"
         },
         {
             "name": "consolidation/filter-via-dot-access-data",
-            "version": "2.0.2",
+            "version": "1.0.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
-                "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
+                "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
-                "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
+                "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
+                "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
                 "shasum": ""
             },
             "require": {
-                "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
-                "php": ">=7.1.3"
+                "dflydev/dot-access-data": "^1.1.0",
+                "php": ">=5.5.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
-                "squizlabs/php_codesniffer": "^3",
-                "yoast/phpunit-polyfills": "^0.2.0"
+                "consolidation/robo": "^1.2.3",
+                "g1a/composer-test-scenarios": "^3",
+                "knplabs/github-api": "^2.7",
+                "php-coveralls/php-coveralls": "^1",
+                "php-http/guzzle6-adapter": "^1.1",
+                "phpunit/phpunit": "^5",
+                "squizlabs/php_codesniffer": "^2.8",
+                "symfony/console": "^2.8|^3|^4"
             },
             "type": "library",
             "extra": {
+                "scenarios": {
+                    "phpunit5": {
+                        "require-dev": {
+                            "phpunit/phpunit": "^5.7.27"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.6.33"
+                            }
+                        }
+                    }
+                },
                 "branch-alias": {
-                    "dev-main": "2.x-dev"
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
@@ -990,39 +624,78 @@
                 }
             ],
             "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
-            "support": {
-                "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
-            },
-            "time": "2021-12-30T03:56:08+00:00"
+            "time": "2019-01-18T06:05:07+00:00"
         },
         {
             "name": "consolidation/log",
-            "version": "3.1.0",
+            "version": "1.1.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/log.git",
-                "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
+                "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
-                "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
+                "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
+                "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.0.0",
-                "psr/log": "^3",
-                "symfony/console": "^5 || ^6 || ^7"
+                "php": ">=5.4.5",
+                "psr/log": "^1.0",
+                "symfony/console": "^2.8|^3|^4"
             },
             "require-dev": {
-                "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
-                "squizlabs/php_codesniffer": "^3",
-                "yoast/phpunit-polyfills": "^0.2.0"
+                "g1a/composer-test-scenarios": "^3",
+                "php-coveralls/php-coveralls": "^1",
+                "phpunit/phpunit": "^6",
+                "squizlabs/php_codesniffer": "^2"
             },
             "type": "library",
             "extra": {
-                "platform": {
-                    "php": "8.2.17"
+                "scenarios": {
+                    "symfony4": {
+                        "require": {
+                            "symfony/console": "^4.0"
+                        },
+                        "config": {
+                            "platform": {
+                                "php": "7.1.3"
+                            }
+                        }
+                    },
+                    "symfony2": {
+                        "require": {
+                            "symfony/console": "^2.8"
+                        },
+                        "require-dev": {
+                            "phpunit/phpunit": "^4.8.36"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.4.8"
+                            }
+                        }
+                    },
+                    "phpunit4": {
+                        "require-dev": {
+                            "phpunit/phpunit": "^4.8.36"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.4.8"
+                            }
+                        }
+                    }
+                },
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
@@ -1041,44 +714,91 @@
                 }
             ],
             "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
-            "support": {
-                "issues": "https://github.com/consolidation/log/issues",
-                "source": "https://github.com/consolidation/log/tree/3.1.0"
-            },
-            "time": "2024-04-04T23:50:25+00:00"
+            "time": "2019-01-01T17:30:51+00:00"
         },
         {
             "name": "consolidation/output-formatters",
-            "version": "4.6.0",
+            "version": "3.5.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/output-formatters.git",
-                "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe"
+                "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5fd5656718d7068a02d046f418a7ba873d5abbfe",
-                "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe",
+                "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
+                "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
                 "shasum": ""
             },
             "require": {
-                "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
-                "php": ">=7.1.3",
-                "symfony/console": "^4 || ^5 || ^6 || ^7",
-                "symfony/finder": "^4 || ^5 || ^6 || ^7"
+                "dflydev/dot-access-data": "^1.1.0",
+                "php": ">=5.4.0",
+                "symfony/console": "^2.8|^3|^4",
+                "symfony/finder": "^2.5|^3|^4"
             },
             "require-dev": {
-                "php-coveralls/php-coveralls": "^2.4.2",
-                "phpunit/phpunit": "^7 || ^8 || ^9",
-                "squizlabs/php_codesniffer": "^3",
-                "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
-                "symfony/yaml": "^4 || ^5 || ^6 || ^7",
-                "yoast/phpunit-polyfills": "^1"
+                "g1a/composer-test-scenarios": "^3",
+                "php-coveralls/php-coveralls": "^1",
+                "phpunit/phpunit": "^5.7.27",
+                "squizlabs/php_codesniffer": "^2.7",
+                "symfony/var-dumper": "^2.8|^3|^4",
+                "victorjonsson/markdowndocs": "^1.3"
             },
             "suggest": {
                 "symfony/var-dumper": "For using the var_dump formatter"
             },
             "type": "library",
+            "extra": {
+                "scenarios": {
+                    "symfony4": {
+                        "require": {
+                            "symfony/console": "^4.0"
+                        },
+                        "require-dev": {
+                            "phpunit/phpunit": "^6"
+                        },
+                        "config": {
+                            "platform": {
+                                "php": "7.1.3"
+                            }
+                        }
+                    },
+                    "symfony3": {
+                        "require": {
+                            "symfony/console": "^3.4",
+                            "symfony/finder": "^3.4",
+                            "symfony/var-dumper": "^3.4"
+                        },
+                        "config": {
+                            "platform": {
+                                "php": "5.6.32"
+                            }
+                        }
+                    },
+                    "symfony2": {
+                        "require": {
+                            "symfony/console": "^2.8"
+                        },
+                        "require-dev": {
+                            "phpunit/phpunit": "^4.8.36"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.4.8"
+                            }
+                        },
+                        "scenario-options": {
+                            "create-lockfile": "false"
+                        }
+                    }
+                },
+                "branch-alias": {
+                    "dev-master": "3.x-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Consolidation\\OutputFormatters\\": "src"
@@ -1095,63 +815,98 @@
                 }
             ],
             "description": "Format text by applying transformations provided by plug-in formatters.",
-            "support": {
-                "issues": "https://github.com/consolidation/output-formatters/issues",
-                "source": "https://github.com/consolidation/output-formatters/tree/4.6.0"
-            },
-            "time": "2024-10-18T14:02:48+00:00"
+            "time": "2019-05-30T23:16:01+00:00"
         },
         {
             "name": "consolidation/robo",
-            "version": "4.0.6",
+            "version": "1.4.10",
             "source": {
                 "type": "git",
-                "url": "https://github.com/consolidation/robo.git",
-                "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
+                "url": "https://github.com/consolidation/Robo.git",
+                "reference": "e5a6ca64cf1324151873672e484aceb21f365681"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
-                "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
+                "url": "https://api.github.com/repos/consolidation/Robo/zipball/e5a6ca64cf1324151873672e484aceb21f365681",
+                "reference": "e5a6ca64cf1324151873672e484aceb21f365681",
                 "shasum": ""
             },
             "require": {
-                "consolidation/annotated-command": "^4.8.1",
-                "consolidation/config": "^2.0.1",
-                "consolidation/log": "^2.0.2 || ^3",
-                "consolidation/output-formatters": "^4.1.2",
-                "consolidation/self-update": "^2.0",
-                "league/container": "^3.3.1 || ^4.0",
-                "php": ">=8.0",
-                "phpowermove/docblock": "^4.0",
-                "symfony/console": "^6",
-                "symfony/event-dispatcher": "^6",
-                "symfony/filesystem": "^6",
-                "symfony/finder": "^6",
-                "symfony/process": "^6",
-                "symfony/yaml": "^6"
+                "consolidation/annotated-command": "^2.10.2",
+                "consolidation/config": "^1.2",
+                "consolidation/log": "~1",
+                "consolidation/output-formatters": "^3.1.13",
+                "consolidation/self-update": "^1",
+                "grasmash/yaml-expander": "^1.3",
+                "league/container": "^2.2",
+                "php": ">=5.5.0",
+                "symfony/console": "^2.8|^3|^4",
+                "symfony/event-dispatcher": "^2.5|^3|^4",
+                "symfony/filesystem": "^2.5|^3|^4",
+                "symfony/finder": "^2.5|^3|^4",
+                "symfony/process": "^2.5|^3|^4"
             },
-            "conflict": {
-                "codegyre/robo": "*"
+            "replace": {
+                "codegyre/robo": "< 1.0"
             },
             "require-dev": {
+                "codeception/aspect-mock": "^1|^2.1.1",
+                "codeception/base": "^2.3.7",
+                "codeception/verify": "^0.3.2",
+                "g1a/composer-test-scenarios": "^3",
+                "goaop/framework": "~2.1.2",
+                "goaop/parser-reflection": "^1.1.0",
                 "natxet/cssmin": "3.0.4",
-                "patchwork/jsqueeze": "^2",
+                "nikic/php-parser": "^3.1.5",
+                "patchwork/jsqueeze": "~2",
                 "pear/archive_tar": "^1.4.4",
-                "phpunit/phpunit": "^7.5.20 || ^8",
-                "squizlabs/php_codesniffer": "^3.6",
-                "yoast/phpunit-polyfills": "^0.2.0"
+                "php-coveralls/php-coveralls": "^1",
+                "phpunit/php-code-coverage": "~2|~4",
+                "squizlabs/php_codesniffer": "^2.8"
             },
             "suggest": {
-                "natxet/cssmin": "For minifying CSS files in taskMinify",
+                "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
+                "natxet/CssMin": "For minifying CSS files in taskMinify",
                 "patchwork/jsqueeze": "For minifying JS files in taskMinify",
-                "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
-                "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
+                "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
             },
             "bin": [
                 "robo"
             ],
             "type": "library",
+            "extra": {
+                "scenarios": {
+                    "symfony4": {
+                        "require": {
+                            "symfony/console": "^4"
+                        },
+                        "config": {
+                            "platform": {
+                                "php": "7.1.3"
+                            }
+                        }
+                    },
+                    "symfony2": {
+                        "require": {
+                            "symfony/console": "^2.8"
+                        },
+                        "remove": [
+                            "goaop/framework"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.5.9"
+                            }
+                        },
+                        "scenario-options": {
+                            "create-lockfile": "false"
+                        }
+                    }
+                },
+                "branch-alias": {
+                    "dev-master": "2.x-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Robo\\": "src"
@@ -1168,31 +923,26 @@
                 }
             ],
             "description": "Modern task runner",
-            "support": {
-                "issues": "https://github.com/consolidation/robo/issues",
-                "source": "https://github.com/consolidation/robo/tree/4.0.6"
-            },
-            "time": "2023-04-30T21:49:04+00:00"
+            "time": "2019-07-29T15:40:50+00:00"
         },
         {
             "name": "consolidation/self-update",
-            "version": "2.2.0",
+            "version": "1.1.5",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/self-update.git",
-                "reference": "972a1016761c9b63314e040836a12795dff6953a"
+                "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
-                "reference": "972a1016761c9b63314e040836a12795dff6953a",
+                "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
+                "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
                 "shasum": ""
             },
             "require": {
-                "composer/semver": "^3.2",
                 "php": ">=5.5.0",
-                "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
-                "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
+                "symfony/console": "^2.8|^3|^4",
+                "symfony/filesystem": "^2.5|^3|^4"
             },
             "bin": [
                 "scripts/release"
@@ -1200,7 +950,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "2.x-dev"
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
@@ -1213,53 +963,66 @@
                 "MIT"
             ],
             "authors": [
-                {
-                    "name": "Alexander Menk",
-                    "email": "menk@mestrona.net"
-                },
                 {
                     "name": "Greg Anderson",
                     "email": "greg.1.anderson@greenknowe.org"
+                },
+                {
+                    "name": "Alexander Menk",
+                    "email": "menk@mestrona.net"
                 }
             ],
             "description": "Provides a self:update command for Symfony Console applications.",
-            "support": {
-                "issues": "https://github.com/consolidation/self-update/issues",
-                "source": "https://github.com/consolidation/self-update/tree/2.2.0"
-            },
-            "time": "2023-03-18T01:37:41+00:00"
+            "time": "2018-10-28T01:52:03+00:00"
         },
         {
             "name": "consolidation/site-alias",
-            "version": "4.1.1",
+            "version": "3.0.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/site-alias.git",
-                "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40"
+                "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40",
-                "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40",
+                "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
+                "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
                 "shasum": ""
             },
             "require": {
-                "consolidation/config": "^1.2.1 || ^2 || ^3",
-                "php": ">=7.4",
-                "symfony/filesystem": "^5.4 || ^6 || ^7",
-                "symfony/finder": "^5 || ^6 || ^7"
+                "consolidation/config": "^1.2.1",
+                "php": ">=5.5.0"
             },
             "require-dev": {
-                "php-coveralls/php-coveralls": "^2.4.2",
-                "phpunit/phpunit": ">=7",
-                "squizlabs/php_codesniffer": "^3",
-                "symfony/var-dumper": "^4",
-                "yoast/phpunit-polyfills": "^0.2.0"
+                "consolidation/robo": "^1.2.3",
+                "g1a/composer-test-scenarios": "^3",
+                "knplabs/github-api": "^2.7",
+                "php-coveralls/php-coveralls": "^1",
+                "php-http/guzzle6-adapter": "^1.1",
+                "phpunit/phpunit": "^6",
+                "squizlabs/php_codesniffer": "^2.8",
+                "symfony/console": "^2.8|^3|^4",
+                "symfony/yaml": "~2.3|^3"
             },
             "type": "library",
             "extra": {
+                "scenarios": {
+                    "phpunit5": {
+                        "require-dev": {
+                            "phpunit/phpunit": "^5.7.27"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.6.33"
+                            }
+                        }
+                    }
+                },
                 "branch-alias": {
-                    "dev-main": "4.x-dev"
+                    "dev-master": "3.x-dev"
                 }
             },
             "autoload": {
@@ -1272,51 +1035,66 @@
                 "MIT"
             ],
             "authors": [
-                {
-                    "name": "Greg Anderson",
-                    "email": "greg.1.anderson@greenknowe.org"
-                },
                 {
                     "name": "Moshe Weitzman",
                     "email": "weitzman@tejasa.com"
+                },
+                {
+                    "name": "Greg Anderson",
+                    "email": "greg.1.anderson@greenknowe.org"
                 }
             ],
             "description": "Manage alias records for local and remote sites.",
-            "support": {
-                "issues": "https://github.com/consolidation/site-alias/issues",
-                "source": "https://github.com/consolidation/site-alias/tree/4.1.1"
-            },
-            "time": "2024-12-13T19:05:11+00:00"
+            "time": "2019-03-12T17:31:48+00:00"
         },
         {
             "name": "consolidation/site-process",
-            "version": "5.4.2",
+            "version": "2.0.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/consolidation/site-process.git",
-                "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
+                "reference": "e159f849abce696c2f5081c149a1f8ec8717dd97"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
-                "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
+                "url": "https://api.github.com/repos/consolidation/site-process/zipball/e159f849abce696c2f5081c149a1f8ec8717dd97",
+                "reference": "e159f849abce696c2f5081c149a1f8ec8717dd97",
                 "shasum": ""
             },
             "require": {
-                "consolidation/config": "^2 || ^3",
-                "consolidation/site-alias": "^3 || ^4",
-                "php": ">=8.0.14",
-                "symfony/console": "^5.4 || ^6 || ^7",
-                "symfony/process": "^6 || ^7"
+                "consolidation/config": "^1.2.1",
+                "consolidation/site-alias": "^3",
+                "php": ">=5.6.0",
+                "symfony/process": "^3.4"
             },
             "require-dev": {
-                "phpunit/phpunit": "^9",
-                "squizlabs/php_codesniffer": "^3"
+                "consolidation/robo": "^1.3",
+                "g1a/composer-test-scenarios": "^3",
+                "knplabs/github-api": "^2.7",
+                "php-coveralls/php-coveralls": "^1",
+                "php-http/guzzle6-adapter": "^1.1",
+                "phpunit/phpunit": "^6",
+                "squizlabs/php_codesniffer": "^2.8"
             },
             "type": "library",
             "extra": {
+                "scenarios": {
+                    "phpunit5": {
+                        "require-dev": {
+                            "phpunit/phpunit": "^5.7.27"
+                        },
+                        "remove": [
+                            "php-coveralls/php-coveralls"
+                        ],
+                        "config": {
+                            "platform": {
+                                "php": "5.6.33"
+                            }
+                        }
+                    }
+                },
                 "branch-alias": {
-                    "dev-main": "5.x-dev"
+                    "dev-master": "0.x-dev"
                 }
             },
             "autoload": {
@@ -1339,32 +1117,59 @@
                 }
             ],
             "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
-            "support": {
-                "issues": "https://github.com/consolidation/site-process/issues",
-                "source": "https://github.com/consolidation/site-process/tree/5.4.2"
-            },
-            "time": "2024-12-13T19:25:56+00:00"
+            "time": "2019-08-12T23:10:26+00:00"
         },
         {
-            "name": "cweagans/composer-patches",
-            "version": "1.7.3",
+            "name": "container-interop/container-interop",
+            "version": "1.2.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/cweagans/composer-patches.git",
-                "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
+                "url": "https://github.com/container-interop/container-interop.git",
+                "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
-                "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
+                "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
+                "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
                 "shasum": ""
             },
             "require": {
-                "composer-plugin-api": "^1.0 || ^2.0",
+                "psr/container": "^1.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Interop\\Container\\": "src/Interop/Container/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
+            "homepage": "https://github.com/container-interop/container-interop",
+            "time": "2017-02-14T19:40:03+00:00"
+        },
+        {
+            "name": "cweagans/composer-patches",
+            "version": "1.6.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/cweagans/composer-patches.git",
+                "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
+                "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
+                "shasum": ""
+            },
+            "require": {
+                "composer-plugin-api": "^1.0",
                 "php": ">=5.3.0"
             },
             "require-dev": {
-                "composer/composer": "~1.0 || ~2.0",
+                "composer/composer": "~1.0",
                 "phpunit/phpunit": "~4.6"
             },
             "type": "composer-plugin",
@@ -1387,45 +1192,34 @@
                 }
             ],
             "description": "Provides a way to patch Composer packages.",
-            "support": {
-                "issues": "https://github.com/cweagans/composer-patches/issues",
-                "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
-            },
-            "time": "2022-12-20T22:53:13+00:00"
+            "time": "2019-08-29T20:11:49+00:00"
         },
         {
             "name": "dflydev/dot-access-data",
-            "version": "v3.0.3",
+            "version": "v1.1.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
-                "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
+                "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
-                "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+                "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
+                "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1 || ^8.0"
-            },
-            "require-dev": {
-                "phpstan/phpstan": "^0.12.42",
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
-                "scrutinizer/ocular": "1.6.0",
-                "squizlabs/php_codesniffer": "^3.5",
-                "vimeo/psalm": "^4.0.0"
+                "php": ">=5.3.2"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "3.x-dev"
+                    "dev-master": "1.0-dev"
                 }
             },
             "autoload": {
-                "psr-4": {
-                    "Dflydev\\DotAccessData\\": "src/"
+                "psr-0": {
+                    "Dflydev\\DotAccessData": "src"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -1447,11 +1241,6 @@
                     "name": "Carlos Frutos",
                     "email": "carlos@kiwing.it",
                     "homepage": "https://github.com/cfrutos"
-                },
-                {
-                    "name": "Colin O'Dell",
-                    "email": "colinodell@gmail.com",
-                    "homepage": "https://www.colinodell.com"
                 }
             ],
             "description": "Given a deep data structure, access data by dot notation.",
@@ -1462,44 +1251,69 @@
                 "dot",
                 "notation"
             ],
-            "support": {
-                "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
-                "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
-            },
-            "time": "2024-07-08T12:26:09+00:00"
+            "time": "2017-01-20T21:14:22+00:00"
         },
         {
-            "name": "doctrine/annotations",
-            "version": "1.14.4",
+            "name": "dnoegel/php-xdg-base-dir",
+            "version": "0.1",
             "source": {
                 "type": "git",
-                "url": "https://github.com/doctrine/annotations.git",
-                "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
+                "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
+                "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
-                "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
+                "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
+                "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
                 "shasum": ""
             },
             "require": {
-                "doctrine/lexer": "^1 || ^2",
-                "ext-tokenizer": "*",
-                "php": "^7.1 || ^8.0",
-                "psr/cache": "^1 || ^2 || ^3"
+                "php": ">=5.3.2"
             },
             "require-dev": {
-                "doctrine/cache": "^1.11 || ^2.0",
-                "doctrine/coding-standard": "^9 || ^12",
-                "phpstan/phpstan": "~1.4.10 || ^1.10.28",
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
-                "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
-                "vimeo/psalm": "^4.30 || ^5.14"
+                "phpunit/phpunit": "@stable"
             },
-            "suggest": {
-                "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
+            "type": "project",
+            "autoload": {
+                "psr-4": {
+                    "XdgBaseDir\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "implementation of xdg base directory specification for php",
+            "time": "2014-10-24T07:27:01+00:00"
+        },
+        {
+            "name": "doctrine/annotations",
+            "version": "v1.7.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/annotations.git",
+                "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/annotations/zipball/fa4c4e861e809d6a1103bd620cce63ed91aedfeb",
+                "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/lexer": "1.*",
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "doctrine/cache": "1.*",
+                "phpunit/phpunit": "^7.5@dev"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.7.x-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
@@ -1532,48 +1346,53 @@
                 }
             ],
             "description": "Docblock Annotations Parser",
-            "homepage": "https://www.doctrine-project.org/projects/annotations.html",
+            "homepage": "http://www.doctrine-project.org",
             "keywords": [
                 "annotations",
                 "docblock",
                 "parser"
             ],
-            "support": {
-                "issues": "https://github.com/doctrine/annotations/issues",
-                "source": "https://github.com/doctrine/annotations/tree/1.14.4"
-            },
-            "time": "2024-09-05T10:15:52+00:00"
+            "time": "2019-08-08T18:11:40+00:00"
         },
         {
-            "name": "doctrine/collections",
-            "version": "2.3.0",
+            "name": "doctrine/cache",
+            "version": "v1.8.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/doctrine/collections.git",
-                "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
+                "url": "https://github.com/doctrine/cache.git",
+                "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
-                "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
+                "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
+                "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
                 "shasum": ""
             },
             "require": {
-                "doctrine/deprecations": "^1",
-                "php": "^8.1",
-                "symfony/polyfill-php84": "^1.30"
+                "php": "~7.1"
+            },
+            "conflict": {
+                "doctrine/common": ">2.2,<2.4"
             },
             "require-dev": {
-                "doctrine/coding-standard": "^12",
-                "ext-json": "*",
-                "phpstan/phpstan": "^1.8",
-                "phpstan/phpstan-phpunit": "^1.0",
-                "phpunit/phpunit": "^10.5"
+                "alcaeus/mongo-php-adapter": "^1.1",
+                "doctrine/coding-standard": "^4.0",
+                "mongodb/mongodb": "^1.1",
+                "phpunit/phpunit": "^7.0",
+                "predis/predis": "~1.0"
+            },
+            "suggest": {
+                "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.8.x-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
-                    "Doctrine\\Common\\Collections\\": "src"
+                    "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -1581,10 +1400,74 @@
                 "MIT"
             ],
             "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
                 {
                     "name": "Guilherme Blanco",
                     "email": "guilhermeblanco@gmail.com"
                 },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "Caching library offering an object-oriented API for many cache backends",
+            "homepage": "https://www.doctrine-project.org",
+            "keywords": [
+                "cache",
+                "caching"
+            ],
+            "time": "2018-08-21T18:01:43+00:00"
+        },
+        {
+            "name": "doctrine/collections",
+            "version": "v1.6.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/collections.git",
+                "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/collections/zipball/c5e0bc17b1620e97c968ac409acbff28b8b850be",
+                "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^6.0",
+                "phpstan/phpstan-shim": "^0.9.2",
+                "phpunit/phpunit": "^7.0",
+                "vimeo/psalm": "^3.2.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.6.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
                 {
                     "name": "Roman Borschel",
                     "email": "roman@code-factory.org"
@@ -1593,6 +1476,10 @@
                     "name": "Benjamin Eberlei",
                     "email": "kontakt@beberlei.de"
                 },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
                 {
                     "name": "Jonathan Wage",
                     "email": "jonwage@gmail.com"
@@ -1610,103 +1497,261 @@
                 "iterators",
                 "php"
             ],
-            "support": {
-                "issues": "https://github.com/doctrine/collections/issues",
-                "source": "https://github.com/doctrine/collections/tree/2.3.0"
-            },
-            "funding": [
-                {
-                    "url": "https://www.doctrine-project.org/sponsorship.html",
-                    "type": "custom"
-                },
-                {
-                    "url": "https://www.patreon.com/phpdoctrine",
-                    "type": "patreon"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-03-22T10:17:19+00:00"
+            "time": "2019-06-09T13:48:14+00:00"
         },
         {
-            "name": "doctrine/deprecations",
-            "version": "1.1.5",
+            "name": "doctrine/common",
+            "version": "v2.10.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/doctrine/deprecations.git",
-                "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
+                "url": "https://github.com/doctrine/common.git",
+                "reference": "30e33f60f64deec87df728c02b107f82cdafad9d"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
-                "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
+                "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d",
+                "reference": "30e33f60f64deec87df728c02b107f82cdafad9d",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1 || ^8.0"
-            },
-            "conflict": {
-                "phpunit/phpunit": "<=7.5 || >=13"
+                "doctrine/annotations": "^1.0",
+                "doctrine/cache": "^1.0",
+                "doctrine/collections": "^1.0",
+                "doctrine/event-manager": "^1.0",
+                "doctrine/inflector": "^1.0",
+                "doctrine/lexer": "^1.0",
+                "doctrine/persistence": "^1.1",
+                "doctrine/reflection": "^1.0",
+                "php": "^7.1"
             },
             "require-dev": {
-                "doctrine/coding-standard": "^9 || ^12 || ^13",
-                "phpstan/phpstan": "1.4.10 || 2.1.11",
-                "phpstan/phpstan-phpunit": "^1.0 || ^2",
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
-                "psr/log": "^1 || ^2 || ^3"
-            },
-            "suggest": {
-                "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
+                "doctrine/coding-standard": "^1.0",
+                "phpunit/phpunit": "^6.3",
+                "squizlabs/php_codesniffer": "^3.0",
+                "symfony/phpunit-bridge": "^4.0.5"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.10.x-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
-                    "Doctrine\\Deprecations\\": "src"
+                    "Doctrine\\Common\\": "lib/Doctrine/Common"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
-            "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
-            "homepage": "https://www.doctrine-project.org/",
-            "support": {
-                "issues": "https://github.com/doctrine/deprecations/issues",
-                "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
-            },
-            "time": "2025-04-07T20:06:18+00:00"
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                },
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com"
+                }
+            ],
+            "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
+            "homepage": "https://www.doctrine-project.org/projects/common.html",
+            "keywords": [
+                "common",
+                "doctrine",
+                "php"
+            ],
+            "time": "2018-11-21T01:24:55+00:00"
         },
         {
-            "name": "doctrine/lexer",
-            "version": "2.1.1",
+            "name": "doctrine/event-manager",
+            "version": "v1.0.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/doctrine/lexer.git",
-                "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
+                "url": "https://github.com/doctrine/event-manager.git",
+                "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
-                "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
+                "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+                "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
                 "shasum": ""
             },
             "require": {
-                "doctrine/deprecations": "^1.0",
-                "php": "^7.1 || ^8.0"
+                "php": "^7.1"
+            },
+            "conflict": {
+                "doctrine/common": "<2.9@dev"
             },
             "require-dev": {
-                "doctrine/coding-standard": "^9 || ^12",
-                "phpstan/phpstan": "^1.3",
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
-                "psalm/plugin-phpunit": "^0.18.3",
-                "vimeo/psalm": "^4.11 || ^5.21"
+                "doctrine/coding-standard": "^4.0",
+                "phpunit/phpunit": "^7.0"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
-                    "Doctrine\\Common\\Lexer\\": "src"
+                    "Doctrine\\Common\\": "lib/Doctrine/Common"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                },
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com"
+                }
+            ],
+            "description": "Doctrine Event Manager component",
+            "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
+            "keywords": [
+                "event",
+                "eventdispatcher",
+                "eventmanager"
+            ],
+            "time": "2018-06-11T11:59:03+00:00"
+        },
+        {
+            "name": "doctrine/inflector",
+            "version": "v1.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/inflector.git",
+                "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
+                "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "Common String Manipulations with regard to casing and singular/plural rules.",
+            "homepage": "http://www.doctrine-project.org",
+            "keywords": [
+                "inflection",
+                "pluralize",
+                "singularize",
+                "string"
+            ],
+            "time": "2018-01-09T20:05:19+00:00"
+        },
+        {
+            "name": "doctrine/lexer",
+            "version": "1.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/lexer.git",
+                "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea",
+                "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^6.0",
+                "phpstan/phpstan": "^0.11.8",
+                "phpunit/phpunit": "^8.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -1736,216 +1781,47 @@
                 "parser",
                 "php"
             ],
-            "support": {
-                "issues": "https://github.com/doctrine/lexer/issues",
-                "source": "https://github.com/doctrine/lexer/tree/2.1.1"
-            },
-            "funding": [
-                {
-                    "url": "https://www.doctrine-project.org/sponsorship.html",
-                    "type": "custom"
-                },
-                {
-                    "url": "https://www.patreon.com/phpdoctrine",
-                    "type": "patreon"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2024-02-05T11:35:39+00:00"
+            "time": "2019-07-30T19:33:28+00:00"
         },
         {
-            "name": "dompdf/dompdf",
-            "version": "v3.1.0",
+            "name": "doctrine/persistence",
+            "version": "1.1.1",
             "source": {
                 "type": "git",
-                "url": "https://github.com/dompdf/dompdf.git",
-                "reference": "a51bd7a063a65499446919286fb18b518177155a"
+                "url": "https://github.com/doctrine/persistence.git",
+                "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/dompdf/dompdf/zipball/a51bd7a063a65499446919286fb18b518177155a",
-                "reference": "a51bd7a063a65499446919286fb18b518177155a",
+                "url": "https://api.github.com/repos/doctrine/persistence/zipball/3da7c9d125591ca83944f477e65ed3d7b4617c48",
+                "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48",
                 "shasum": ""
             },
             "require": {
-                "dompdf/php-font-lib": "^1.0.0",
-                "dompdf/php-svg-lib": "^1.0.0",
-                "ext-dom": "*",
-                "ext-mbstring": "*",
-                "masterminds/html5": "^2.0",
-                "php": "^7.1 || ^8.0"
+                "doctrine/annotations": "^1.0",
+                "doctrine/cache": "^1.0",
+                "doctrine/collections": "^1.0",
+                "doctrine/event-manager": "^1.0",
+                "doctrine/reflection": "^1.0",
+                "php": "^7.1"
+            },
+            "conflict": {
+                "doctrine/common": "<2.10@dev"
             },
             "require-dev": {
-                "ext-gd": "*",
-                "ext-json": "*",
-                "ext-zip": "*",
-                "mockery/mockery": "^1.3",
-                "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11",
-                "squizlabs/php_codesniffer": "^3.5",
-                "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0"
-            },
-            "suggest": {
-                "ext-gd": "Needed to process images",
-                "ext-gmagick": "Improves image processing performance",
-                "ext-imagick": "Improves image processing performance",
-                "ext-zlib": "Needed for pdf stream compression"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Dompdf\\": "src/"
-                },
-                "classmap": [
-                    "lib/"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "LGPL-2.1"
-            ],
-            "authors": [
-                {
-                    "name": "The Dompdf Community",
-                    "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
-                }
-            ],
-            "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
-            "homepage": "https://github.com/dompdf/dompdf",
-            "support": {
-                "issues": "https://github.com/dompdf/dompdf/issues",
-                "source": "https://github.com/dompdf/dompdf/tree/v3.1.0"
-            },
-            "time": "2025-01-15T14:09:04+00:00"
-        },
-        {
-            "name": "dompdf/php-font-lib",
-            "version": "1.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/dompdf/php-font-lib.git",
-                "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d",
-                "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d",
-                "shasum": ""
-            },
-            "require": {
-                "ext-mbstring": "*",
-                "php": "^7.1 || ^8.0"
-            },
-            "require-dev": {
-                "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "FontLib\\": "src/FontLib"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "LGPL-2.1-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "The FontLib Community",
-                    "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md"
-                }
-            ],
-            "description": "A library to read, parse, export and make subsets of different types of font files.",
-            "homepage": "https://github.com/dompdf/php-font-lib",
-            "support": {
-                "issues": "https://github.com/dompdf/php-font-lib/issues",
-                "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1"
-            },
-            "time": "2024-12-02T14:37:59+00:00"
-        },
-        {
-            "name": "dompdf/php-svg-lib",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/dompdf/php-svg-lib.git",
-                "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/eb045e518185298eb6ff8d80d0d0c6b17aecd9af",
-                "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af",
-                "shasum": ""
-            },
-            "require": {
-                "ext-mbstring": "*",
-                "php": "^7.1 || ^8.0",
-                "sabberworm/php-css-parser": "^8.4"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Svg\\": "src/Svg"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "LGPL-3.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "The SvgLib Community",
-                    "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md"
-                }
-            ],
-            "description": "A library to read, parse and export to PDF SVG files.",
-            "homepage": "https://github.com/dompdf/php-svg-lib",
-            "support": {
-                "issues": "https://github.com/dompdf/php-svg-lib/issues",
-                "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.0"
-            },
-            "time": "2024-04-29T13:26:35+00:00"
-        },
-        {
-            "name": "dragonmantank/cron-expression",
-            "version": "v3.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/dragonmantank/cron-expression.git",
-                "reference": "8c784d071debd117328803d86b2097615b457500"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
-                "reference": "8c784d071debd117328803d86b2097615b457500",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.2|^8.0",
-                "webmozart/assert": "^1.0"
-            },
-            "replace": {
-                "mtdowling/cron-expression": "^1.0"
-            },
-            "require-dev": {
-                "phpstan/extension-installer": "^1.0",
-                "phpstan/phpstan": "^1.0",
-                "phpunit/phpunit": "^7.0|^8.0|^9.0"
+                "doctrine/coding-standard": "^5.0",
+                "phpstan/phpstan": "^0.8",
+                "phpunit/phpunit": "^7.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "3.x-dev"
+                    "dev-master": "1.1.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Cron\\": "src/Cron/"
+                    "Doctrine\\Common\\": "lib/Doctrine/Common"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -1954,91 +1830,189 @@
             ],
             "authors": [
                 {
-                    "name": "Chris Tankersley",
-                    "email": "chris@ctankersley.com",
-                    "homepage": "https://github.com/dragonmantank"
-                }
-            ],
-            "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
-            "keywords": [
-                "cron",
-                "schedule"
-            ],
-            "support": {
-                "issues": "https://github.com/dragonmantank/cron-expression/issues",
-                "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
-            },
-            "funding": [
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
                 {
-                    "url": "https://github.com/dragonmantank",
-                    "type": "github"
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                },
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com"
                 }
             ],
-            "time": "2024-10-09T13:47:03+00:00"
+            "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
+            "homepage": "https://doctrine-project.org/projects/persistence.html",
+            "keywords": [
+                "mapper",
+                "object",
+                "odm",
+                "orm",
+                "persistence"
+            ],
+            "time": "2019-04-23T08:28:24+00:00"
         },
         {
-            "name": "drupal-ckeditor-libraries-group/fakeobjects",
-            "version": "4.22.1",
+            "name": "doctrine/reflection",
+            "version": "v1.0.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/drupal-ckeditor-libraries-group/fakeobjects.git",
-                "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c"
+                "url": "https://github.com/doctrine/reflection.git",
+                "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/drupal-ckeditor-libraries-group/fakeobjects/zipball/a1de732aa3dbc63349f8b4653b1c7788c93ae25c",
-                "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c",
+                "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
+                "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
                 "shasum": ""
             },
-            "type": "drupal-library",
+            "require": {
+                "doctrine/annotations": "^1.0",
+                "ext-tokenizer": "*",
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^4.0",
+                "doctrine/common": "^2.8",
+                "phpstan/phpstan": "^0.9.2",
+                "phpstan/phpstan-phpunit": "^0.9.4",
+                "phpunit/phpunit": "^7.0",
+                "squizlabs/php_codesniffer": "^3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\": "lib/Doctrine/Common"
+                }
+            },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "GPL-2.0-or-later",
-                "LGPL-2.1-or-later",
-                "MPL-1.1"
+                "MIT"
             ],
-            "description": "CKEditor 4 fakeobjects plugin",
-            "homepage": "https://ckeditor.com/cke4/addon/fakeobjects",
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                },
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com"
+                }
+            ],
+            "description": "Doctrine Reflection component",
+            "homepage": "https://www.doctrine-project.org/projects/reflection.html",
             "keywords": [
-                "CKEditor",
-                "fakeobjects",
-                "plugin"
+                "reflection"
             ],
-            "support": {
-                "issues": "https://github.com/ckeditor/ckeditor4/issues",
-                "source": "https://github.com/ckeditor/ckeditor4/tree/master/plugins/fakeobjects"
+            "time": "2018-06-14T14:45:07+00:00"
+        },
+        {
+            "name": "drupal-composer/drupal-scaffold",
+            "version": "2.6.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/drupal-composer/drupal-scaffold.git",
+                "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
             },
-            "time": "2023-02-08T14:53:49+00:00"
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
+                "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
+                "shasum": ""
+            },
+            "require": {
+                "composer-plugin-api": "^1.0.0",
+                "composer/semver": "^1.4",
+                "php": "^5.5.9|>=7.0.8"
+            },
+            "require-dev": {
+                "composer/composer": "dev-master",
+                "g1a/composer-test-scenarios": "^2.1.0",
+                "phpunit/phpunit": "^6",
+                "squizlabs/php_codesniffer": "^2.8"
+            },
+            "type": "composer-plugin",
+            "extra": {
+                "class": "DrupalComposer\\DrupalScaffold\\Plugin",
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "DrupalComposer\\DrupalScaffold\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
+            "time": "2019-03-30T10:41:38+00:00"
         },
         {
             "name": "drupal/address",
-            "version": "2.0.4",
+            "version": "1.7.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/address.git",
-                "reference": "2.0.4"
+                "reference": "8.x-1.7"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip",
-                "reference": "2.0.4",
-                "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e"
+                "url": "https://ftp.drupal.org/files/projects/address-8.x-1.7.zip",
+                "reference": "8.x-1.7",
+                "shasum": "dab23a510090e59e3e6bc77faa517b523ad048ae"
             },
             "require": {
-                "commerceguys/addressing": "^2.1.1",
-                "drupal/core": "^9.5 || ^10 || ^11",
-                "php": "^8.0"
+                "commerceguys/addressing": "^1.0.0",
+                "drupal/core": "^8.6"
             },
             "require-dev": {
-                "drupal/diff": "^1",
-                "drupal/feeds": "^3",
-                "drupal/token": "^1"
+                "drupal/token": "^1.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.4",
-                    "datestamp": "1746462054",
+                    "version": "8.x-1.7",
+                    "datestamp": "1559642884",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -2047,24 +2021,24 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
                     "name": "bojanz",
                     "homepage": "https://www.drupal.org/user/86106"
                 },
-                {
-                    "name": "centarro",
-                    "homepage": "https://www.drupal.org/user/3661446"
-                },
                 {
                     "name": "dww",
                     "homepage": "https://www.drupal.org/user/46549"
                 },
                 {
-                    "name": "jsacksick",
-                    "homepage": "https://www.drupal.org/user/972218"
+                    "name": "googletorp",
+                    "homepage": "https://www.drupal.org/user/386230"
+                },
+                {
+                    "name": "mglaman",
+                    "homepage": "https://www.drupal.org/user/2416470"
                 },
                 {
                     "name": "rszrama",
@@ -2078,30 +2052,77 @@
             }
         },
         {
-            "name": "drupal/admin_toolbar",
-            "version": "3.5.3",
+            "name": "drupal/admin_links_access_filter",
+            "version": "1.0.0-alpha3",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/admin_toolbar.git",
-                "reference": "3.5.3"
+                "url": "https://git.drupalcode.org/project/admin_links_access_filter.git",
+                "reference": "8.x-1.0-alpha3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.3.zip",
-                "reference": "3.5.3",
-                "shasum": "363cdd6e6ca47983900f40793edf9a8b26f132bb"
+                "url": "https://ftp.drupal.org/files/projects/admin_links_access_filter-8.x-1.0-alpha3.zip",
+                "reference": "8.x-1.0-alpha3",
+                "shasum": "410543c4b14d5c88fa53d7256717756cab522e65"
             },
             "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/admin_toolbar_tools": "*"
+                "drupal/core": "~8.1"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "3.5.3",
-                    "datestamp": "1740156799",
+                    "version": "8.x-1.0-alpha3",
+                    "datestamp": "1481822103",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "agoradesign",
+                    "homepage": "https://www.drupal.org/user/1183886"
+                }
+            ],
+            "description": "Administration links access filter provides a workaround for the common problem that users with 'Use the administration pages and help' permission see menu links they don't have access permission for.",
+            "homepage": "http://drupal.org/project/admin_links_access_filter",
+            "support": {
+                "source": "https://git.drupalcode.org/project/admin_links_access_filter"
+            }
+        },
+        {
+            "name": "drupal/admin_toolbar",
+            "version": "1.27.0",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/admin_toolbar.git",
+                "reference": "8.x-1.27"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.27.zip",
+                "reference": "8.x-1.27",
+                "shasum": "fed1fbbdf8f805b1da63d73e7e2c54750f354d61"
+            },
+            "require": {
+                "drupal/core": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.27",
+                    "datestamp": "1558553350",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -2110,7 +2131,7 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -2138,18 +2159,10 @@
                     "name": "fethi.krout",
                     "homepage": "https://www.drupal.org/user/3206765"
                 },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
                 {
                     "name": "matio89",
                     "homepage": "https://www.drupal.org/user/2320090"
                 },
-                {
-                    "name": "musa.thomas",
-                    "homepage": "https://www.drupal.org/user/1213824"
-                },
                 {
                     "name": "romainj",
                     "homepage": "https://www.drupal.org/user/370706"
@@ -2162,90 +2175,25 @@
                 "Toolbar"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/admin_toolbar",
+                "source": "http://cgit.drupalcode.org/admin_toolbar",
                 "issues": "https://www.drupal.org/project/issues/admin_toolbar"
             }
         },
-        {
-            "name": "drupal/admin_toolbar-admin_toolbar_search",
-            "version": "3.5.3",
-            "require": {
-                "drupal/admin_toolbar": "^3",
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/admin_toolbar_tools": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "3.5.3",
-                    "datestamp": "1740156799",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "adriancid",
-                    "homepage": "https://www.drupal.org/user/1962106"
-                },
-                {
-                    "name": "bolbol",
-                    "homepage": "https://www.drupal.org/user/3400070"
-                },
-                {
-                    "name": "dydave",
-                    "homepage": "https://www.drupal.org/user/467284"
-                },
-                {
-                    "name": "eme",
-                    "homepage": "https://www.drupal.org/user/542492"
-                },
-                {
-                    "name": "fethi.krout",
-                    "homepage": "https://www.drupal.org/user/3206765"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "matio89",
-                    "homepage": "https://www.drupal.org/user/2320090"
-                },
-                {
-                    "name": "musa.thomas",
-                    "homepage": "https://www.drupal.org/user/1213824"
-                },
-                {
-                    "name": "romainj",
-                    "homepage": "https://www.drupal.org/user/370706"
-                }
-            ],
-            "homepage": "https://www.drupal.org/project/admin_toolbar",
-            "support": {
-                "source": "https://git.drupalcode.org/project/admin_toolbar"
-            }
-        },
         {
             "name": "drupal/admin_toolbar_tools",
-            "version": "3.5.3",
+            "version": "1.27.0",
             "require": {
-                "drupal/admin_toolbar": "*",
-                "drupal/core": "^9.5 || ^10 || ^11"
+                "drupal/admin_toolbar": "self.version",
+                "drupal/core": "~8.6"
             },
             "type": "metapackage",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "3.5.3",
-                    "datestamp": "1740156799",
+                    "version": "8.x-1.27",
+                    "datestamp": "1558553350",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -2254,661 +2202,138 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
-                    "name": "adriancid",
-                    "homepage": "https://www.drupal.org/user/1962106"
+                    "name": "Wilfrid Roze (eme)",
+                    "homepage": "https://www.drupal.org/u/eme",
+                    "role": "Maintainer"
                 },
                 {
-                    "name": "bolbol",
-                    "homepage": "https://www.drupal.org/user/3400070"
+                    "name": "Romain Jarraud (romainj)",
+                    "homepage": "https://www.drupal.org/u/romainj",
+                    "role": "Maintainer"
                 },
                 {
-                    "name": "dydave",
-                    "homepage": "https://www.drupal.org/user/467284"
+                    "name": "Adrian Cid Almaguer (adriancid)",
+                    "homepage": "https://www.drupal.org/u/adriancid",
+                    "email": "adriancid@gmail.com",
+                    "role": "Maintainer"
                 },
                 {
-                    "name": "eme",
-                    "homepage": "https://www.drupal.org/user/542492"
+                    "name": "Mohamed Anis Taktak (matio89)",
+                    "homepage": "https://www.drupal.org/u/matio89",
+                    "role": "Maintainer"
                 },
                 {
                     "name": "fethi.krout",
                     "homepage": "https://www.drupal.org/user/3206765"
                 },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
                 {
                     "name": "matio89",
                     "homepage": "https://www.drupal.org/user/2320090"
                 },
-                {
-                    "name": "musa.thomas",
-                    "homepage": "https://www.drupal.org/user/1213824"
-                },
                 {
                     "name": "romainj",
                     "homepage": "https://www.drupal.org/user/370706"
                 }
             ],
-            "description": "Adds menu links like Flush cache, Run cron, Run updates, and Logout under Drupal icon.",
-            "homepage": "https://www.drupal.org/project/admin_toolbar",
-            "support": {
-                "source": "https://git.drupalcode.org/project/admin_toolbar"
-            }
-        },
-        {
-            "name": "drupal/allowed_formats",
-            "version": "3.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/allowed_formats.git",
-                "reference": "3.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/allowed_formats-3.0.1.zip",
-                "reference": "3.0.1",
-                "shasum": "9dfaed3ab8425ee94146914fdb492cefc6c6bb4d"
-            },
-            "require": {
-                "drupal/core": "^10.1 || ^11"
-            },
-            "conflict": {
-                "drupal/core": "<10.1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.1",
-                    "datestamp": "1723158950",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Northern Commerce (formerly Digital Echidna)",
-                    "homepage": "https://www.drupal.org/northern-commerce-formerly-digital-echidna",
-                    "role": "Supporting organization"
-                },
-                {
-                    "name": "Jordan Thompson (nord102)",
-                    "homepage": "https://www.drupal.org/u/nord102",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Wunder",
-                    "homepage": "https://www.drupal.org/wunder",
-                    "role": "Supporting organization"
-                },
-                {
-                    "name": "Florian Loretan (floretan)",
-                    "homepage": "https://www.drupal.org/u/floretan",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Hides info about the selected text format. The 'allowed formats' functionality has been moved to core since Drupal 10.1.0.",
-            "homepage": "https://www.drupal.org/project/allowed_formats",
-            "support": {
-                "source": "http://cgit.drupalcode.org/allowed_formats",
-                "issues": "https://www.drupal.org/project/issues/allowed_formats"
-            }
-        },
-        {
-            "name": "drupal/antibot",
-            "version": "2.0.4",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/antibot.git",
-                "reference": "2.0.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/antibot-2.0.4.zip",
-                "reference": "2.0.4",
-                "shasum": "58b215291b250ea410194693cbac2da6f54a8530"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.4",
-                    "datestamp": "1723819813",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "danrod",
-                    "homepage": "https://www.drupal.org/user/19150"
-                },
-                {
-                    "name": "gaurav.kapoor",
-                    "homepage": "https://www.drupal.org/user/3495331"
-                },
-                {
-                    "name": "mstef",
-                    "homepage": "https://www.drupal.org/user/107190"
-                }
-            ],
-            "description": "Prevent forms from being submitted without JavaScript enabled.",
-            "homepage": "https://www.drupal.org/project/antibot",
-            "support": {
-                "source": "https://git.drupalcode.org/project/antibot"
-            }
-        },
-        {
-            "name": "drupal/asset_injector",
-            "version": "2.21.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/asset_injector.git",
-                "reference": "8.x-2.21"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/asset_injector-8.x-2.21.zip",
-                "reference": "8.x-2.21",
-                "shasum": "24dc111e995d6a33cb9f11f106b0d1e716e92767"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.21",
-                    "datestamp": "1723044656",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mike Decker",
-                    "homepage": "https://www.drupal.org/u/pookmish"
-                },
-                {
-                    "name": "Axel Rutz",
-                    "homepage": "https://www.drupal.org/u/axelrutz"
-                }
-            ],
-            "description": "Adds CSS or JS to the page output based on configurable rules.",
-            "homepage": "http://drupal.org/project/asset_injector",
-            "support": {
-                "source": "https://git.drupalcode.org/project/asset_injector",
-                "issues": "https://www.drupal.org/project/issues/asset_injector"
-            }
-        },
-        {
-            "name": "drupal/auto_entitylabel",
-            "version": "3.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
-                "reference": "8.x-3.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.4.zip",
-                "reference": "8.x-3.4",
-                "shasum": "9b3d7bc8e450ae008b3f48fed0dd9dace03ddbb5"
-            },
-            "require": {
-                "drupal/core": "^10.1 || ^11"
-            },
-            "require-dev": {
-                "drupal/book": "^1.0",
-                "drupal/token": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-3.4",
-                    "datestamp": "1736308389",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bforchhammer",
-                    "homepage": "https://www.drupal.org/user/216396"
-                },
-                {
-                    "name": "colan",
-                    "homepage": "https://www.drupal.org/user/58704"
-                },
-                {
-                    "name": "dqd",
-                    "homepage": "https://www.drupal.org/user/1001934"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "mandclu",
-                    "homepage": "https://www.drupal.org/user/52136"
-                },
-                {
-                    "name": "pravin ajaaz",
-                    "homepage": "https://www.drupal.org/user/2910049"
-                },
-                {
-                    "name": "purushotam.rai",
-                    "homepage": "https://www.drupal.org/user/3193859"
-                },
-                {
-                    "name": "renatog",
-                    "homepage": "https://www.drupal.org/user/3326031"
-                },
-                {
-                    "name": "vladimiraus",
-                    "homepage": "https://www.drupal.org/user/673120"
-                }
-            ],
-            "description": "Allows hiding of entity label fields and automatic label creation.",
-            "homepage": "https://www.drupal.org/project/auto_entitylabel",
-            "support": {
-                "source": "https://git.drupalcode.org/project/auto_entitylabel",
-                "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
-            }
-        },
-        {
-            "name": "drupal/automated_crop",
-            "version": "4.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/automated_crop.git",
-                "reference": "4.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/automated_crop-4.0.2.zip",
-                "reference": "4.0.2",
-                "shasum": "9126a9965c4159fc05c4c473aa311cf7f88a1418"
-            },
-            "require": {
-                "drupal/core": "^10.1 || ^11",
-                "drupal/crop": "^2.2"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.2",
-                    "datestamp": "1738584452",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "ikphilip",
-                    "homepage": "https://www.drupal.org/user/3549191"
-                },
-                {
-                    "name": "rosemaryreilman",
-                    "homepage": "https://www.drupal.org/user/3356158"
-                },
-                {
-                    "name": "woprrr",
-                    "homepage": "https://www.drupal.org/user/858604"
-                }
-            ],
-            "description": "Provides automated cropping tools API.",
-            "homepage": "https://www.drupal.org/project/automated_crop",
-            "support": {
-                "source": "https://git.drupalcode.org/project/automated_crop",
-                "issues": "https://www.drupal.org/project/issues/automated_crop"
-            }
-        },
-        {
-            "name": "drupal/autosave_form",
-            "version": "1.10.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/autosave_form.git",
-                "reference": "8.x-1.10"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.10.zip",
-                "reference": "8.x-1.10",
-                "shasum": "99e270c30bf09a2688a5b23814beced13f8f7ba4"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.10",
-                    "datestamp": "1738605622",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "hchonov",
-                    "homepage": "https://www.drupal.org/user/2901211"
-                }
-            ],
-            "description": "Adds autosave feature on forms.",
-            "homepage": "https://www.drupal.org/project/autosave_form",
-            "support": {
-                "source": "https://git.drupalcode.org/project/autosave_form"
-            }
-        },
-        {
-            "name": "drupal/backup_migrate",
-            "version": "5.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/backup_migrate.git",
-                "reference": "5.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.1.0.zip",
-                "reference": "5.1.0",
-                "shasum": "bfc523c4d01f2f5dcbb2a612455b8f0a84d651b2"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "suggest": {
-                "defuse/php-encryption": "Optional encryption of saved backups."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "5.1.0",
-                    "datestamp": "1732034636",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "See contributors",
-                    "homepage": "https://www.drupal.org/node/189065/committers",
-                    "role": "Developer"
-                },
-                {
-                    "name": "damienmckenna",
-                    "homepage": "https://www.drupal.org/user/108450"
-                },
-                {
-                    "name": "dgorton",
-                    "homepage": "https://www.drupal.org/user/19044"
-                },
-                {
-                    "name": "ikit-claw",
-                    "homepage": "https://www.drupal.org/user/3285813"
-                },
-                {
-                    "name": "ronan",
-                    "homepage": "https://www.drupal.org/user/72815"
-                }
-            ],
-            "description": "Backup and Migrate Drupal Module",
-            "homepage": "https://www.drupal.org/project/backup_migrate",
-            "support": {
-                "source": "https://git.drupalcode.org/project/backup_migrate",
-                "issues": "https://www.drupal.org/project/issues/backup_migrate",
-                "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
-            }
-        },
-        {
-            "name": "drupal/better_exposed_filters",
-            "version": "6.0.6",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
-                "reference": "6.0.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
-                "reference": "6.0.6",
-                "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10",
-                "drupal/jquery_ui": "*",
-                "drupal/jquery_ui_datepicker": "*",
-                "drupal/jquery_ui_slider": "*",
-                "drupal/jquery_ui_touch_punch": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "6.0.6",
-                    "datestamp": "1716397541",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mike Keran",
-                    "homepage": "https://www.drupal.org/u/mikeker"
-                },
-                {
-                    "name": "Martin Keereman",
-                    "homepage": "https://www.drupal.org/u/etroid"
-                },
-                {
-                    "name": "Neslee Canil Pinto",
-                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
-                },
-                {
-                    "name": "mikeker",
-                    "homepage": "https://www.drupal.org/user/192273"
-                },
-                {
-                    "name": "neslee canil pinto",
-                    "homepage": "https://www.drupal.org/user/3580850"
-                },
-                {
-                    "name": "podarok",
-                    "homepage": "https://www.drupal.org/user/116002"
-                },
-                {
-                    "name": "rlhawk",
-                    "homepage": "https://www.drupal.org/user/352283"
-                },
-                {
-                    "name": "smustgrave",
-                    "homepage": "https://www.drupal.org/user/3252890"
-                }
-            ],
-            "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
-            "homepage": "https://www.drupal.org/project/better_exposed_filters",
-            "support": {
-                "source": "https://git.drupalcode.org/project/better_exposed_filters",
-                "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
-            }
-        },
-        {
-            "name": "drupal/block_class",
-            "version": "4.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/block_class.git",
-                "reference": "4.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip",
-                "reference": "4.0.1",
-                "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.1",
-                    "datestamp": "1745427425",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Todd Nienkerk",
-                    "homepage": "https://www.drupal.org/u/todd-nienkerk",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Renato Gonçalves (RenatoG)",
-                    "homepage": "https://www.drupal.org/u/RenatoG",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Neslee Canil Pinto",
-                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Aaron Stanush",
-                    "homepage": "https://www.drupal.org/u/aaron-stanush",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "David Suissa (DYdave)",
-                    "homepage": "https://www.drupal.org/u/DYdave",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Four Kitchens",
-                    "homepage": "https://www.drupal.org/user/358502",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "berenddeboer",
-                    "homepage": "https://www.drupal.org/u/berenddeboer",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "elliotttf",
-                    "homepage": "https://www.drupal.org/u/elliotttf",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Michal Minecki (mirzu)",
-                    "homepage": "https://www.drupal.org/u/mirzu",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Patrick Coffey (pcoffey)",
-                    "homepage": "https://www.drupal.org/u/pcoffey",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Taylor Smith (tsmith512)",
-                    "homepage": "https://www.drupal.org/u/tsmith512",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Allows assigning classes to Blocks.",
-            "homepage": "https://www.drupal.org/project/block_class",
+            "description": "Adds menu links to the Admin Toolbar.",
+            "homepage": "http://drupal.org/project/admin_toolbar",
             "keywords": [
-                "Drupal"
+                "Drupal",
+                "Toolbar"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/block_class",
-                "issues": "https://www.drupal.org/project/issues/block_class",
-                "irc": "irc://irc.freenode.org/drupal-contribute"
+                "source": "http://cgit.drupalcode.org/admin_toolbar",
+                "issues": "https://www.drupal.org/project/issues/admin_toolbar"
+            }
+        },
+        {
+            "name": "drupal/better_normalizers",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/better_normalizers.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/better_normalizers-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "876c5f0006c3764677e1dbe6dec60a32d5a2d636"
+            },
+            "require": {
+                "drupal/core": "^8.3"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1493796785",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "Sam152",
+                    "homepage": "https://www.drupal.org/user/1485048"
+                },
+                {
+                    "name": "andypost",
+                    "homepage": "https://www.drupal.org/user/118908"
+                },
+                {
+                    "name": "chr.fritsch",
+                    "homepage": "https://www.drupal.org/user/2103716"
+                },
+                {
+                    "name": "larowlan",
+                    "homepage": "https://www.drupal.org/user/395439"
+                }
+            ],
+            "description": "Improve the normalizers in core.",
+            "homepage": "https://www.drupal.org/project/better_normalizers",
+            "support": {
+                "source": "https://git.drupalcode.org/project/better_normalizers"
             }
         },
         {
             "name": "drupal/block_visibility_groups",
-            "version": "2.0.4",
+            "version": "1.3.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/block_visibility_groups.git",
-                "reference": "2.0.4"
+                "reference": "8.x-1.3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.4.zip",
-                "reference": "2.0.4",
-                "shasum": "40ad2b557d610ea9aff3b81be6d6867287b6f34d"
+                "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-8.x-1.3.zip",
+                "reference": "8.x-1.3",
+                "shasum": "3c42377fcf6b849e8509b4b993a750cbc1a90a9b"
             },
             "require": {
-                "drupal/core": "^9 || ^10 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.4",
-                    "datestamp": "1737112821",
+                    "version": "8.x-1.3",
+                    "datestamp": "1536509886",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -2917,13 +2342,9 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
-                {
-                    "name": "damienmckenna",
-                    "homepage": "https://www.drupal.org/user/108450"
-                },
                 {
                     "name": "joelpittet",
                     "homepage": "https://www.drupal.org/user/160302"
@@ -2937,78 +2358,32 @@
                     "homepage": "https://www.drupal.org/user/240860"
                 }
             ],
-            "description": "Block Visibility Groups",
-            "homepage": "https://www.drupal.org/project/block_visibility_groups",
+            "description": "My Awesome Module",
+            "homepage": "http://drupal.org/project/block_visibility_groups",
             "keywords": [
                 "Drupal"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/block_visibility_groups",
-                "issues": "https://www.drupal.org/project/issues/block_visibility_groups"
-            }
-        },
-        {
-            "name": "drupal/bpmn_io",
-            "version": "1.1.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/bpmn_io.git",
-                "reference": "1.1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/bpmn_io-1.1.5.zip",
-                "reference": "1.1.5",
-                "shasum": "02dc10526d1e83195bd2a93b1fb28835755c7527"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10",
-                "drupal/eca": "^1.0",
-                "drupal/eca_modeller_bpmn": "*",
-                "php": ">=7.4"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.5",
-                    "datestamp": "1744192147",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "boromino",
-                    "homepage": "https://www.drupal.org/user/859722"
-                },
-                {
-                    "name": "jurgenhaas",
-                    "homepage": "https://www.drupal.org/user/168924"
-                }
-            ],
-            "description": "BPMN modeller for ECA, integrated into Drupal's admin UI.",
-            "homepage": "https://www.drupal.org/project/bpmn_io",
-            "support": {
-                "source": "https://drupal.org/project/bpmn_io",
-                "issues": "https://drupal.org/project/issues/bpmn_io"
+                "source": "http://cgit.drupalcode.org/block_visibility_groups",
+                "issues": "http://drupal.org/project/issues/block_visibility_groups"
             }
         },
         {
             "name": "drupal/bulma",
-            "version": "dev-1.x",
+            "version": "1.0.0-beta3",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/bulma.git",
-                "reference": "56483c2ff11e8f925af20a15b0cc7636fc74ad45"
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/bulma-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "cfc76cffc10c198afb78a7699690b3f95c5ea950"
             },
             "require": {
-                "drupal/core": "^9.2 || ^10"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-theme",
             "extra": {
@@ -3016,11 +2391,11 @@
                     "dev-1.x": "1.x-dev"
                 },
                 "drupal": {
-                    "version": "8.x-1.1+13-dev",
-                    "datestamp": "1721362481",
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1566343985",
                     "security-coverage": {
                         "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
+                        "message": "Beta releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -3030,20 +2405,8 @@
             ],
             "authors": [
                 {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "g4mbini",
-                    "homepage": "https://www.drupal.org/user/2533498"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
                 },
                 {
                     "name": "valic",
@@ -3051,361 +2414,40 @@
                 }
             ],
             "description": "Built to use Bulma, a modern CSS framework based on Flexbox.",
-            "homepage": "http://drupal.org/project/bulma",
-            "keywords": [
-                "Drupal"
-            ],
+            "homepage": "https://www.drupal.org/project/bulma",
             "support": {
-                "source": "https://git.drupalcode.org/project/bulma",
-                "issues": "http://drupal.org/project/issues/bulma"
-            }
-        },
-        {
-            "name": "drupal/bulma_components",
-            "version": "dev-1.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/bulma_components.git",
-                "reference": "bee8420ca8c906fbccc1bc3172e4ae9d3ac5e15d"
-            },
-            "require": {
-                "drupal/component_schema": "*",
-                "drupal/components": "*",
-                "drupal/core": "^8.8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.0.x": "1.0.x-dev"
-                },
-                "drupal": {
-                    "version": "1.0.0-alpha6+21-dev",
-                    "datestamp": "1687490397",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "nedjo",
-                    "homepage": "https://www.drupal.org/user/4481"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Provides a set of components to be used when theming with the Bulma CSS framework.",
-            "homepage": "https://www.drupal.org/project/bulma_components",
-            "support": {
-                "source": "https://git.drupalcode.org/project/bulma_components"
-            }
-        },
-        {
-            "name": "drupal/cancel_button",
-            "version": "1.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/cancel_button.git",
-                "reference": "8.x-1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/cancel_button-8.x-1.5.zip",
-                "reference": "8.x-1.5",
-                "shasum": "07ce620c57cdd16ac751f78d9c3397ea9350d1f8"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.5",
-                    "datestamp": "1732804482",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "danmuzyka",
-                    "homepage": "https://www.drupal.org/user/48685"
-                },
-                {
-                    "name": "heddn",
-                    "homepage": "https://www.drupal.org/user/1463982"
-                },
-                {
-                    "name": "kevin.dutra",
-                    "homepage": "https://www.drupal.org/user/1312744"
-                },
-                {
-                    "name": "sukanya.ramakrishnan",
-                    "homepage": "https://www.drupal.org/user/3320069"
-                }
-            ],
-            "description": "This small module adds a Cancel button to Entity forms.",
-            "homepage": "https://www.drupal.org/project/cancel_button",
-            "support": {
-                "source": "https://git.drupalcode.org/project/cancel_button"
-            }
-        },
-        {
-            "name": "drupal/captcha",
-            "version": "2.0.7",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/captcha.git",
-                "reference": "2.0.7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/captcha-2.0.7.zip",
-                "reference": "2.0.7",
-                "shasum": "8e97ba41810811bcd5d7e8b714cdc0b664dd8eec"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.7",
-                    "datestamp": "1732250192",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "branch-alias": {
-                    "dev-8.x-1.x": "1.x-dev"
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "anybody",
-                    "homepage": "https://www.drupal.org/user/291091"
-                },
-                {
-                    "name": "elachlan",
-                    "homepage": "https://www.drupal.org/user/1021502"
-                },
-                {
-                    "name": "grevil",
-                    "homepage": "https://www.drupal.org/user/3668491"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "naveenvalecha",
-                    "homepage": "https://www.drupal.org/user/2665733"
-                },
-                {
-                    "name": "podarok",
-                    "homepage": "https://www.drupal.org/user/116002"
-                },
-                {
-                    "name": "robloach",
-                    "homepage": "https://www.drupal.org/user/61114"
-                },
-                {
-                    "name": "thomas.frobieter",
-                    "homepage": "https://www.drupal.org/user/409335"
-                },
-                {
-                    "name": "wundo",
-                    "homepage": "https://www.drupal.org/user/25523"
-                }
-            ],
-            "description": "The CAPTCHA module provides this feature to virtually any user facing web form on a Drupal site.",
-            "homepage": "https://www.drupal.org/project/captcha",
-            "support": {
-                "source": "https://git.drupalcode.org/project/captcha",
-                "issues": "https://www.drupal.org/project/issues/captcha"
-            }
-        },
-        {
-            "name": "drupal/charts",
-            "version": "5.1.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/charts.git",
-                "reference": "5.1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/charts-5.1.5.zip",
-                "reference": "5.1.5",
-                "shasum": "e0ef459623556ef3d9faa5656df9e35bfe4b2876"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "5.1.5",
-                    "datestamp": "1744408472",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Daniel Cothran (andileco)",
-                    "homepage": "https://www.drupal.org/u/andileco",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Nia Kathoni (nikathone)",
-                    "homepage": "https://www.drupal.org/u/nikathone",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Nate Lampton (quicksketch)",
-                    "homepage": "https://www.drupal.org/u/quicksketch",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "brmassa",
-                    "homepage": "https://www.drupal.org/u/brmassa",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Rafal W (kenorb)",
-                    "homepage": "https://www.drupal.org/u/kenorb",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Pierre Vriens (pierrevriens)",
-                    "homepage": "https://www.drupal.org/u/pierrevriens",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Majali (rashad612)",
-                    "homepage": "https://www.drupal.org/u/rashad612",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "A charting API for Drupal that provides chart elements and integration with Views",
-            "homepage": "https://drupal.org/project/charts",
-            "support": {
-                "source": "https://git.drupalcode.org/project/charts",
-                "issues": "https://www.drupal.org/project/issues/charts?version=all_5.1.*",
-                "docs": "https://www.drupal.org/docs/contributed-modules/charts"
-            }
-        },
-        {
-            "name": "drupal/charts_chartjs",
-            "version": "5.1.5",
-            "require": {
-                "drupal/charts": "*",
-                "drupal/core": "^10.3 || ^11"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "5.1.5",
-                    "datestamp": "1744408472",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "andileco",
-                    "homepage": "https://www.drupal.org/user/2054544"
-                },
-                {
-                    "name": "nikathone",
-                    "homepage": "https://www.drupal.org/user/2421800"
-                },
-                {
-                    "name": "quicksketch",
-                    "homepage": "https://www.drupal.org/user/35821"
-                }
-            ],
-            "description": "Charts module integration with Chart.js.",
-            "homepage": "https://www.drupal.org/project/charts",
-            "support": {
-                "source": "https://git.drupalcode.org/project/charts"
+                "source": "https://git.drupalcode.org/project/bulma"
             }
         },
         {
             "name": "drupal/checklistapi",
-            "version": "2.1.6",
+            "version": "1.10.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/checklistapi.git",
-                "reference": "2.1.6"
+                "reference": "8.x-1.10"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/checklistapi-2.1.6.zip",
-                "reference": "2.1.6",
-                "shasum": "64f439b7dd09336c4b32480edf1796cbc911d9b4"
+                "url": "https://ftp.drupal.org/files/projects/checklistapi-8.x-1.10.zip",
+                "reference": "8.x-1.10",
+                "shasum": "9f9e39613e50f649b0a0e06b7ec5d056c795c27b"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10 || ^11",
-                "php": ">=7.3.0"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.1.6",
-                    "datestamp": "1713801912",
+                    "version": "8.x-1.10",
+                    "datestamp": "1553692687",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^10"
-                    }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -3414,55 +2456,41 @@
             ],
             "authors": [
                 {
-                    "name": "Travis Carden",
-                    "homepage": "https://www.drupal.org/user/3550392",
-                    "email": "travis.carden@gmail.com"
-                },
-                {
-                    "name": "rajeshreeputra",
-                    "homepage": "https://www.drupal.org/user/3418561"
-                },
-                {
-                    "name": "traviscarden",
+                    "name": "TravisCarden",
                     "homepage": "https://www.drupal.org/user/236758"
-                },
-                {
-                    "name": "vladimiraus",
-                    "homepage": "https://www.drupal.org/user/673120"
                 }
             ],
             "description": "Provides an API for creating fillable, persistent checklists.",
-            "homepage": "http://drupal.org/project/checklistapi",
+            "homepage": "https://www.drupal.org/project/checklistapi",
             "support": {
-                "source": "https://git.drupalcode.org/project/checklistapi",
-                "issues": "https://www.drupal.org/project/issues/checklistapi"
+                "source": "https://git.drupalcode.org/project/checklistapi"
             }
         },
         {
-            "name": "drupal/ckeditor",
-            "version": "1.0.2",
+            "name": "drupal/claro",
+            "version": "1.0.0-alpha4",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/ckeditor.git",
-                "reference": "1.0.2"
+                "url": "https://git.drupalcode.org/project/claro.git",
+                "reference": "8.x-1.0-alpha4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/ckeditor-1.0.2.zip",
-                "reference": "1.0.2",
-                "shasum": "fec2ca9ad852a00c7b9584cb6040dc860364c481"
+                "url": "https://ftp.drupal.org/files/projects/claro-8.x-1.0-alpha4.zip",
+                "reference": "8.x-1.0-alpha4",
+                "shasum": "151906eaef0fa2ade0cbffb2248565066544055a"
             },
             "require": {
-                "drupal/core": "^9.4 || ^10"
+                "drupal/core": "~8.0"
             },
-            "require-dev": {
-                "drupal/classy": "*"
-            },
-            "type": "drupal-module",
+            "type": "drupal-theme",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "1.0.2",
-                    "datestamp": "1695740655",
+                    "version": "8.x-1.0-alpha4",
+                    "datestamp": "1564677185",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Project has not opted into security advisory coverage!"
@@ -3475,358 +2503,59 @@
             ],
             "authors": [
                 {
-                    "name": "hass",
-                    "homepage": "https://www.drupal.org/user/85918"
+                    "name": "balsama",
+                    "homepage": "https://www.drupal.org/user/223087"
                 },
                 {
-                    "name": "jcisio",
-                    "homepage": "https://www.drupal.org/user/210762"
+                    "name": "ckrina",
+                    "homepage": "https://www.drupal.org/user/1206650"
                 },
                 {
-                    "name": "Jorrit",
-                    "homepage": "https://www.drupal.org/user/161217"
+                    "name": "huzooka",
+                    "homepage": "https://www.drupal.org/user/281301"
                 },
                 {
                     "name": "lauriii",
                     "homepage": "https://www.drupal.org/user/1078742"
                 },
                 {
-                    "name": "magnus",
-                    "homepage": "https://www.drupal.org/user/73919"
-                },
-                {
-                    "name": "nod_",
-                    "homepage": "https://www.drupal.org/user/598310"
-                },
-                {
-                    "name": "p.wiaderny",
-                    "homepage": "https://www.drupal.org/user/2956619"
-                },
-                {
-                    "name": "vokiel",
-                    "homepage": "https://www.drupal.org/user/2793801"
-                },
-                {
-                    "name": "wim leers",
-                    "homepage": "https://www.drupal.org/user/99777"
-                },
-                {
-                    "name": "wwalc",
-                    "homepage": "https://www.drupal.org/user/184556"
-                },
-                {
-                    "name": "xjm",
-                    "homepage": "https://www.drupal.org/user/65776"
+                    "name": "saschaeggi",
+                    "homepage": "https://www.drupal.org/user/1999056"
                 }
             ],
-            "description": "WYSIWYG editing for rich text fields using CKEditor.",
-            "homepage": "https://www.drupal.org/project/ckeditor",
+            "description": "A clean, accessible and powerful Drupal administration theme.",
+            "homepage": "https://www.drupal.org/project/claro",
             "support": {
-                "source": "https://git.drupalcode.org/project/ckeditor"
-            }
-        },
-        {
-            "name": "drupal/ckeditor_iframe",
-            "version": "3.0.0-beta3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/ckeditor_iframe.git",
-                "reference": "3.0.0-beta3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/ckeditor_iframe-3.0.0-beta3.zip",
-                "reference": "3.0.0-beta3",
-                "shasum": "4df0f006a218c1f40c833a5afa30ee52321ed2e1"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10.3 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.0-beta3",
-                    "datestamp": "1743012017",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Beta releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Kevin Quillen (kevinquillen)",
-                    "homepage": "https://www.drupal.org/u/kevinquillen",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Brian Osborne (bkosborne)",
-                    "homepage": "https://www.drupal.org/u/bkosborne",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Adds the iFrame dialog plugin to CKEditor.",
-            "homepage": "http://drupal.org/project/ckeditor_iframe",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/ckeditor_iframe",
-                "issues": "https://drupal.org/project/issues/ckeditor_iframe"
-            }
-        },
-        {
-            "name": "drupal/ckeditorheight",
-            "version": "1.9.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/ckeditorheight.git",
-                "reference": "8.x-1.9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/ckeditorheight-8.x-1.9.zip",
-                "reference": "8.x-1.9",
-                "shasum": "28119489b4a21f39e5b31e482fdb9fdf05abf6e8"
-            },
-            "require": {
-                "drupal/ckeditor": "^1.0",
-                "drupal/core": "^9.4 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.9",
-                    "datestamp": "1687950399",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "anruether",
-                    "homepage": "https://www.drupal.org/user/894458"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                }
-            ],
-            "description": "Adjusts CKEditor height to field row setting until we have https://www.drupal.org/node/2788905.",
-            "homepage": "https://www.drupal.org/project/ckeditorheight",
-            "support": {
-                "source": "https://git.drupalcode.org/project/ckeditorheight"
-            }
-        },
-        {
-            "name": "drupal/classitup",
-            "version": "1.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/classitup.git",
-                "reference": "8.x-1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/classitup-8.x-1.1.zip",
-                "reference": "8.x-1.1",
-                "shasum": "309d2bfff59117422c41e8b81b1e8d92f6bd5781"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.1",
-                    "datestamp": "1668119396",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Class it up provides classes based on information Drupal knows about.",
-            "homepage": "https://www.drupal.org/project/classitup",
-            "keywords": [
-                "CSS",
-                "classes",
-                "drupal",
-                "styling",
-                "theming"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/classitup.git",
-                "issues": "https://www.drupal.org/project/issues/classitup"
-            }
-        },
-        {
-            "name": "drupal/comment_notify",
-            "version": "1.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/comment_notify.git",
-                "reference": "8.x-1.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/comment_notify-8.x-1.4.zip",
-                "reference": "8.x-1.4",
-                "shasum": "9f98848f25c1a0db60a8d39f6bbe1d22f47cc2a9"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/token": "^1.6"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.4",
-                    "datestamp": "1679409019",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Greg Knaddison (greggles)",
-                    "homepage": "https://www.drupal.org/u/greggles",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "David Valdez (gnuget)",
-                    "homepage": "https://www.drupal.org/u/gnuget",
-                    "role": "Co-maintainer"
-                },
-                {
-                    "name": "greggles",
-                    "homepage": "https://www.drupal.org/user/36762"
-                },
-                {
-                    "name": "stefanos.petrakis",
-                    "homepage": "https://www.drupal.org/user/2573064"
-                }
-            ],
-            "description": "Comment follow-up e-mail notification for anonymous as well as registered users.",
-            "homepage": "https://drupal.org/project/comment_notify",
-            "support": {
-                "source": "https://git.drupalcode.org/project/comment_notify",
-                "issues": "https://drupal.org/project/issues/comment_notify",
-                "irc": "irc://irc.freenode.org/drupal-contribute"
-            }
-        },
-        {
-            "name": "drupal/component_schema",
-            "version": "1.0.0-alpha7",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/component_schema.git",
-                "reference": "1.0.0-alpha7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/component_schema-1.0.0-alpha7.zip",
-                "reference": "1.0.0-alpha7",
-                "shasum": "1f19ee533b8556fa6435d3bf390a76f48ce2805d"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10"
-            },
-            "require-dev": {
-                "drupal/ui_patterns": "*",
-                "drupal/ui_patterns_settings": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.0.0-alpha7",
-                    "datestamp": "1701819925",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Provides schema support for components, including styleguide integration via the Styleguide module.",
-            "homepage": "https://www.drupal.org/project/component_schema",
-            "support": {
-                "source": "https://git.drupalcode.org/project/component_schema"
+                "source": "https://git.drupalcode.org/project/claro",
+                "docs": "https://www.drupal.org/docs/8/modules/claro",
+                "issues": "https://www.drupal.org/project/issues/claro"
             }
         },
         {
             "name": "drupal/components",
-            "version": "3.1.0",
+            "version": "1.1.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/components.git",
-                "reference": "3.1.0"
+                "reference": "8.x-1.1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/components-3.1.0.zip",
-                "reference": "3.1.0",
-                "shasum": "a9d9f7517f54038d0d6fa68185d80e26d2ad1d8d"
+                "url": "https://ftp.drupal.org/files/projects/components-8.x-1.1.zip",
+                "reference": "8.x-1.1",
+                "shasum": "72af8ff1ca842556ee4b95335595c24703acdb75"
             },
             "require": {
-                "drupal/core": "^10.2 || ^11"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "3.1.0",
-                    "datestamp": "1725921122",
+                    "version": "8.x-1.1",
+                    "datestamp": "1556870881",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -3840,49 +2569,41 @@
             "authors": [
                 {
                     "name": "JohnAlbin",
-                    "homepage": "https://www.drupal.org/user/1036766",
-                    "email": "virtually.johnalbin@gmail.com"
-                },
-                {
-                    "name": "johnalbin",
                     "homepage": "https://www.drupal.org/user/32095"
                 },
                 {
-                    "name": "robloach",
+                    "name": "RobLoach",
                     "homepage": "https://www.drupal.org/user/61114"
                 }
             ],
-            "description": "Registers folders of components defined by your theme or module as Twig namespaces",
-            "homepage": "https://drupal.org/project/components",
+            "description": "Registers “component libraries” defined in modules and themes with the Twig system",
+            "homepage": "https://www.drupal.org/project/components",
             "support": {
                 "source": "https://git.drupalcode.org/project/components"
             }
         },
         {
             "name": "drupal/config_actions",
-            "version": "1.4.0",
+            "version": "dev-1.x",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_actions.git",
-                "reference": "8.x-1.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_actions-8.x-1.4.zip",
-                "reference": "8.x-1.4",
-                "shasum": "28d952460b6e634e44339c9df4946570fc745110"
+                "reference": "026055919eb73f9e79aac2f2b9ec0fc85d195569"
             },
             "require": {
-                "drupal/core": "^9.4 || ^10"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.4",
-                    "datestamp": "1687387836",
+                    "version": "8.x-1.1+1-dev",
+                    "datestamp": "1556823781",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Dev releases are not covered by Drupal security advisories."
                     }
                 },
                 "drush": {
@@ -3917,106 +2638,98 @@
             "homepage": "https://www.drupal.org/project/config_actions",
             "support": {
                 "source": "https://git.drupalcode.org/project/config_actions"
-            }
+            },
+            "time": "2019-05-03T15:13:24+00:00"
         },
         {
             "name": "drupal/config_actions_provider",
-            "version": "1.3.0",
+            "version": "1.0.0-rc1",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_actions_provider.git",
-                "reference": "8.x-1.3"
+                "reference": "8.x-1.0-rc1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.3.zip",
-                "reference": "8.x-1.3",
-                "shasum": "af685e35f0d06a00c70facaee916eb2b86f8d97b"
+                "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-rc1.zip",
+                "reference": "8.x-1.0-rc1",
+                "shasum": "58465e27987b9f826dd767884a8e69193abbd854"
             },
             "require": {
                 "drupal/config_actions": "*",
-                "drupal/config_provider": "*",
+                "drupal/config_provider": "^2",
                 "drupal/config_sync": "*",
-                "drupal/core": "^8.8 || ^9 || ^10"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.3",
-                    "datestamp": "1692990328",
+                    "version": "8.x-1.0-rc1",
+                    "datestamp": "1550207284",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
                     }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0+"
+                "GPL-2.0-or-later"
             ],
             "authors": [
                 {
                     "name": "bircher",
                     "homepage": "https://www.drupal.org/user/1344166"
                 },
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
                 {
                     "name": "nedjo",
                     "homepage": "https://www.drupal.org/user/4481"
                 }
             ],
-            "description": "Apply config actions when applying configuration updates",
-            "homepage": "http://drupal.org/project/config_actions_provider",
-            "keywords": [
-                "Drupal"
-            ],
+            "description": "Apply config actions when applying configuration updates.",
+            "homepage": "https://www.drupal.org/project/config_actions_provider",
             "support": {
-                "source": "http://cgit.drupalcode.org/config_actions_provider",
-                "issues": "http://drupal.org/project/issues/config_actions_provider"
+                "source": "https://git.drupalcode.org/project/config_actions_provider"
             }
         },
         {
             "name": "drupal/config_distro",
-            "version": "2.1.0-alpha1",
+            "version": "1.0.0-alpha3",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_distro.git",
-                "reference": "2.1.0-alpha1"
+                "reference": "8.x-1.0-alpha3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_distro-2.1.0-alpha1.zip",
-                "reference": "2.1.0-alpha1",
-                "shasum": "913fa76468e19b730bd23955ef3640b3dab56481"
+                "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha3.zip",
+                "reference": "8.x-1.0-alpha3",
+                "shasum": "c83fcd71c311102cb64f72b8f7ca727bddff2264"
             },
             "require": {
                 "drupal/config_filter": "*",
-                "drupal/core": "^10.3 || ^11"
-            },
-            "require-dev": {
-                "drupal/config_distro_filter": "*",
-                "drupal/config_filter": "*",
-                "drush/drush": ">=11"
-            },
-            "suggest": {
-                "drush/drush": ">=11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.1.0-alpha1",
-                    "datestamp": "1743102880",
+                    "version": "8.x-1.0-alpha3",
+                    "datestamp": "1539071280",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Alpha releases are not covered by Drupal security advisories."
                     }
+                },
+                "drush": {
+                    "services": {
+                        "drush.services.yml": "^9"
+                    }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -4037,8 +2750,8 @@
                     "role": "Maintainer"
                 },
                 {
-                    "name": "joegraduate",
-                    "homepage": "https://www.drupal.org/user/789384"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
                 },
                 {
                     "name": "pescetti",
@@ -4057,85 +2770,34 @@
                 "irc": "irc://irc.freenode.org/drupal-contribute"
             }
         },
-        {
-            "name": "drupal/config_distro_filter",
-            "version": "2.1.0-alpha1",
-            "require": {
-                "drupal/config_distro": "*",
-                "drupal/config_filter": "*",
-                "drupal/core": "^10.3 || ^11"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0-alpha1",
-                    "datestamp": "1743102880",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ademarco",
-                    "homepage": "https://www.drupal.org/user/186696"
-                },
-                {
-                    "name": "bircher",
-                    "homepage": "https://www.drupal.org/user/1344166"
-                },
-                {
-                    "name": "joegraduate",
-                    "homepage": "https://www.drupal.org/user/789384"
-                },
-                {
-                    "name": "pescetti",
-                    "homepage": "https://www.drupal.org/user/436244"
-                },
-                {
-                    "name": "pfrenssen",
-                    "homepage": "https://www.drupal.org/user/382067"
-                }
-            ],
-            "description": "Bridge between Config Filter and Config Distro's use of Transform API to keep backwards compatibility.",
-            "homepage": "https://www.drupal.org/project/config_distro",
-            "support": {
-                "source": "https://git.drupalcode.org/project/config_distro"
-            }
-        },
         {
             "name": "drupal/config_filter",
-            "version": "2.7.0",
+            "version": "1.4.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_filter.git",
-                "reference": "8.x-2.7"
+                "reference": "8.x-1.4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
-                "reference": "8.x-2.7",
-                "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
+                "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
+                "reference": "8.x-1.4",
+                "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
             },
             "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11"
-            },
-            "conflict": {
-                "drush/drush": "<10"
+                "drupal/core": "~8.0"
             },
             "suggest": {
                 "drupal/config_split": "Split site configuration for different environments."
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-2.7",
-                    "datestamp": "1727472458",
+                    "version": "8.x-1.4",
+                    "datestamp": "1542184982",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -4144,7 +2806,7 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -4172,112 +2834,39 @@
                 "configuration management"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/config_filter",
+                "source": "http://cgit.drupalcode.org/config_filter",
                 "issues": "https://www.drupal.org/project/issues/config_filter",
-                "slack": "https://drupal.slack.com/archives/C45342CDD"
+                "irc": "irc://irc.freenode.org/drupal-contribute"
             }
         },
         {
             "name": "drupal/config_merge",
-            "version": "2.0.0-alpha2",
+            "version": "1.0.0-rc1",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_merge.git",
-                "reference": "2.0.0-alpha2"
+                "reference": "8.x-1.0-rc1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_merge-2.0.0-alpha2.zip",
-                "reference": "2.0.0-alpha2",
-                "shasum": "a0183d548daafe52b2b271f3502766bb519f824f"
+                "url": "https://ftp.drupal.org/files/projects/config_merge-8.x-1.0-rc1.zip",
+                "reference": "8.x-1.0-rc1",
+                "shasum": "4881351041bf4b313247697adbeee4cedf0bc425"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10 || ^11",
-                "php": ">=8.0"
-            },
-            "require-dev": {
-                "drupal/config_filter": "*"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-alpha2",
-                    "datestamp": "1743089777",
+                    "version": "8.x-1.0-rc1",
+                    "datestamp": "1550188080",
                     "security-coverage": {
                         "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "a.dmitriiev",
-                    "homepage": "https://www.drupal.org/user/3235287"
-                },
-                {
-                    "name": "bircher",
-                    "homepage": "https://www.drupal.org/user/1344166"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                },
-                {
-                    "name": "joegraduate",
-                    "homepage": "https://www.drupal.org/user/789384"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "tadean",
-                    "homepage": "https://www.drupal.org/user/3608919"
-                }
-            ],
-            "description": "Enables three-way merges of configuration items. This is useful for safely merging configuration updates while retaining any customizations.",
-            "homepage": "http://drupal.org/project/config_merge",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/config_merge",
-                "issues": "http://drupal.org/project/issues/config_merge"
-            }
-        },
-        {
-            "name": "drupal/config_normalizer",
-            "version": "1.0.0-beta2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/config_normalizer.git",
-                "reference": "8.x-1.0-beta2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-beta2.zip",
-                "reference": "8.x-1.0-beta2",
-                "shasum": "98916cdca633176698b62236a6f7b2d5e0c12e45"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0-beta2",
-                    "datestamp": "1743088690",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Beta releases are not covered by Drupal security advisories."
+                        "message": "Project has not opted into security advisory coverage!"
                     }
                 }
             },
@@ -4287,78 +2876,104 @@
             ],
             "authors": [
                 {
-                    "name": "Nedjo Rogers (nedjo)",
-                    "homepage": "https://www.drupal.org/u/nedjo",
-                    "role": "Original author"
+                    "name": "bircher",
+                    "homepage": "https://www.drupal.org/user/1344166"
                 },
                 {
-                    "name": "Fabian Bircher (bircher)",
-                    "homepage": "https://www.drupal.org/u/bircher",
-                    "role": "Maintainer"
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
                 },
                 {
-                    "name": "Benjamin Melançon (mlncn)",
-                    "homepage": "https://www.drupal.org/u/mlncn",
-                    "role": "Maintainer"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                }
+            ],
+            "description": "Enables three-way merges of configuration items. This is useful for safely merging configuration updates while retaining any customizations.",
+            "homepage": "https://www.drupal.org/project/config_merge",
+            "support": {
+                "source": "https://git.drupalcode.org/project/config_merge"
+            }
+        },
+        {
+            "name": "drupal/config_normalizer",
+            "version": "1.0.0-alpha5",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/config_normalizer.git",
+                "reference": "8.x-1.0-alpha5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-alpha5.zip",
+                "reference": "8.x-1.0-alpha5",
+                "shasum": "7ec9ca0c0e798007c7685b2633ac7600415e4a29"
+            },
+            "require": {
+                "drupal/config_filter": "*",
+                "drupal/core": "~8.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-alpha5",
+                    "datestamp": "1551264784",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "axel.rutz",
+                    "homepage": "https://www.drupal.org/user/229048"
                 },
                 {
-                    "name": "Joe Parsons (joegraduate)",
-                    "homepage": "https://www.drupal.org/u/joegraduate",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "tadean",
-                    "homepage": "https://www.drupal.org/u/tadean",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Artem Dmitriiev (a.dmitriiev)",
-                    "homepage": "https://www.drupal.org/u/a.dmitriiev",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Merlin Axel Rutz (geek-merlin)",
-                    "homepage": "https://www.drupal.org/u/geek-merlin",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Campus Web Services The University of Arizona (uarizona)",
-                    "homepage": "https://www.drupal.org/u/uarizona",
-                    "role": "Maintainer"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
                 }
             ],
             "description": "Normalizes configuration for comparison.",
             "homepage": "https://www.drupal.org/project/config_normalizer",
             "support": {
-                "source": "https://git.drupal.org/project/config_normalizer.git",
-                "issues": "https://www.drupal.org/project/issues/config_normalizer"
+                "source": "https://git.drupalcode.org/project/config_normalizer"
             }
         },
         {
             "name": "drupal/config_perms",
-            "version": "2.3.0",
+            "version": "2.0.0-beta2",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_perms.git",
-                "reference": "8.x-2.3"
+                "reference": "8.x-2.0-beta2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.3.zip",
-                "reference": "8.x-2.3",
-                "shasum": "6ec87b91b7ff23a41c5ee266b507e882851b7828"
+                "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.0-beta2.zip",
+                "reference": "8.x-2.0-beta2",
+                "shasum": "d3ed7aa2602cc9e636c9943f6356f6fd46e665fb"
             },
             "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-2.x": "2.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-2.3",
-                    "datestamp": "1746157140",
+                    "version": "8.x-2.0-beta2",
+                    "datestamp": "1551141180",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Beta releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -4367,30 +2982,18 @@
                 "GPL-2.0+"
             ],
             "authors": [
-                {
-                    "name": "benellefimostfa",
-                    "homepage": "https://www.drupal.org/user/3092403"
-                },
                 {
                     "name": "Docc",
                     "homepage": "https://www.drupal.org/user/310132"
                 },
                 {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
+                    "name": "benellefimostfa",
+                    "homepage": "https://www.drupal.org/user/3092403"
                 },
                 {
                     "name": "gnuget",
                     "homepage": "https://www.drupal.org/user/992990"
                 },
-                {
-                    "name": "kristen pol",
-                    "homepage": "https://www.drupal.org/user/8389"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
                 {
                     "name": "mlncn",
                     "homepage": "https://www.drupal.org/user/64383"
@@ -4412,29 +3015,32 @@
         },
         {
             "name": "drupal/config_provider",
-            "version": "3.0.0-alpha2",
+            "version": "2.0.0-rc1",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/config_provider.git",
-                "reference": "3.0.0-alpha2"
+                "reference": "8.x-2.0-rc1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_provider-3.0.0-alpha2.zip",
-                "reference": "3.0.0-alpha2",
-                "shasum": "b6f80827f37ba1170530907bdda584c27ffe981d"
+                "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc1.zip",
+                "reference": "8.x-2.0-rc1",
+                "shasum": "59405d2d56c9c450d03fc7c615008c694b12bccf"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-2.x": "2.x-dev"
+                },
                 "drupal": {
-                    "version": "3.0.0-alpha2",
-                    "datestamp": "1743107961",
+                    "version": "8.x-2.0-rc1",
+                    "datestamp": "1550290687",
                     "security-coverage": {
                         "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
+                        "message": "Project has not opted into security advisory coverage!"
                     }
                 }
             },
@@ -4443,203 +3049,13 @@
                 "GPL-2.0-or-later"
             ],
             "authors": [
-                {
-                    "name": "Nedjo Rogers (nedjo)",
-                    "homepage": "https://www.drupal.org/u/nedjo",
-                    "role": "Original author"
-                },
-                {
-                    "name": "Fabian Bircher (bircher)",
-                    "homepage": "https://www.drupal.org/u/bircher",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Pieter Frenssen (pfrenssen)",
-                    "homepage": "https://www.drupal.org/u/pfrenssen",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Keegan Rankin (megakeegman)",
-                    "homepage": "https://www.drupal.org/u/megakeegman",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Benjamin Melançon (mlncn)",
-                    "homepage": "https://www.drupal.org/u/mlncn",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Joe Parsons (joegraduate)",
-                    "homepage": "https://www.drupal.org/u/joegraduate",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "tadean",
-                    "homepage": "https://www.drupal.org/u/tadean",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "David Valdez (gnuget)",
-                    "homepage": "https://www.drupal.org/u/gnuget",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Merlin Axel Rutz (geek-merlin)",
-                    "homepage": "https://www.drupal.org/u/geek-merlin",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Artem Dmitriiev (a.dmitriiev)",
-                    "homepage": "https://www.drupal.org/u/a.dmitriiev",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Campus Web Services The University of Arizona (uarizona)",
-                    "homepage": "https://www.drupal.org/u/uarizona",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Enables provision of configuration by extensions.",
-            "homepage": "https://www.drupal.org/project/config_provider",
-            "support": {
-                "source": "https://git.drupal.org/project/config_provider.git",
-                "issues": "https://www.drupal.org/project/issues/config_provider"
-            }
-        },
-        {
-            "name": "drupal/config_snapshot",
-            "version": "2.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/config_snapshot.git",
-                "reference": "2.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0.zip",
-                "reference": "2.0.0",
-                "shasum": "183e6f293e7ef142290c5e69cbca986895e12a2d"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0",
-                    "datestamp": "1736287398",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "a.dmitriiev",
-                    "homepage": "https://www.drupal.org/user/3235287"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                },
-                {
-                    "name": "gnuget",
-                    "homepage": "https://www.drupal.org/user/992990"
-                },
-                {
-                    "name": "joegraduate",
-                    "homepage": "https://www.drupal.org/user/789384"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "nedjo",
-                    "homepage": "https://www.drupal.org/user/4481"
-                },
-                {
-                    "name": "tadean",
-                    "homepage": "https://www.drupal.org/user/3608919"
-                },
-                {
-                    "name": "uarizona",
-                    "homepage": "https://www.drupal.org/user/3763238"
-                }
-            ],
-            "description": "Manages snapshots of configuration as provided by modules and themes.",
-            "homepage": "https://www.drupal.org/project/config_snapshot",
-            "support": {
-                "source": "https://git.drupalcode.org/project/config_snapshot"
-            }
-        },
-        {
-            "name": "drupal/config_sync",
-            "version": "3.0.0-alpha4",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/config_sync.git",
-                "reference": "3.0.0-alpha4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha4.zip",
-                "reference": "3.0.0-alpha4",
-                "shasum": "d49536d18be2162b2069c50c444a6745d5c9e8d7"
-            },
-            "require": {
-                "drupal/config_distro": "^2.0.0-alpha2",
-                "drupal/config_distro_filter": "*",
-                "drupal/config_filter": "^2.7",
-                "drupal/config_merge": "^2.0.0-alpha2",
-                "drupal/config_normalizer": "^1.0-beta2",
-                "drupal/config_provider": "^3.0.0-alpha2",
-                "drupal/config_snapshot": "^2.0",
-                "drupal/config_update": "^2.0.0-alpha4",
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.0-alpha4",
-                    "datestamp": "1743110767",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Nedjo Rogers (nedjo)",
-                    "homepage": "https://www.drupal.org/u/nedjo",
-                    "email": "nedjo@4481.no-reply.drupal.org",
-                    "role": "Maintainer"
-                },
                 {
                     "name": "bircher",
                     "homepage": "https://www.drupal.org/user/1344166"
                 },
                 {
-                    "name": "flocondetoile",
-                    "homepage": "https://www.drupal.org/user/2006064"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                },
-                {
-                    "name": "joegraduate",
-                    "homepage": "https://www.drupal.org/user/789384"
+                    "name": "gnuget",
+                    "homepage": "https://www.drupal.org/user/992990"
                 },
                 {
                     "name": "mlncn",
@@ -4652,48 +3068,42 @@
                 {
                     "name": "pfrenssen",
                     "homepage": "https://www.drupal.org/user/382067"
-                },
-                {
-                    "name": "tadean",
-                    "homepage": "https://www.drupal.org/user/3608919"
-                },
-                {
-                    "name": "uarizona",
-                    "homepage": "https://www.drupal.org/user/3763238"
                 }
             ],
-            "description": "Synchronize your site with updated configuration provided by modules and themes.",
-            "homepage": "https://www.drupal.org/project/config_sync",
+            "description": "Enables provision of configuration by extensions.",
+            "homepage": "https://www.drupal.org/project/config_provider",
             "support": {
-                "source": "https://git.drupalcode.org/project/config_sync",
-                "issues": "https://drupal.org/project/issues/config_sync"
+                "source": "https://git.drupalcode.org/project/config_provider"
             }
         },
         {
-            "name": "drupal/config_update",
-            "version": "2.0.0-alpha4",
+            "name": "drupal/config_snapshot",
+            "version": "1.0.0-rc1",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/config_update.git",
-                "reference": "2.0.0-alpha4"
+                "url": "https://git.drupalcode.org/project/config_snapshot.git",
+                "reference": "8.x-1.0-rc1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
-                "reference": "2.0.0-alpha4",
-                "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
+                "url": "https://ftp.drupal.org/files/projects/config_snapshot-8.x-1.0-rc1.zip",
+                "reference": "8.x-1.0-rc1",
+                "shasum": "2508809dea54bd0d8dfc86f4974324509b95dc13"
             },
             "require": {
-                "drupal/core": "^9.4 || ^10 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-alpha4",
-                    "datestamp": "1724596931",
+                    "version": "8.x-1.0-rc1",
+                    "datestamp": "1550294584",
                     "security-coverage": {
                         "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
+                        "message": "Project has not opted into security advisory coverage!"
                     }
                 }
             },
@@ -4703,164 +3113,180 @@
             ],
             "authors": [
                 {
-                    "name": "codebymikey",
-                    "homepage": "https://www.drupal.org/user/3573206"
+                    "name": "gnuget",
+                    "homepage": "https://www.drupal.org/user/992990"
                 },
                 {
-                    "name": "pasqualle",
-                    "homepage": "https://www.drupal.org/user/80733"
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
                 },
                 {
-                    "name": "vishalkhode",
-                    "homepage": "https://www.drupal.org/user/2439156"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
                 }
             ],
-            "description": "Provides basic revert and update functionality for other modules.",
+            "description": "Manages snapshots of configuration as provided by modules and themes.",
+            "homepage": "https://www.drupal.org/project/config_snapshot",
+            "support": {
+                "source": "https://git.drupalcode.org/project/config_snapshot"
+            }
+        },
+        {
+            "name": "drupal/config_sync",
+            "version": "2.0.0-beta5",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/config_sync.git",
+                "reference": "8.x-2.0-beta5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta5.zip",
+                "reference": "8.x-2.0-beta5",
+                "shasum": "76a922ca354cb18cdfd57d427bdd91721630e48b"
+            },
+            "require": {
+                "drupal/config_distro": "^1.0-alpha3",
+                "drupal/config_filter": "^1.3",
+                "drupal/config_merge": "^1.0-alpha2",
+                "drupal/config_normalizer": "^1.0-alpha3",
+                "drupal/config_provider": "^2.0-alpha6",
+                "drupal/config_snapshot": "^1.0-alpha6",
+                "drupal/config_update": "^1.5",
+                "drupal/core": "^8.3",
+                "php": ">=5.6",
+                "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-2.x": "2.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-2.0-beta5",
+                    "datestamp": "1550290984",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "Nedjo Rogers (nedjo)",
+                    "homepage": "https://www.drupal.org/u/nedjo",
+                    "email": "nedjo@4481.no-reply.drupal.org",
+                    "role": "Maintainer"
+                },
+                {
+                    "name": "flocondetoile",
+                    "homepage": "https://www.drupal.org/user/2006064"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "mtift",
+                    "homepage": "https://www.drupal.org/user/751908"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "pfrenssen",
+                    "homepage": "https://www.drupal.org/user/382067"
+                }
+            ],
+            "description": "Synchronize your site with updated configuration provided by modules and themes.",
+            "homepage": "https://www.drupal.org/project/config_sync",
+            "support": {
+                "source": "https://cgit.drupalcode.org/config_sync",
+                "issues": "https://drupal.org/project/issues/config_sync",
+                "irc": "irc://irc.freenode.org/drupal-contribute"
+            }
+        },
+        {
+            "name": "drupal/config_update",
+            "version": "1.6.0",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/config_update.git",
+                "reference": "8.x-1.6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
+                "reference": "8.x-1.6",
+                "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
+            },
+            "require": {
+                "drupal/core": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.6",
+                    "datestamp": "1545090480",
+                    "security-coverage": {
+                        "status": "covered",
+                        "message": "Covered by Drupal's security advisory policy"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "jhodgdon",
+                    "homepage": "https://www.drupal.org/user/155601"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                }
+            ],
+            "description": "Provides basic revert and update functionality for other modules",
             "homepage": "https://www.drupal.org/project/config_update",
             "support": {
                 "source": "https://git.drupalcode.org/project/config_update"
             }
         },
-        {
-            "name": "drupal/content_lock",
-            "version": "2.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/content_lock.git",
-                "reference": "8.x-2.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
-                "reference": "8.x-2.4",
-                "shasum": "99d149e530555aae12b44292efe5887d373e862e"
-            },
-            "require": {
-                "drupal/core": "^9.0 || ^10.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.4",
-                    "datestamp": "1715783058",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "alexpott",
-                    "homepage": "https://www.drupal.org/user/157725"
-                },
-                {
-                    "name": "astonvictor",
-                    "homepage": "https://www.drupal.org/user/3466615"
-                },
-                {
-                    "name": "chr.fritsch",
-                    "homepage": "https://www.drupal.org/user/2103716"
-                },
-                {
-                    "name": "daniel.bosen",
-                    "homepage": "https://www.drupal.org/user/404865"
-                },
-                {
-                    "name": "ergonlogic",
-                    "homepage": "https://www.drupal.org/user/368613"
-                },
-                {
-                    "name": "mfb",
-                    "homepage": "https://www.drupal.org/user/12302"
-                },
-                {
-                    "name": "pandaski",
-                    "homepage": "https://www.drupal.org/user/1987218"
-                },
-                {
-                    "name": "volkerk",
-                    "homepage": "https://www.drupal.org/user/57527"
-                }
-            ],
-            "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
-            "homepage": "https://www.drupal.org/project/content_lock",
-            "support": {
-                "source": "https://git.drupalcode.org/project/content_lock"
-            }
-        },
-        {
-            "name": "drupal/context_stack",
-            "version": "1.1.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/context_stack.git",
-                "reference": "1.1.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/context_stack-1.1.2.zip",
-                "reference": "1.1.2",
-                "shasum": "aacf2bc38a09393e51a03567b459adb67225d11a"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10",
-                "php": ">=7.4"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.2",
-                    "datestamp": "1676647866",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "mxh",
-                    "homepage": "https://www.drupal.org/user/1124384"
-                }
-            ],
-            "description": "Context Stack is a module for Drupal, which provides a distinct place for holding context values.",
-            "homepage": "https://www.drupal.org/project/context_stack",
-            "support": {
-                "source": "https://drupal.org/project/context_stack",
-                "issues": "https://drupal.org/project/issues/context_stack"
-            }
-        },
         {
             "name": "drupal/convert_bundles",
-            "version": "2.0.0-beta4",
+            "version": "1.0.0-alpha4",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/convert_bundles.git",
-                "reference": "2.0.0-beta4"
+                "reference": "8.x-1.0-alpha4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/convert_bundles-2.0.0-beta4.zip",
-                "reference": "2.0.0-beta4",
-                "shasum": "5f4f02778344bbe2e2e3a3f1c96bc79e8b2474a7"
+                "url": "https://ftp.drupal.org/files/projects/convert_bundles-8.x-1.0-alpha4.zip",
+                "reference": "8.x-1.0-alpha4",
+                "shasum": "4e6f3ded807f371dd02aa3f18ad1e0225d251d8d"
             },
             "require": {
-                "drupal/core": "^9 || ^10"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-beta4",
-                    "datestamp": "1693891734",
+                    "version": "8.x-1.0-alpha4",
+                    "datestamp": "1559920084",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Project has not opted into security advisory coverage!"
@@ -4875,10 +3301,6 @@
                 {
                     "name": "el1_1el",
                     "homepage": "https://www.drupal.org/user/1795292"
-                },
-                {
-                    "name": "joseph.olstad",
-                    "homepage": "https://www.drupal.org/user/1321830"
                 }
             ],
             "description": "Convert entity bundles from one value to another",
@@ -4889,24 +3311,25 @@
         },
         {
             "name": "drupal/core",
-            "version": "10.4.7",
+            "version": "8.7.6",
             "source": {
                 "type": "git",
                 "url": "https://github.com/drupal/core.git",
-                "reference": "547fa74348dda2ecb4a3e752f88a5c40be675d64"
+                "reference": "39164616332832e1456199d32fc3ed11562f4721"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/drupal/core/zipball/547fa74348dda2ecb4a3e752f88a5c40be675d64",
-                "reference": "547fa74348dda2ecb4a3e752f88a5c40be675d64",
+                "url": "https://api.github.com/repos/drupal/core/zipball/39164616332832e1456199d32fc3ed11562f4721",
+                "reference": "39164616332832e1456199d32fc3ed11562f4721",
                 "shasum": ""
             },
             "require": {
-                "asm89/stack-cors": "^2.1",
-                "composer-runtime-api": "^2.1",
-                "composer/semver": "^3.3",
-                "doctrine/annotations": "^1.14",
-                "egulias/email-validator": "^3.2.1|^4.0",
+                "asm89/stack-cors": "^1.1",
+                "composer/semver": "^1.0",
+                "doctrine/annotations": "^1.2",
+                "doctrine/common": "^2.5",
+                "easyrdf/easyrdf": "^0.9",
+                "egulias/email-validator": "^2.0",
                 "ext-date": "*",
                 "ext-dom": "*",
                 "ext-filter": "*",
@@ -4920,38 +3343,61 @@
                 "ext-spl": "*",
                 "ext-tokenizer": "*",
                 "ext-xml": "*",
-                "guzzlehttp/guzzle": "^7.5",
-                "guzzlehttp/psr7": "^2.4.5",
-                "masterminds/html5": "^2.7",
-                "mck89/peast": "^1.14",
-                "pear/archive_tar": "^1.4.14",
-                "php": ">=8.1.0",
-                "psr/log": "^3.0",
-                "sebastian/diff": "^4",
-                "symfony/console": "^6.4",
-                "symfony/dependency-injection": "^6.4",
-                "symfony/event-dispatcher": "^6.4",
-                "symfony/filesystem": "^6.4",
-                "symfony/finder": "^6.4",
-                "symfony/http-foundation": "^6.4",
-                "symfony/http-kernel": "^6.4",
-                "symfony/mailer": "^6.4",
-                "symfony/mime": "^6.4",
-                "symfony/polyfill-iconv": "^1.26",
-                "symfony/process": "^6.4",
-                "symfony/psr-http-message-bridge": "^2.1|^6.4",
-                "symfony/routing": "^6.4",
-                "symfony/serializer": "^6.4",
-                "symfony/validator": "^6.4",
-                "symfony/yaml": "^6.4",
-                "twig/twig": "^3.15.0"
+                "guzzlehttp/guzzle": "^6.2.1",
+                "masterminds/html5": "^2.1",
+                "paragonie/random_compat": "^1.0|^2.0|^9.99.99",
+                "pear/archive_tar": "^1.4",
+                "php": "^5.5.9|>=7.0.8",
+                "stack/builder": "^1.0",
+                "symfony-cmf/routing": "^1.4",
+                "symfony/class-loader": "~3.4.0",
+                "symfony/console": "~3.4.0",
+                "symfony/dependency-injection": "~3.4.26",
+                "symfony/event-dispatcher": "~3.4.0",
+                "symfony/http-foundation": "~3.4.27",
+                "symfony/http-kernel": "~3.4.14",
+                "symfony/polyfill-iconv": "^1.0",
+                "symfony/process": "~3.4.0",
+                "symfony/psr-http-message-bridge": "^1.0",
+                "symfony/routing": "~3.4.0",
+                "symfony/serializer": "~3.4.0",
+                "symfony/translation": "~3.4.0",
+                "symfony/validator": "~3.4.0",
+                "symfony/yaml": "~3.4.5",
+                "twig/twig": "^1.38.2",
+                "typo3/phar-stream-wrapper": "^2.1.1",
+                "zendframework/zend-diactoros": "^1.1",
+                "zendframework/zend-feed": "^2.4"
             },
             "conflict": {
-                "drush/drush": "<12.4.3"
+                "drush/drush": "<8.1.10"
             },
             "replace": {
+                "drupal/action": "self.version",
+                "drupal/aggregator": "self.version",
+                "drupal/automated_cron": "self.version",
+                "drupal/ban": "self.version",
+                "drupal/bartik": "self.version",
+                "drupal/basic_auth": "self.version",
+                "drupal/big_pipe": "self.version",
+                "drupal/block": "self.version",
+                "drupal/block_content": "self.version",
+                "drupal/block_place": "self.version",
+                "drupal/book": "self.version",
+                "drupal/breakpoint": "self.version",
+                "drupal/ckeditor": "self.version",
+                "drupal/classy": "self.version",
+                "drupal/color": "self.version",
+                "drupal/comment": "self.version",
+                "drupal/config": "self.version",
+                "drupal/config_translation": "self.version",
+                "drupal/contact": "self.version",
+                "drupal/content_moderation": "self.version",
+                "drupal/content_translation": "self.version",
+                "drupal/contextual": "self.version",
                 "drupal/core-annotation": "self.version",
                 "drupal/core-assertion": "self.version",
+                "drupal/core-bridge": "self.version",
                 "drupal/core-class-finder": "self.version",
                 "drupal/core-datetime": "self.version",
                 "drupal/core-dependency-injection": "self.version",
@@ -4959,9 +3405,7 @@
                 "drupal/core-discovery": "self.version",
                 "drupal/core-event-dispatcher": "self.version",
                 "drupal/core-file-cache": "self.version",
-                "drupal/core-file-security": "self.version",
                 "drupal/core-filesystem": "self.version",
-                "drupal/core-front-matter": "self.version",
                 "drupal/core-gettext": "self.version",
                 "drupal/core-graph": "self.version",
                 "drupal/core-http-foundation": "self.version",
@@ -4973,72 +3417,136 @@
                 "drupal/core-transliteration": "self.version",
                 "drupal/core-utility": "self.version",
                 "drupal/core-uuid": "self.version",
-                "drupal/core-version": "self.version"
+                "drupal/core-version": "self.version",
+                "drupal/datetime": "self.version",
+                "drupal/datetime_range": "self.version",
+                "drupal/dblog": "self.version",
+                "drupal/dynamic_page_cache": "self.version",
+                "drupal/editor": "self.version",
+                "drupal/entity_reference": "self.version",
+                "drupal/field": "self.version",
+                "drupal/field_layout": "self.version",
+                "drupal/field_ui": "self.version",
+                "drupal/file": "self.version",
+                "drupal/filter": "self.version",
+                "drupal/forum": "self.version",
+                "drupal/hal": "self.version",
+                "drupal/help": "self.version",
+                "drupal/history": "self.version",
+                "drupal/image": "self.version",
+                "drupal/inline_form_errors": "self.version",
+                "drupal/jsonapi": "self.version",
+                "drupal/language": "self.version",
+                "drupal/layout_builder": "self.version",
+                "drupal/layout_discovery": "self.version",
+                "drupal/link": "self.version",
+                "drupal/locale": "self.version",
+                "drupal/media": "self.version",
+                "drupal/media_library": "self.version",
+                "drupal/menu_link_content": "self.version",
+                "drupal/menu_ui": "self.version",
+                "drupal/migrate": "self.version",
+                "drupal/migrate_drupal": "self.version",
+                "drupal/migrate_drupal_multilingual": "self.version",
+                "drupal/migrate_drupal_ui": "self.version",
+                "drupal/minimal": "self.version",
+                "drupal/node": "self.version",
+                "drupal/options": "self.version",
+                "drupal/page_cache": "self.version",
+                "drupal/path": "self.version",
+                "drupal/quickedit": "self.version",
+                "drupal/rdf": "self.version",
+                "drupal/responsive_image": "self.version",
+                "drupal/rest": "self.version",
+                "drupal/search": "self.version",
+                "drupal/serialization": "self.version",
+                "drupal/settings_tray": "self.version",
+                "drupal/seven": "self.version",
+                "drupal/shortcut": "self.version",
+                "drupal/simpletest": "self.version",
+                "drupal/standard": "self.version",
+                "drupal/stark": "self.version",
+                "drupal/statistics": "self.version",
+                "drupal/syslog": "self.version",
+                "drupal/system": "self.version",
+                "drupal/taxonomy": "self.version",
+                "drupal/telephone": "self.version",
+                "drupal/text": "self.version",
+                "drupal/toolbar": "self.version",
+                "drupal/tour": "self.version",
+                "drupal/tracker": "self.version",
+                "drupal/update": "self.version",
+                "drupal/user": "self.version",
+                "drupal/views": "self.version",
+                "drupal/views_ui": "self.version",
+                "drupal/workflows": "self.version",
+                "drupal/workspaces": "self.version"
             },
-            "suggest": {
-                "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
+            "require-dev": {
+                "behat/mink": "1.7.x-dev",
+                "behat/mink-goutte-driver": "^1.2",
+                "behat/mink-selenium2-driver": "1.3.x-dev",
+                "drupal/coder": "^8.3.1",
+                "jcalderonzumba/gastonjs": "^1.0.2",
+                "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
+                "justinrainbow/json-schema": "^5.2",
+                "mikey179/vfsstream": "^1.2",
+                "phpspec/prophecy": "^1.7",
+                "phpunit/phpunit": "^4.8.35 || ^6.5",
+                "symfony/css-selector": "^3.4.0",
+                "symfony/debug": "^3.4.0",
+                "symfony/phpunit-bridge": "^3.4.3"
             },
             "type": "drupal-core",
             "extra": {
-                "drupal-scaffold": {
-                    "file-mapping": {
-                        "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
-                        "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
-                        "[web-root]/index.php": "assets/scaffold/files/index.php",
-                        "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
-                        "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
-                        "[web-root]/update.php": "assets/scaffold/files/update.php",
-                        "[web-root]/web.config": "assets/scaffold/files/web.config",
-                        "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
-                        "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
-                        "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
-                        "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
-                        "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
-                        "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
-                        "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
-                        "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
-                        "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
-                        "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
-                        "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
-                        "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
-                        "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
-                        "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
-                        "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
-                        "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
-                    }
+                "merge-plugin": {
+                    "require": [
+                        "core/lib/Drupal/Component/Annotation/composer.json",
+                        "core/lib/Drupal/Component/Assertion/composer.json",
+                        "core/lib/Drupal/Component/Bridge/composer.json",
+                        "core/lib/Drupal/Component/ClassFinder/composer.json",
+                        "core/lib/Drupal/Component/Datetime/composer.json",
+                        "core/lib/Drupal/Component/DependencyInjection/composer.json",
+                        "core/lib/Drupal/Component/Diff/composer.json",
+                        "core/lib/Drupal/Component/Discovery/composer.json",
+                        "core/lib/Drupal/Component/EventDispatcher/composer.json",
+                        "core/lib/Drupal/Component/FileCache/composer.json",
+                        "core/lib/Drupal/Component/FileSystem/composer.json",
+                        "core/lib/Drupal/Component/Gettext/composer.json",
+                        "core/lib/Drupal/Component/Graph/composer.json",
+                        "core/lib/Drupal/Component/HttpFoundation/composer.json",
+                        "core/lib/Drupal/Component/PhpStorage/composer.json",
+                        "core/lib/Drupal/Component/Plugin/composer.json",
+                        "core/lib/Drupal/Component/ProxyBuilder/composer.json",
+                        "core/lib/Drupal/Component/Render/composer.json",
+                        "core/lib/Drupal/Component/Serialization/composer.json",
+                        "core/lib/Drupal/Component/Transliteration/composer.json",
+                        "core/lib/Drupal/Component/Utility/composer.json",
+                        "core/lib/Drupal/Component/Uuid/composer.json",
+                        "core/lib/Drupal/Component/Version/composer.json"
+                    ],
+                    "recurse": false,
+                    "replace": false,
+                    "merge-extra": false
+                },
+                "patches_applied": {
+                    "Allow an install hook in profiles installing from configuration": "https://www.drupal.org/files/issues/2018-11-27/2982052-22.patch"
                 }
             },
             "autoload": {
-                "files": [
-                    "includes/bootstrap.inc"
-                ],
                 "psr-4": {
                     "Drupal\\Core\\": "lib/Drupal/Core",
-                    "Drupal\\Component\\": "lib/Drupal/Component"
+                    "Drupal\\Component\\": "lib/Drupal/Component",
+                    "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
                 },
                 "classmap": [
                     "lib/Drupal.php",
-                    "lib/Drupal/Component/DependencyInjection/Container.php",
-                    "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
-                    "lib/Drupal/Component/FileCache/FileCacheFactory.php",
                     "lib/Drupal/Component/Utility/Timer.php",
                     "lib/Drupal/Component/Utility/Unicode.php",
-                    "lib/Drupal/Core/Cache/Cache.php",
-                    "lib/Drupal/Core/Cache/CacheBackendInterface.php",
-                    "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
-                    "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
-                    "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
-                    "lib/Drupal/Core/Cache/DatabaseBackend.php",
-                    "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
-                    "lib/Drupal/Core/Database/Connection.php",
                     "lib/Drupal/Core/Database/Database.php",
-                    "lib/Drupal/Core/Database/StatementInterface.php",
-                    "lib/Drupal/Core/DependencyInjection/Container.php",
                     "lib/Drupal/Core/DrupalKernel.php",
                     "lib/Drupal/Core/DrupalKernelInterface.php",
-                    "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
-                    "lib/Drupal/Core/Site/Settings.php",
-                    "lib/Drupal/Component/Datetime/Time.php"
+                    "lib/Drupal/Core/Site/Settings.php"
                 ]
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -5046,168 +3554,33 @@
                 "GPL-2.0-or-later"
             ],
             "description": "Drupal is an open source content management platform powering millions of websites and applications.",
-            "support": {
-                "source": "https://github.com/drupal/core/tree/10.4.7"
-            },
-            "time": "2025-05-08T04:06:41+00:00"
-        },
-        {
-            "name": "drupal/core-composer-scaffold",
-            "version": "10.4.7",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/drupal/core-composer-scaffold.git",
-                "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
-                "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
-                "shasum": ""
-            },
-            "require": {
-                "composer-plugin-api": "^2",
-                "php": ">=7.3.0"
-            },
-            "conflict": {
-                "drupal-composer/drupal-scaffold": "*"
-            },
-            "require-dev": {
-                "composer/composer": "^1.8@stable"
-            },
-            "type": "composer-plugin",
-            "extra": {
-                "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
-                "branch-alias": {
-                    "dev-master": "1.0.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Drupal\\Composer\\Plugin\\Scaffold\\": ""
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "description": "A flexible Composer project scaffold builder.",
-            "homepage": "https://www.drupal.org/project/drupal",
-            "keywords": [
-                "drupal"
-            ],
-            "support": {
-                "source": "https://github.com/drupal/core-composer-scaffold/tree/10.4.7"
-            },
-            "time": "2024-08-22T14:31:30+00:00"
-        },
-        {
-            "name": "drupal/core-recommended",
-            "version": "10.4.7",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/drupal/core-recommended.git",
-                "reference": "308b63fa05111c15f4a36919718b7c2d016af892"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/drupal/core-recommended/zipball/308b63fa05111c15f4a36919718b7c2d016af892",
-                "reference": "308b63fa05111c15f4a36919718b7c2d016af892",
-                "shasum": ""
-            },
-            "require": {
-                "asm89/stack-cors": "~v2.2.0",
-                "composer/semver": "~3.4.3",
-                "doctrine/annotations": "~1.14.4",
-                "doctrine/deprecations": "~1.1.3",
-                "doctrine/lexer": "~2.1.1",
-                "drupal/core": "10.4.7",
-                "egulias/email-validator": "~4.0.2",
-                "guzzlehttp/guzzle": "~7.9.2",
-                "guzzlehttp/promises": "~2.0.4",
-                "guzzlehttp/psr7": "~2.7.0",
-                "masterminds/html5": "~2.9.0",
-                "mck89/peast": "~v1.16.3",
-                "pear/archive_tar": "~1.5.0",
-                "pear/console_getopt": "~v1.4.3",
-                "pear/pear-core-minimal": "~v1.10.16",
-                "pear/pear_exception": "~v1.0.2",
-                "psr/cache": "~3.0.0",
-                "psr/container": "~2.0.2",
-                "psr/event-dispatcher": "~1.0.0",
-                "psr/http-client": "~1.0.3",
-                "psr/http-factory": "~1.1.0",
-                "psr/log": "~3.0.2",
-                "ralouphie/getallheaders": "~3.0.3",
-                "sebastian/diff": "~4.0.6",
-                "symfony/console": "~v6.4.15",
-                "symfony/dependency-injection": "~v6.4.16",
-                "symfony/deprecation-contracts": "~v3.5.1",
-                "symfony/error-handler": "~v6.4.14",
-                "symfony/event-dispatcher": "~v6.4.13",
-                "symfony/event-dispatcher-contracts": "~v3.5.1",
-                "symfony/filesystem": "~v6.4.13",
-                "symfony/finder": "~v6.4.13",
-                "symfony/http-foundation": "~v6.4.16",
-                "symfony/http-kernel": "~v6.4.16",
-                "symfony/mailer": "~v6.4.13",
-                "symfony/mime": "~v6.4.13",
-                "symfony/polyfill-ctype": "~v1.31.0",
-                "symfony/polyfill-iconv": "~v1.31.0",
-                "symfony/polyfill-intl-grapheme": "~v1.31.0",
-                "symfony/polyfill-intl-idn": "~v1.31.0",
-                "symfony/polyfill-intl-normalizer": "~v1.31.0",
-                "symfony/polyfill-mbstring": "~v1.31.0",
-                "symfony/polyfill-php83": "~v1.31.0",
-                "symfony/process": "~v6.4.15",
-                "symfony/psr-http-message-bridge": "~v6.4.13",
-                "symfony/routing": "~v6.4.16",
-                "symfony/serializer": "~v6.4.15",
-                "symfony/service-contracts": "~v3.5.1",
-                "symfony/string": "~v6.4.15",
-                "symfony/translation-contracts": "~v3.5.1",
-                "symfony/validator": "~v6.4.16",
-                "symfony/var-dumper": "~v6.4.15",
-                "symfony/var-exporter": "~v6.4.13",
-                "symfony/yaml": "~v6.4.13",
-                "twig/twig": "~v3.19.0"
-            },
-            "conflict": {
-                "webflo/drupal-core-strict": "*"
-            },
-            "type": "metapackage",
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
-            "support": {
-                "source": "https://github.com/drupal/core-recommended/tree/10.4.7"
-            },
-            "time": "2025-05-08T04:06:41+00:00"
+            "time": "2019-08-07T19:19:20+00:00"
         },
         {
             "name": "drupal/crop",
-            "version": "2.4.0",
+            "version": "1.5.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/crop.git",
-                "reference": "8.x-2.4"
+                "reference": "8.x-1.5"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.4.zip",
-                "reference": "8.x-2.4",
-                "shasum": "be11fad0abf1d53544d35cb4ca6cedd8e91d2542"
+                "url": "https://ftp.drupal.org/files/projects/crop-8.x-1.5.zip",
+                "reference": "8.x-1.5",
+                "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-2.4",
-                    "datestamp": "1720455738",
+                    "version": "8.x-1.5",
+                    "datestamp": "1516357085",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -5216,17 +3589,13 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
                     "name": "Drupal Media Team",
                     "homepage": "https://www.drupal.org/user/3260690"
                 },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
                 {
                     "name": "slashrsm",
                     "homepage": "https://www.drupal.org/user/744628"
@@ -5245,30 +3614,32 @@
         },
         {
             "name": "drupal/cshs",
-            "version": "4.0.3",
+            "version": "1.0.0-beta4",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/cshs.git",
-                "reference": "4.0.3"
+                "reference": "8.x-1.0-beta4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/cshs-4.0.3.zip",
-                "reference": "4.0.3",
-                "shasum": "0e637ddae6b6217c6c7dca36c3fd232f25fb2495"
+                "url": "https://ftp.drupal.org/files/projects/cshs-8.x-1.0-beta4.zip",
+                "reference": "8.x-1.0-beta4",
+                "shasum": "332c4cf5b70644ab65b338706186e390256a034e"
             },
             "require": {
-                "drupal/core": "^10.3 || ^11",
-                "php": ">=8.0"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "4.0.3",
-                    "datestamp": "1732597582",
+                    "version": "8.x-1.0-beta4",
+                    "datestamp": "1497737343",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Beta releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -5278,120 +3649,58 @@
             ],
             "authors": [
                 {
-                    "name": "Walter Jenner",
-                    "homepage": "https://drupal.org/u/valderama"
+                    "name": "BR0kEN",
+                    "homepage": "https://www.drupal.org/user/2802285"
                 },
                 {
-                    "name": "Sergii Bondarenko",
-                    "homepage": "https://drupal.org/u/BR0kEN",
-                    "email": "sb@firstvector.org"
+                    "name": "purushotam.rai",
+                    "homepage": "https://www.drupal.org/user/3193859"
                 },
                 {
-                    "name": "Daneel Cruz",
-                    "homepage": "https://drupal.org/u/daneelcm"
-                },
-                {
-                    "name": "Purushotam Rai",
-                    "homepage": "https://drupal.org/u/purushotam.rai"
+                    "name": "valderama",
+                    "homepage": "https://www.drupal.org/user/103634"
                 }
             ],
             "description": "A simple client-side hierarchical select widget for taxonomy terms.",
             "homepage": "https://www.drupal.org/project/cshs",
-            "keywords": [
-                "client-side-select",
-                "hierarchical-select",
-                "module",
-                "select",
-                "taxonomy"
-            ],
             "support": {
-                "source": "https://git.drupalcode.org/project/cshs",
-                "issues": "https://www.drupal.org/project/issues/cshs"
-            }
-        },
-        {
-            "name": "drupal/csp",
-            "version": "1.40.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/csp.git",
-                "reference": "8.x-1.40"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.40.zip",
-                "reference": "8.x-1.40",
-                "shasum": "37f39e13f9afce4ac4a67c207ae0659b924c1e99"
-            },
-            "require": {
-                "drupal/core": "^10.1.3 || ^11",
-                "ext-json": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.40",
-                    "datestamp": "1741745877",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "gapple",
-                    "homepage": "https://www.drupal.org/user/490940"
-                }
-            ],
-            "description": "Provide Content-Security-Policy headers",
-            "homepage": "https://www.drupal.org/project/csp",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/csp",
-                "issues": "https://www.drupal.org/project/issues/csp"
+                "source": "https://git.drupalcode.org/project/cshs"
             }
         },
         {
             "name": "drupal/ctools",
-            "version": "4.1.0",
+            "version": "3.2.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/ctools.git",
-                "reference": "4.1.0"
+                "reference": "8.x-3.2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
-                "reference": "4.1.0",
-                "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
+                "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
+                "reference": "8.x-3.2",
+                "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
             },
             "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
+                "drupal/core": "^8.5"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev"
+                },
                 "drupal": {
-                    "version": "4.1.0",
-                    "datestamp": "1718144949",
+                    "version": "8.x-3.2",
+                    "datestamp": "1550728386",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
-                },
-                "branch-alias": {
-                    "dev-8.x-3.x": "3.x-dev"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -5447,267 +3756,35 @@
             "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
             "homepage": "https://www.drupal.org/project/ctools",
             "support": {
-                "source": "https://git.drupalcode.org/project/ctools",
+                "source": "http://cgit.drupalcode.org/ctools",
                 "issues": "https://www.drupal.org/project/issues/ctools"
             }
         },
-        {
-            "name": "drupal/customerror",
-            "version": "1.0.0-beta3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/customerror.git",
-                "reference": "8.x-1.0-beta3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/customerror-8.x-1.0-beta3.zip",
-                "reference": "8.x-1.0-beta3",
-                "shasum": "dbb6df7770620b65300a472284b980485fd97ec5"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0-beta3",
-                    "datestamp": "1682597105",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Beta releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "gisle",
-                    "homepage": "https://www.drupal.org/user/409554"
-                },
-                {
-                    "name": "kbahey",
-                    "homepage": "https://www.drupal.org/user/4063"
-                },
-                {
-                    "name": "me-taras",
-                    "homepage": "https://www.drupal.org/user/2526320"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "wafaa",
-                    "homepage": "https://www.drupal.org/user/50133"
-                }
-            ],
-            "description": "Enables the creation of custom error pages for 404 and 403 errors, as well as redirects for 404s.",
-            "homepage": "https://www.drupal.org/project/customerror",
-            "support": {
-                "source": "https://git.drupalcode.org/project/customerror"
-            }
-        },
-        {
-            "name": "drupal/dashboards",
-            "version": "2.1.10",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/dashboards.git",
-                "reference": "2.1.10"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.10.zip",
-                "reference": "2.1.10",
-                "shasum": "5b2df04b0138ea0d6213bb2df1b6636de9dcf6c7"
-            },
-            "require": {
-                "drupal/core": "^9.4 || ^10 || ^11",
-                "laminas/laminas-feed": "^2.17"
-            },
-            "require-dev": {
-                "drupal/layout_builder_restrictions": "*",
-                "drupal/matomo": "*",
-                "drupal/matomo_reporting_api": "*",
-                "drupal/statistics": "*",
-                "drupal/webform": "*"
-            },
-            "suggest": {
-                "drupal/layout_builder_restrictions": "Manage which fields & layouts are available in Layout Builder.",
-                "drupal/matomo": "Reports site visitor analytics to a Matomo instance.",
-                "drupal/matomo_reporting_api": "Allows to retrieve reports from the Matomo API.",
-                "drupal/statistics": "Logs how many times content is viewed.",
-                "drupal/webform": "Enables the creation of webforms and questionnaires."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.10",
-                    "datestamp": "1737573144",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "erik seifert",
-                    "homepage": "https://www.drupal.org/user/161429"
-                },
-                {
-                    "name": "leymannx",
-                    "homepage": "https://www.drupal.org/user/2482808"
-                }
-            ],
-            "description": "Dashboards based on Layout Builder.",
-            "homepage": "https://www.drupal.org/project/dashboards",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/dashboards",
-                "issues": "https://www.drupal.org/project/issues/dashboards"
-            }
-        },
-        {
-            "name": "drupal/date_popup",
-            "version": "2.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/date_popup.git",
-                "reference": "2.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/date_popup-2.0.2.zip",
-                "reference": "2.0.2",
-                "shasum": "fc40e429d927b80aaf75093a4458d9cddbf7f921"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.2",
-                    "datestamp": "1721718242",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "benjy",
-                    "homepage": "https://www.drupal.org/user/1852732"
-                },
-                {
-                    "name": "larowlan",
-                    "homepage": "https://www.drupal.org/user/395439"
-                }
-            ],
-            "description": "Provides a HTML 5 date popup for all views filters.",
-            "homepage": "https://www.drupal.org/project/date_popup",
-            "support": {
-                "source": "https://git.drupalcode.org/project/date_popup"
-            }
-        },
-        {
-            "name": "drupal/datetimehideseconds",
-            "version": "1.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/datetimehideseconds.git",
-                "reference": "8.x-1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/datetimehideseconds-8.x-1.5.zip",
-                "reference": "8.x-1.5",
-                "shasum": "81857730eb3a610d00d1119f337222005b0bc1a0"
-            },
-            "require": {
-                "drupal/core": "^8.7.7 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.5",
-                    "datestamp": "1730329777",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Andi Rüther (anruether)",
-                    "homepage": "https://www.drupal.org/u/anruether",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Merlin Axel Rutz (geek-merlin)",
-                    "homepage": "https://www.drupal.org/u/geek-merlin",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Rainer Halbmann (heliogabal)",
-                    "homepage": "https://www.drupal.org/u/heliogabal",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Provides the option to hide seconds in datetime fields.",
-            "homepage": "https://www.drupal.org/project/datetimehideseconds",
-            "support": {
-                "source": "https://git.drupalcode.org/project/datetimehideseconds",
-                "issues": "https://www.drupal.org/project/issues/datetimehideseconds"
-            }
-        },
         {
             "name": "drupal/default_content",
-            "version": "2.0.0-alpha3",
+            "version": "1.0.0-alpha8",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/default_content.git",
-                "reference": "2.0.0-alpha3"
+                "reference": "8.x-1.0-alpha8"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha3.zip",
-                "reference": "2.0.0-alpha3",
-                "shasum": "fdd90c70bd91896835f6ba5ec42c260c1a144a2b"
+                "url": "https://ftp.drupal.org/files/projects/default_content-8.x-1.0-alpha8.zip",
+                "reference": "8.x-1.0-alpha8",
+                "shasum": "cb16848a5c34bd5c11da1412fd49841814337ae8"
             },
             "require": {
-                "drupal/core": "^9.1 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/hal": "^1 || ^2",
-                "drupal/paragraphs": "^1"
+                "drupal/core": "~8.3"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-alpha3",
-                    "datestamp": "1724492420",
+                    "version": "8.x-1.0-alpha8",
+                    "datestamp": "1556924587",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Alpha releases are not covered by Drupal security advisories."
@@ -5715,7 +3792,7 @@
                 },
                 "drush": {
                     "services": {
-                        "drush.services.yml": "^9 || ^10 || ^11 || ^12"
+                        "drush.services.yml": "^9"
                     }
                 }
             },
@@ -5724,6 +3801,14 @@
                 "GPL-2.0+"
             ],
             "authors": [
+                {
+                    "name": "Berdir",
+                    "homepage": "https://www.drupal.org/user/214652"
+                },
+                {
+                    "name": "Sam152",
+                    "homepage": "https://www.drupal.org/user/1485048"
+                },
                 {
                     "name": "andypost",
                     "homepage": "https://www.drupal.org/user/118908"
@@ -5732,10 +3817,6 @@
                     "name": "benjy",
                     "homepage": "https://www.drupal.org/user/1852732"
                 },
-                {
-                    "name": "berdir",
-                    "homepage": "https://www.drupal.org/user/214652"
-                },
                 {
                     "name": "dawehner",
                     "homepage": "https://www.drupal.org/user/99340"
@@ -5747,10 +3828,6 @@
                 {
                     "name": "larowlan",
                     "homepage": "https://www.drupal.org/user/395439"
-                },
-                {
-                    "name": "sam152",
-                    "homepage": "https://www.drupal.org/user/1485048"
                 }
             ],
             "description": "Imports default content when a module is enabled",
@@ -5759,1076 +3836,43 @@
                 "source": "https://git.drupalcode.org/project/default_content"
             }
         },
-        {
-            "name": "drupal/diff",
-            "version": "1.8.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/diff.git",
-                "reference": "8.x-1.8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.8.zip",
-                "reference": "8.x-1.8",
-                "shasum": "a104bf731a282f06ff0d5a7fb861c01b5b933765"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11",
-                "mkalkbrenner/php-htmldiff-advanced": "~0.0.8",
-                "php": "^8.1"
-            },
-            "require-dev": {
-                "jangregor/phpstan-prophecy": "dev-master",
-                "mglaman/phpstan-drupal": "^1.2.10",
-                "phpstan/extension-installer": "^1.2",
-                "phpstan/phpstan": "^1.11",
-                "phpstan/phpstan-deprecation-rules": "*",
-                "phpstan/phpstan-phpunit": "1.4.x-dev",
-                "phpstan/phpstan-strict-rules": "^1@stable",
-                "previousnext/coding-standard": "1.0.1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.8",
-                    "datestamp": "1727892285",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Miro Dietiker (miro_dietiker)",
-                    "homepage": "https://www.drupal.org/u/miro_dietiker",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Juampy NR (juampynr)",
-                    "homepage": "https://www.drupal.org/u/juampynr",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Lucian Hangea (lhangea)",
-                    "homepage": "https://www.drupal.org/u/lhangea",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Alan D.",
-                    "homepage": "https://www.drupal.org/u/alan-d.",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Brian Gilbert (realityloop).",
-                    "homepage": "https://www.drupal.org/u/realityloop",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Adam Bramley (acbramley)",
-                    "homepage": "https://www.drupal.org/u/acbramley",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "lhangea",
-                    "homepage": "https://www.drupal.org/user/2743803"
-                },
-                {
-                    "name": "miro_dietiker",
-                    "homepage": "https://www.drupal.org/user/227761"
-                },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
-                {
-                    "name": "realityloop",
-                    "homepage": "https://www.drupal.org/user/139189"
-                },
-                {
-                    "name": "rötzi",
-                    "homepage": "https://www.drupal.org/user/73064"
-                },
-                {
-                    "name": "yhahn",
-                    "homepage": "https://www.drupal.org/user/264833"
-                }
-            ],
-            "description": "Compares two entity revisions",
-            "homepage": "https://www.drupal.org/project/diff",
-            "support": {
-                "source": "https://git.drupalcode.org/project/diff",
-                "issues": "https://www.drupal.org/project/issues/diff"
-            }
-        },
-        {
-            "name": "drupal/drd_agent",
-            "version": "4.1.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drd_agent.git",
-                "reference": "4.1.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.3.zip",
-                "reference": "4.1.3",
-                "shasum": "1120c6b6a06ff9de6a55f294ea0468233cba12ee"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11",
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "drupal/hacked": "^2.0",
-                "drupal/job_scheduler": "^4.0",
-                "drupal/monitoring": "^1.13",
-                "drupal/security_review": "^3.0"
-            },
-            "suggest": {
-                "drupal/hacked": "Validate each project if it got changed compared to the original code from drupal.org.",
-                "drupal/monitoring": "Site monitoring module with sensors.",
-                "drupal/security_review": "Site security and configuration review module."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.1.3",
-                    "datestamp": "1741249954",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Jürgen Haas",
-                    "homepage": "https://www.drupal.org/u/jurgenhaas"
-                },
-                {
-                    "name": "jurgenhaas",
-                    "homepage": "https://www.drupal.org/user/168924"
-                }
-            ],
-            "description": "Agent on remote Drupal sites for the main DRD module.",
-            "homepage": "https://www.drupal.org/project/drd_agent",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupal.org/project/drd_agent",
-                "issues": "https://www.drupal.org/project/issues/drd"
-            }
-        },
         {
             "name": "drupal/drutopia_action",
-            "version": "2.0.0-rc1",
+            "version": "1.0.0-beta3",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/drutopia_action.git",
-                "reference": "2.0.0-rc1"
+                "reference": "8.x-1.0-beta3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/drutopia_action-2.0.0-rc1.zip",
-                "reference": "2.0.0-rc1",
-                "shasum": "e1e9aea007a1b2174ff286b8cf54a9bc3edac75a"
+                "url": "https://ftp.drupal.org/files/projects/drutopia_action-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "b2ecac510f76c26ee38de380a4895cd08fa22f09"
             },
             "require": {
-                "drupal/config_actions": "^1.1",
-                "drupal/config_snapshot": "*",
-                "drupal/core": "^9.4 || ^10",
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
                 "drupal/drutopia_core": "*",
-                "drupal/drutopia_seo": "^2",
+                "drupal/drutopia_seo": "^1.0-alpha1",
                 "drupal/drutopia_site": "*",
-                "drupal/ds": "^3.7",
+                "drupal/ds": "^3.0-rc1",
                 "drupal/entity_reference_revisions": "*",
-                "drupal/field_group": "^3.0",
+                "drupal/field_group": "^3.0-beta1",
                 "drupal/focal_point": "*",
-                "drupal/media_library_media_modify": "*",
-                "drupal/media_responsive_thumbnail": "*",
                 "drupal/metatag": "*",
-                "drupal/paragraphs": "^1.12",
-                "drupal/pathauto": "^1.8",
-                "drupal/search_api": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0-rc1",
-                    "datestamp": "1697332194",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "RC releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Action is a base feature providing an action content type and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_action",
-            "keywords": [
-                "actions",
-                "campaign",
-                "drutopia",
-                "grassroots",
-                "group"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_action/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_action"
-            }
-        },
-        {
-            "name": "drupal/drutopia_article",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_article.git",
-                "reference": "0c4d5f0f695914e154282fc4d6bb0d866675fb1a"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "^2",
-                "drupal/config_actions": "^1.4",
-                "drupal/config_snapshot": "*",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/ctools": "^4.1",
-                "drupal/drutopia_comment": "*",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_people": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/drutopia_site": "*",
-                "drupal/ds": "^3.28",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/facets": "^3",
-                "drupal/field_group": "^3.6",
-                "drupal/focal_point": "*",
-                "drupal/media_library_media_modify": "*",
-                "drupal/media_responsive_thumbnail": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1.13",
-                "drupal/rdf": "*",
-                "drupal/search_api": "*",
-                "drupal/token": "^1.15"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.0-rc2+4-dev",
-                    "datestamp": "1738966837",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Article is a base feature providing an article content type and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_article",
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_article"
-            }
-        },
-        {
-            "name": "drupal/drutopia_blog",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_blog.git",
-                "reference": "2a9b1a9c8fb87d799b118e95a22af9167bc5d5d2"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "^2",
-                "drupal/config_actions": "^1.4",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/ctools": "^4.1",
-                "drupal/drutopia_comment": "*",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_people": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/drutopia_site": "*",
-                "drupal/ds": "^3.28",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/facets": "^3",
-                "drupal/field_group": "^3.6",
-                "drupal/focal_point": "*",
-                "drupal/media_library_media_modify": "*",
-                "drupal/media_responsive_thumbnail": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1.13",
-                "drupal/search_api": "*",
-                "drupal/token": "^1.15"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.0-rc2+4-dev",
-                    "datestamp": "1738966933",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Blog is a base feature providing a blog content type and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_blog",
-            "keywords": [
-                "blogging",
-                "content",
-                "drutopia",
-                "journal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_blog/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_blog"
-            }
-        },
-        {
-            "name": "drupal/drutopia_campaign",
-            "version": "2.0.0-rc1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_campaign.git",
-                "reference": "2.0.0-rc1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-2.0.0-rc1.zip",
-                "reference": "2.0.0-rc1",
-                "shasum": "6a3570196c34c24daa780e64319af9a6e292e3cc"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "*",
-                "drupal/config_actions": "^1.1",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/drutopia_core": "^2",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3.7",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/facets": "*",
-                "drupal/field_group": "^3.0",
-                "drupal/focal_point": "*",
-                "drupal/media_library_media_modify": "*",
-                "drupal/media_responsive_thumbnail": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "^1.12",
-                "drupal/pathauto": "^1.8",
-                "drupal/search_api": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0-rc1",
-                    "datestamp": "1697332856",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "RC releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Campaign provides a Campaign content type, including background information as well as ability to list demands and updates, and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_campaign",
-            "keywords": [
-                "campaign",
-                "content",
-                "drutopia",
-                "initiative"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_campaign/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_campaign"
-            }
-        },
-        {
-            "name": "drupal/drutopia_collection",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_collection.git",
-                "reference": "6a56ad10454f362422cc232a4bfe0ddd32ae7586"
-            },
-            "require": {
-                "drupal/config_actions": "^1.4",
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/ctools": "^4.1",
-                "drupal/drutopia_article": "^2",
-                "drupal/drutopia_blog": "^2",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_people": "^2",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3.28",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/metatag": "^2.1",
-                "drupal/paragraphs": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738965303",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Collection is a feature providing the ability to create collections to bring together ordered listings of Articles, Blog posts, or other content.  This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people. an article content type and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_collection",
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_collection"
-            }
-        },
-        {
-            "name": "drupal/drutopia_comment",
-            "version": "2.0.0-rc1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_comment.git",
-                "reference": "2.0.0-rc1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/drutopia_comment-2.0.0-rc1.zip",
-                "reference": "2.0.0-rc1",
-                "shasum": "bc213075e952a46d86978e7e9ff828d9d9b91c14"
-            },
-            "require": {
-                "drupal/config_actions": "^1.1",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/drutopia_core": "*",
-                "drupal/rdf": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0-rc1",
-                    "datestamp": "1697331973",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "RC releases are not covered by Drupal security advisories."
-                    }
-                },
-                "branch-alias": {
-                    "dev-8.x-1.x": "^1.0-alpha1"
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia comment is a base feature providing comments and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_comment",
-            "keywords": [
-                "comments",
-                "content",
-                "discussion",
-                "drutopia"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_comment/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_comment"
-            }
-        },
-        {
-            "name": "drupal/drutopia_core",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_core.git",
-                "reference": "ecbcab8ee9779dbcb8f86bd731192842e8da14e0"
-            },
-            "require": {
-                "drupal/automated_crop": "^4.0",
-                "drupal/config_actions": "^1.4",
-                "drupal/config_perms": "^2.1",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/crop": "^2.1",
-                "drupal/ds": "^3.28",
-                "drupal/exclude_node_title": "*",
-                "drupal/facets": "^3",
-                "drupal/faqfield": "^7.1",
-                "drupal/focal_point": "^2.1",
-                "drupal/image_field_to_media": "^3.0",
-                "drupal/image_widget_crop": "^2",
-                "drupal/media_contextual_crop": "^2.1",
-                "drupal/media_contextual_crop_field_formatter": "^2.0",
-                "drupal/media_contextual_crop_fp_adapter": "^2.0",
-                "drupal/media_contextual_crop_iwc_adapter": "^2.0",
-                "drupal/media_library_media_modify": "^1.0",
-                "drupal/media_responsive_thumbnail": "^1.5",
-                "drupal/metatag": "^2.1",
-                "drupal/paragraphs": "^1.18",
-                "drupal/pathauto": "*",
-                "drupal/rdf": "*",
-                "drupal/search_api": "^1.37",
-                "drupal/search_api_db": "*",
-                "drupal/video_embed_field": "^2.5"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738964608",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                },
-                "patches": {
-                    "drupal/entity_reference_revisions": {
-                        "Support normalization without local revision ID": "https://www.drupal.org/files/issues/2022-08-18/entity_reference_revisions-normalizer-2913713-12.patch"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia core is a base feature providing core components required by other features.",
-            "homepage": "https://www.drupal.org/project/drutopia_core",
-            "keywords": [
-                "base",
-                "core",
-                "drutopia"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_core/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_core"
-            }
-        },
-        {
-            "name": "drupal/drutopia_event",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_event.git",
-                "reference": "493e86fe85f947aca945fe8e91cda4e781bb9513"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "^2",
-                "drupal/config_actions": "^1.4",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/ctools": "^4.1",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3.28",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/facets": "^3",
-                "drupal/field_group": "*",
-                "drupal/focal_point": "*",
-                "drupal/media_library_media_modify": "*",
-                "drupal/media_responsive_thumbnail": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1.13",
-                "drupal/search_api": "*",
-                "drupal/token": "^1.15"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738966631",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Event is a base feature providing a event content type, with date and event type, and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_event",
-            "keywords": [
-                "calendar",
-                "date",
-                "drutopia",
-                "events"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_event/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_event"
-            }
-        },
-        {
-            "name": "drupal/drutopia_group",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_group.git",
-                "reference": "f744305a5f93fa85eab281f7e001f84fe6d1cb35"
-            },
-            "require": {
-                "drupal/address": "^2.0",
-                "drupal/config_actions": "*",
-                "drupal/config_perms": "*",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/ctools": "*",
-                "drupal/drutopia_core": "^2",
-                "drupal/ds": "*",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/gnode": "*",
-                "drupal/group": "^3",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1.13"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738967926",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Group provides a group content type that can be classified by a group type vocabulary and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_group",
-            "keywords": [
-                "drutopia",
-                "grassroots",
-                "groups",
-                "organizations"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_group/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_group"
-            }
-        },
-        {
-            "name": "drupal/drutopia_landing_page",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_landing_page.git",
-                "reference": "6c9fed4cbb476a99e1536aaee94dc8182c82e387"
-            },
-            "require": {
-                "cweagans/composer-patches": "^1",
-                "drupal/config_actions": "^1",
-                "drupal/config_snapshot": "*",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/ctools": "^4",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/exclude_node_title": "^1",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1",
-                "drupal/token": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738971149",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Landing Page is a base feature providing a landing page content type and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_landing_page",
-            "keywords": [
-                "content",
-                "drutopia",
-                "entry",
-                "standalone"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_landing_page/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_landing_page"
-            }
-        },
-        {
-            "name": "drupal/drutopia_organization",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_organization.git",
-                "reference": "28ddc437632547dfcb991cf3b639510951bf9949"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "*",
-                "drupal/config_actions": "^1",
-                "drupal/config_snapshot": "*",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/ctools": "*",
-                "drupal/drutopia_core": "^2",
-                "drupal/drutopia_event": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/facets": "*",
-                "drupal/field_group": "^3",
-                "drupal/focal_point": "*",
-                "drupal/ief_complex_open": "^1",
-                "drupal/inline_entity_form": "^3.0@RC",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "^1",
-                "drupal/pathauto": "^1",
+                "drupal/paragraphs": "^1.1",
+                "drupal/pathauto": "^1.0",
                 "drupal/search_api": "*"
             },
             "type": "drupal-module",
             "extra": {
                 "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
+                    "dev-1.x": "1.x-dev"
                 },
                 "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738968329",
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559237288",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Project has not opted into security advisory coverage!"
@@ -6841,895 +3885,13 @@
             ],
             "authors": [
                 {
-                    "name": "dinarcon",
-                    "homepage": "https://www.drupal.org/user/909522"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Organization provides an Organization content type for showing visitors information about organizations (groups, nonprofits, businesses) that are part of the site and can be associated with blogs, resources, events, etc.",
-            "homepage": "https://www.drupal.org/project/drutopia_organization",
-            "keywords": [
-                "business",
-                "content",
-                "drutopia",
-                "group",
-                "nonprofit",
-                "organization"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_organization/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_organization"
-            }
-        },
-        {
-            "name": "drupal/drutopia_page",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_page.git",
-                "reference": "86d7bbe6241184a5b820bbca2cc706defa4da033"
-            },
-            "require": {
-                "drupal/config_actions": "^1.4",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/ctools": "^4.1",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3.28",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1.13",
-                "drupal/rdf": "*",
-                "drupal/token": "^1.15"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738965862",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
                 },
                 {
                     "name": "drutopia_gitlab",
                     "homepage": "https://www.drupal.org/user/3514271"
                 },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Page is a base feature providing a page content type and related configuration.",
-            "homepage": "https://www.drupal.org/project/drutopia_page",
-            "keywords": [
-                "content",
-                "drutopia",
-                "pages"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_page/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_page"
-            }
-        },
-        {
-            "name": "drupal/drutopia_paragraph_title",
-            "version": "dev-1.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_paragraph_title.git",
-                "reference": "d74353db8e3c92e9fb4a469e86b9c979d48f1297"
-            },
-            "require": {
-                "drupal/allowed_formats": "^3",
-                "drupal/core": "^8.8.3 || ^9 || ^10",
-                "drupal/drutopia_core": "^1 || ^2",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/minimalhtml": "^2",
-                "drupal/minimalhtmltitle": "*",
-                "drupal/paragraphs": "^1",
-                "drupal/ui_patterns": "*",
-                "drupal/ui_patterns_ds": "*",
-                "drupal/ui_patterns_layouts": "*",
-                "drupal/ui_patterns_library": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.0.x": "1.0.x-dev"
-                },
-                "drupal": {
-                    "version": "1.0.0+9-dev",
-                    "datestamp": "1738968607",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Provides a title paragraph that can replace regular page titles with a title, subtitle, and image.",
-            "homepage": "https://www.drupal.org/project/drutopia_paragraph_title",
-            "keywords": [
-                "content",
-                "drutopia",
-                "paragraphs",
-                "titles"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_paragraph_title",
-                "issues": "https://www.drupal.org/project/issues/drutopia_paragraph_title"
-            }
-        },
-        {
-            "name": "drupal/drutopia_people",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_people.git",
-                "reference": "338484dc18c27ddc3cdfc0adbe7af2532fef6dc4"
-            },
-            "require": {
-                "drupal/config_actions": "^1",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/ctools": "*",
-                "drupal/drutopia_core": "^2",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/field_group": "^3",
-                "drupal/focal_point": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "^1",
-                "drupal/pathauto": "^1",
-                "drupal/search_api": "*",
-                "drupal/views_plain": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738968707",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia People provides a People content type for showing visitors information about staff, volunteers, contributors, and more.",
-            "homepage": "https://www.drupal.org/project/drutopia_people",
-            "keywords": [
-                "biography",
-                "content",
-                "drutopia",
-                "person",
-                "profile",
-                "staff",
-                "volunteers"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_people/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_people"
-            }
-        },
-        {
-            "name": "drupal/drutopia_related_content",
-            "version": "2.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_related_content.git",
-                "reference": "2.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-2.0.0.zip",
-                "reference": "2.0.0",
-                "shasum": "205cf7d5f35cc0ae87a7a6916e295c96463c0d5b"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "^2",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/drutopia_core": "^2",
-                "drupal/similarterms": "^1.3"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0",
-                    "datestamp": "1701820686",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Shows content (articles, actions, etc.) related to the current page's content based on the taxonomy terms held in common.",
-            "homepage": "https://www.drupal.org/project/drutopia_related_content",
-            "keywords": [
-                "content",
-                "drutopia",
-                "relations",
-                "similar"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_related_content/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_related_content"
-            }
-        },
-        {
-            "name": "drupal/drutopia_resource",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_resource.git",
-                "reference": "0907b1f514b7361c78085bfefc1ce0ed4d83c062"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "^2",
-                "drupal/config_actions": "^1.4",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/ctools": "^4.1",
-                "drupal/drutopia_core": "*",
-                "drupal/drutopia_seo": "^2",
-                "drupal/ds": "^3.28",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/facets": "^3",
-                "drupal/field_group": "^3.6",
-                "drupal/focal_point": "*",
-                "drupal/media_library_media_modify": "*",
-                "drupal/media_responsive_thumbnail": "*",
-                "drupal/metatag": "*",
-                "drupal/paragraphs": "*",
-                "drupal/pathauto": "^1.13",
-                "drupal/rabbit_hole": "*",
-                "drupal/rh_node": "*",
-                "drupal/search_api": "*",
-                "drupal/token": "^1.15",
-                "drupal/video_embed_field": "^2.5"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738965704",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Provides Resource content type and related configuration. A resource can be a file, such as a PDF, a link, such as a website URL, or an embedded video.",
-            "homepage": "https://www.drupal.org/project/drutopia_resource",
-            "keywords": [
-                "content",
-                "drutopia",
-                "facets",
-                "files",
-                "filtering",
-                "resources",
-                "search"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_resource/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_resource"
-            }
-        },
-        {
-            "name": "drupal/drutopia_search",
-            "version": "2.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_search.git",
-                "reference": "2.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/drutopia_search-2.0.0.zip",
-                "reference": "2.0.0",
-                "shasum": "1328a24be4f450489684add8b2bf72c0bf78fcd6"
-            },
-            "require": {
-                "drupal/block_visibility_groups": "^2",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/drutopia_core": "^2",
-                "drupal/facets": "*",
-                "drupal/search_api": "*",
-                "drupal/search_api_db": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0",
-                    "datestamp": "1701816050",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Search provides a search server, index, and view.",
-            "homepage": "https://www.drupal.org/project/drutopia_search",
-            "keywords": [
-                "content",
-                "drutopia",
-                "finding",
-                "searching"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_search/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_search"
-            }
-        },
-        {
-            "name": "drupal/drutopia_seo",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_seo.git",
-                "reference": "e92b8ff100dd06b1eb1cf88a4761416f26381dc8"
-            },
-            "require": {
-                "drupal/config_actions": "^1.4",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/drutopia_core": "*",
-                "drupal/metatag": "^2.1",
-                "drupal/redirect": "^1.11",
-                "drupal/redirect_404": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738965074",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Sensible Search Engine Optimization default configuration for a site.",
-            "homepage": "https://www.drupal.org/project/drutopia_seo",
-            "keywords": [
-                "SEO",
-                "content",
-                "discoverability",
-                "drutopia",
-                "metatags",
-                "optimization",
-                "visibility"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_seo/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_seo"
-            }
-        },
-        {
-            "name": "drupal/drutopia_site",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_site.git",
-                "reference": "da5e9dfb288a0ae17b424dfe1c704fd521dd556a"
-            },
-            "require": {
-                "drupal/admin_toolbar": "^3",
-                "drupal/admin_toolbar-admin_toolbar_search": "*",
-                "drupal/admin_toolbar_tools": "*",
-                "drupal/autosave_form": "^1",
-                "drupal/config_actions": "^1",
-                "drupal/config_snapshot": "*",
-                "drupal/core": "^9.4 || ^10",
-                "drupal/drutopia_core": "^2",
-                "drupal/ds": "*",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/menu_admin_per_menu": "^1",
-                "drupal/paragraphs": "*",
-                "drupal/role_delegation": "^1",
-                "drupal/workflow_buttons": "^1",
-                "drupal/workflow_buttons_trash": "*",
-                "drupal/wysiwyg_linebreaks": "^2"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738969316",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia site is a base feature providing site components.",
-            "homepage": "https://www.drupal.org/project/drutopia_site",
-            "keywords": [
-                "base",
-                "drutopia",
-                "site"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_site/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_site"
-            }
-        },
-        {
-            "name": "drupal/drutopia_social",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_social.git",
-                "reference": "0922fd6688d5b49903c30bb626d03c0df36d65c8"
-            },
-            "require": {
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/social_media_links": "^2"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738969425",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Drutopia Social provides a social media block, perhaps more in the future.",
-            "homepage": "https://www.drupal.org/project/drutopia_social",
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_social"
-            }
-        },
-        {
-            "name": "drupal/drutopia_storyline",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_storyline.git",
-                "reference": "bf79a2124dd2b0429403e22f2abae55cbd4b0224"
-            },
-            "require": {
-                "drupal/config_actions": "*",
-                "drupal/core": "^8.9 || ^9 || ^10",
-                "drupal/drutopia_core": "^2",
-                "drupal/drutopia_page": "^2",
-                "drupal/entity_reference_revisions": "*",
-                "drupal/field_group": "^3",
-                "drupal/paragraphs": "*"
-            },
-            "require-dev": {
-                "drupal/drutopia_page": "*",
-                "drupal/entity_reference_revisions": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1738969481",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ronaldmulero",
-                    "homepage": "https://www.drupal.org/user/241652"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Provides storyline paragraphs and an accompanying module to add a storyline to a basic page so that you can provide a simple chronology or story in a timeline format.",
-            "homepage": "https://www.drupal.org/project/drutopia_storyline",
-            "keywords": [
-                "chronology",
-                "content",
-                "drutopia",
-                "storyline",
-                "timeline"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_storyline/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_storyline"
-            }
-        },
-        {
-            "name": "drupal/drutopia_user",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/drutopia_user.git",
-                "reference": "bba7bc4fbbc5a6e18b4bd66711e0d6735d8cb3d1"
-            },
-            "require": {
-                "drupal/core": "^8.9 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1693752967",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "drutopia_gitlab",
-                    "homepage": "https://www.drupal.org/user/3514271"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
                 {
                     "name": "mlncn",
                     "homepage": "https://www.drupal.org/user/64383"
@@ -7745,14 +3907,1550 @@
                 {
                     "name": "rosemarymann",
                     "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Action is a base feature providing an action content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_action",
+            "keywords": [
+                "actions",
+                "campaign",
+                "drutopia",
+                "grassroots",
+                "group"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_action/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_action/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_article",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_article.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_article-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "b39e7808288255a88668b8ba8768baf79e7b15a7"
+            },
+            "require": {
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/config_actions": "^1.0",
+                "drupal/core": "*",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_comment": "*",
+                "drupal/drutopia_core": "*",
+                "drupal/drutopia_people": "*",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/drutopia_site": "*",
+                "drupal/ds": "^3.1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/facets": "^1.1",
+                "drupal/field_group": "^3.0-beta1",
+                "drupal/focal_point": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.3",
+                "drupal/search_api": "*",
+                "drupal/token": "^1.4"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559237586",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
                 },
                 {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Article is a base feature providing an article content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_article",
+            "support": {
+                "source": "https://git.drupalcode.org/project/drutopia_article"
+            }
+        },
+        {
+            "name": "drupal/drutopia_blog",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_blog.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_blog-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "bc06460e45ee210c9b9f597d8294862e4ea352d6"
+            },
+            "require": {
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/config_actions": "^1.0",
+                "drupal/core": "*",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_comment": "*",
+                "drupal/drutopia_core": "*",
+                "drupal/drutopia_people": "*",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/drutopia_site": "*",
+                "drupal/ds": "^3.1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/facets": "^1.1",
+                "drupal/field_group": "^3.0-beta1",
+                "drupal/focal_point": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.3",
+                "drupal/search_api": "*",
+                "drupal/token": "^1.4"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559237884",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Blog is a base feature providing a blog content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_blog",
+            "keywords": [
+                "blogging",
+                "content",
+                "drutopia",
+                "journal"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_blog/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_blog/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_campaign",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_campaign.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "ea6d0d33f9b7e2ec68892a769bb95c394f0f5197"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "^1.0-alpha1",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/ds": "^3.0-rc1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/field_group": "^3.0-beta1",
+                "drupal/focal_point": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "^1.1",
+                "drupal/pathauto": "^1.0",
+                "drupal/search_api": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559237884",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Campaign provides a Campaign content type, including background information as well as ability to list demands and updates, and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_campaign",
+            "keywords": [
+                "campaign",
+                "content",
+                "drutopia",
+                "initiative"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_campaign/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_campaign/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_collection",
+            "version": "dev-8.x-1.x",
+            "source": {
+                "type": "git",
+                "url": "git@gitlab.com:drutopia/drutopia_collection.git",
+                "reference": "ec9e99b42debe91d0b80dfd7d06c53f7831c1c35"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_people": "^1.0-beta3",
+                "drupal/drutopia_seo": "^1.0-beta2",
+                "drupal/ds": "^3.1",
+                "drupal/metatag": "^1.9"
+            },
+            "type": "drupal-module",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "description": "Drutopia Collection is a feature providing the ability to create collections to bring together ordered listings of Articles, Blog posts, or other content.  This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people. an article content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_collection",
+            "time": "2019-07-29T16:18:26+00:00"
+        },
+        {
+            "name": "drupal/drutopia_comment",
+            "version": "1.0.0-beta1",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_comment.git",
+                "reference": "8.x-1.0-beta1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_comment-8.x-1.0-beta1.zip",
+                "reference": "8.x-1.0-beta1",
+                "shasum": "ddedcc571efa3ea32cbc08dffd29863b2884dbac"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev",
+                    "dev-8.x-1.x": "^1.0-alpha1"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta1",
+                    "datestamp": "1540932180",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia comment is a base feature providing comments and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_comment",
+            "keywords": [
+                "comments",
+                "content",
+                "discussion",
+                "drutopia"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_comment/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_comment/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_core",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_core.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_core-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "4cba6ea64c485fcfbabc04335e059b0a646c83eb"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0",
+                "drupal/config_perms": "^2.0-beta1",
+                "drupal/core": "^8.6",
+                "drupal/crop": "^1.5",
+                "drupal/default_content": "^1.0-alpha8",
+                "drupal/ds": "^3.1",
+                "drupal/entity_reference_revisions": "^1.5",
+                "drupal/facets": "^1.3",
+                "drupal/faqfield": "^1.1",
+                "drupal/focal_point": "^1.0",
+                "drupal/metatag": "^1.7",
+                "drupal/paragraphs": "^1.3",
+                "drupal/search_api": "^1.9",
+                "drupal/search_api_db": "*",
+                "drupal/video_embed_field": "^2.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559250481",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                },
+                "patches": {
+                    "drupal/entity_reference_revisions": {
+                        "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch"
+                    },
+                    "drupal/facets": {
+                        "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch"
+                    },
+                    "drupal/search_api": {
+                        "Notice: Undefined index: total When we enable the module in the installation step": "https://www.drupal.org/files/issues/2931562-13--undefined_total_in_task_manager_batch_finish.patch"
+                    }
+                },
+                "patches_applied": {
+                    "Remove default content": "patches/drutopia-core-remove-default-content.patch"
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia core is a base feature providing core components required by other features.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_core",
+            "keywords": [
+                "base",
+                "core",
+                "drutopia"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_core/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_event",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_event.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_event-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "4e23ac472b29ba9c0f436ac209bed4d5b70b49e3"
+            },
+            "require": {
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/config_actions": "^1.0",
+                "drupal/core": "*",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_core": "*",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/ds": "^3.1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/facets": "^1.1",
+                "drupal/field_group": "*",
+                "drupal/focal_point": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.3",
+                "drupal/search_api": "*",
+                "drupal/token": "^1.4"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559238489",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Event is a base feature providing a event content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_event",
+            "keywords": [
+                "calendar",
+                "date",
+                "drutopia",
+                "events"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_event/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_event/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_group",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_group.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_group-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "4b85c1df64d164f59b259039b2263298415953fe"
+            },
+            "require": {
+                "drupal/address": "^1.0",
+                "drupal/config_actions": "*",
+                "drupal/config_perms": "*",
+                "drupal/core": "*",
+                "drupal/ctools": "*",
+                "drupal/drutopia_core": "^1.0-alpha1",
+                "drupal/ds": "*",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/gnode": "*",
+                "drupal/group": "~1.0-beta5",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559238785",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Group provides a group content type that can be classified by a group type vocabulary and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_group",
+            "keywords": [
+                "drutopia",
+                "grassroots",
+                "groups",
+                "organizations"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_group/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_group/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_landing_page",
+            "version": "1.0.0-beta1",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_landing_page.git",
+                "reference": "8.x-1.0-beta1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_landing_page-8.x-1.0-beta1.zip",
+                "reference": "8.x-1.0-beta1",
+                "shasum": "1d4d924738b6ef3f27828723146dc86cab2a8223"
+            },
+            "require": {
+                "cweagans/composer-patches": "^1.5.0",
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_core": "*",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/ds": "^3.0-rc1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/exclude_node_title": "^1.0-beta1",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.0",
+                "drupal/token": "^1.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta1",
+                    "datestamp": "1540933681",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Landing Page is a base feature providing a landing page content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_landing_page",
+            "keywords": [
+                "content",
+                "drutopia",
+                "entry",
+                "standalone"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_landing_page/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_landing_page/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_page",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_page.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_page-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "27500afb0cd9d5d25a8d7d5e06e8a0c950b43f2a"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_core": "*",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/ds": "^3.0-rc1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.0",
+                "drupal/token": "^1.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559238785",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Page is a base feature providing a page content type and related configuration.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_page",
+            "keywords": [
+                "content",
+                "drutopia",
+                "pages"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_page/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_page/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_people",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_people.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_people-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "58cebbede73784145a7a2a7e1723557c7318cfb3"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/ctools": "*",
+                "drupal/drutopia_core": "^1.0-alpha1",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/ds": "^3.0-rc1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/field_group": "^3.0-dev",
+                "drupal/focal_point": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "^1.1",
+                "drupal/pathauto": "^1.0",
+                "drupal/search_api": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559239088",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia People provides a People content type for showing visitors information about staff, volunteers, contributors, and more.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_people",
+            "keywords": [
+                "biography",
+                "content",
+                "drutopia",
+                "person",
+                "profile",
+                "staff",
+                "volunteers"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_people/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_people/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_related_content",
+            "version": "1.0.0-beta2",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_related_content.git",
+                "reference": "8.x-1.0-beta2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-8.x-1.0-beta2.zip",
+                "reference": "8.x-1.0-beta2",
+                "shasum": "1c0b1870b44a026548399ca4e529acac7c995973"
+            },
+            "require": {
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "^1.0-alpha5",
+                "drupal/similarterms": "^1.3"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta2",
+                    "datestamp": "1559239088",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                },
+                "patches": {
+                    "drupal/similarterms": {
+                        "PHP fatal error, SimilarTermsArgument::query() must be compatible with NumericArgument": "https://www.drupal.org/files/issues/query_4.patch"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Provides related content on node pages generated via similar terms.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_related_content",
+            "keywords": [
+                "content",
+                "drutopia",
+                "relations",
+                "similar"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_related_content/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_related_content/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_resource",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_resource.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_resource-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "95bc86c6c7e043ce860960e77b6a0e7e3675963b"
+            },
+            "require": {
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/config_actions": "^1.0",
+                "drupal/core": "*",
+                "drupal/ctools": "^3.0",
+                "drupal/drutopia_core": "*",
+                "drupal/drutopia_seo": "^1.0-alpha1",
+                "drupal/ds": "^3.1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/facets": "^1.1",
+                "drupal/field_group": "^3.0-beta1",
+                "drupal/focal_point": "*",
+                "drupal/metatag": "*",
+                "drupal/paragraphs": "*",
+                "drupal/pathauto": "^1.3",
+                "drupal/search_api": "*",
+                "drupal/token": "^1.4",
+                "drupal/video_embed_field": "^2.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559239390",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Provides Resource content type and related configuration. A resource can be a file, such as a PDF, a link, such as a website URL, or an embedded video.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_resource",
+            "keywords": [
+                "content",
+                "drutopia",
+                "facets",
+                "files",
+                "filtering",
+                "resources",
+                "search"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_resource/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_resource/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_search",
+            "version": "1.0.0-beta2",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_search.git",
+                "reference": "8.x-1.0-beta2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_search-8.x-1.0-beta2.zip",
+                "reference": "8.x-1.0-beta2",
+                "shasum": "8a42d35417eb5fa562151553771549d4abc8b993"
+            },
+            "require": {
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "^1.0-alpha5",
+                "drupal/facets": "*",
+                "drupal/search_api": "*",
+                "drupal/search_api_db": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta2",
+                    "datestamp": "1559239684",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Search provides a search server, index, and view.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_search",
+            "keywords": [
+                "content",
+                "drutopia",
+                "finding",
+                "searching"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_search/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_search/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_seo",
+            "version": "1.0.0-beta2",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_seo.git",
+                "reference": "8.x-1.0-beta2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_seo-8.x-1.0-beta2.zip",
+                "reference": "8.x-1.0-beta2",
+                "shasum": "5cbfa74b07273856b98fbbada36615d10e163553"
+            },
+            "require": {
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "*",
+                "drupal/metatag": "^1.1",
+                "drupal/redirect": "^1.3"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta2",
+                    "datestamp": "1559239684",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Sensible Search Engine Optimization default configuration for a site.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_seo",
+            "keywords": [
+                "SEO",
+                "content",
+                "discoverability",
+                "drutopia",
+                "metatags",
+                "optimization",
+                "visibility"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_seo/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_seo/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_site",
+            "version": "1.0.0-beta1",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_site.git",
+                "reference": "8.x-1.0-beta1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_site-8.x-1.0-beta1.zip",
+                "reference": "8.x-1.0-beta1",
+                "shasum": "8a01759078255ffea194c65d3f25456d82367117"
+            },
+            "require": {
+                "drupal/admin_links_access_filter": "^1.0-alpha3",
+                "drupal/admin_toolbar": "^1.19",
+                "drupal/admin_toolbar_tools": "*",
+                "drupal/config_actions": "^1.0-beta1",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "^1.0-alpha1",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/paragraphs": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta1",
+                    "datestamp": "1540935780",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia site is a base feature providing site components.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_site",
+            "keywords": [
+                "base",
+                "drutopia",
+                "site"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_site/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_site/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_social",
+            "version": "1.0.0-beta1",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_social.git",
+                "reference": "8.x-1.0-beta1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_social-8.x-1.0-beta1.zip",
+                "reference": "8.x-1.0-beta1",
+                "shasum": "f7bf2a1f2482fa15ee028b07611427838baf71b3"
+            },
+            "require": {
+                "drupal/core": "*",
+                "drupal/social_media_links": "^2.0"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta1",
+                    "datestamp": "1540936080",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Drutopia Social provides a social media block, perhaps more in the future.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_social",
+            "support": {
+                "source": "https://git.drupalcode.org/project/drutopia_social"
+            }
+        },
+        {
+            "name": "drupal/drutopia_storyline",
+            "version": "1.0.0-beta3",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_storyline.git",
+                "reference": "8.x-1.0-beta3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_storyline-8.x-1.0-beta3.zip",
+                "reference": "8.x-1.0-beta3",
+                "shasum": "74ec37a2c9ab30cb28cf7fcf0eae684774f3cb81"
+            },
+            "require": {
+                "drupal/config_actions": "*",
+                "drupal/core": "*",
+                "drupal/drutopia_core": "^1.0-beta1",
+                "drupal/drutopia_page": "^1.0-beta2",
+                "drupal/entity_reference_revisions": "*",
+                "drupal/field_group": "^3.0-beta1",
+                "drupal/paragraphs": "*"
+            },
+            "require-dev": {
+                "drupal/drutopia_page": "*",
+                "drupal/entity_reference_revisions": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta3",
+                    "datestamp": "1559239684",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
+                }
+            ],
+            "description": "Provides storyline paragraphs and an accompanying module to add a storyline to a basic page so that you can provide a simple chronology or story in a timeline format.",
+            "homepage": "https://gitlab.com/drutopia/drutopia_storyline",
+            "keywords": [
+                "chronology",
+                "content",
+                "drutopia",
+                "storyline",
+                "timeline"
+            ],
+            "support": {
+                "source": "https://gitlab.com/drutopia/drutopia_storyline/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_storyline/issues"
+            }
+        },
+        {
+            "name": "drupal/drutopia_user",
+            "version": "1.0.0-beta1",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/drutopia_user.git",
+                "reference": "8.x-1.0-beta1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/drutopia_user-8.x-1.0-beta1.zip",
+                "reference": "8.x-1.0-beta1",
+                "shasum": "22cdfd25ada1b3f3e50943451465b34c8e5174dc"
+            },
+            "require": {
+                "drupal/core": "*"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev",
+                    "dev-8.x-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta1",
+                    "datestamp": "1540936681",
+                    "security-coverage": {
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
+                },
+                {
+                    "name": "drutopia_gitlab",
+                    "homepage": "https://www.drupal.org/user/3514271"
+                },
+                {
+                    "name": "mlncn",
+                    "homepage": "https://www.drupal.org/user/64383"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "ronaldmulero",
+                    "homepage": "https://www.drupal.org/user/241652"
+                },
+                {
+                    "name": "rosemarymann",
+                    "homepage": "https://www.drupal.org/user/837536"
                 }
             ],
             "description": "Drutopia user is a base feature providing user-related configuration.",
-            "homepage": "https://git.drupalcode.org/project/drutopia_user",
+            "homepage": "https://gitlab.com/drutopia/drutopia_user",
             "keywords": [
                 "drutopia",
                 "people",
@@ -7760,45 +5458,51 @@
                 "users"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/drutopia_user/-/tree/2.0.x",
-                "issues": "https://www.drupal.org/project/issues/drutopia_user"
+                "source": "https://gitlab.com/drutopia/drutopia_user/tree/8.x-1.x",
+                "issues": "https://gitlab.com/drutopia/drutopia_user/issues"
             }
         },
         {
             "name": "drupal/ds",
-            "version": "3.30.0",
+            "version": "3.4.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/ds.git",
-                "reference": "8.x-3.30"
+                "reference": "8.x-3.4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.30.zip",
-                "reference": "8.x-3.30",
-                "shasum": "9022852edfbb540726338b018915c4d7fedfd989"
+                "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.4.zip",
+                "reference": "8.x-3.4",
+                "shasum": "ebf070ba2f7cf78a62cf74678a9948546a93e773"
             },
             "require": {
-                "drupal/core": "^10.2 || ^11"
+                "drupal/core": "^8.6"
             },
             "require-dev": {
-                "drupal/devel": "5.x-dev",
-                "drupal/field_group": "3.x-dev"
+                "drupal/devel": "*",
+                "drupal/field_group": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-3.30",
-                    "datestamp": "1746467919",
+                    "version": "8.x-3.4",
+                    "datestamp": "1567165687",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
+                },
+                "patches_applied": {
+                    "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/parent_profile_template-2895316-3.patch"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -7834,543 +5538,44 @@
                 "irc": "irc://irc.freenode.org/drupal-contribute"
             }
         },
-        {
-            "name": "drupal/dynamic_entity_reference",
-            "version": "3.2.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git",
-                "reference": "3.2.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.1.zip",
-                "reference": "3.2.1",
-                "shasum": "051c565f6580f512cbc7ddc3f49fdd6ba8d406af"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11",
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "drupal/diff": "*",
-                "mglaman/phpstan-drupal": "^1.1",
-                "phpstan/phpstan": "^1.1",
-                "phpstan/phpstan-deprecation-rules": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.2.1",
-                    "datestamp": "1740521060",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Lee Rowlands",
-                    "homepage": "https://www.drupal.org/u/larowlan",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Jibran Ijaz",
-                    "homepage": "https://www.drupal.org/u/jibran",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "larowlan",
-                    "homepage": "https://www.drupal.org/user/395439"
-                }
-            ],
-            "description": "Provides a field that allows an entity-reference field to reference more than one entity type.",
-            "homepage": "http://drupal.org/project/dynamic_entity_reference",
-            "support": {
-                "source": "http://cgit.drupalcode.org/dynamic_entity_reference",
-                "issues": "http://drupal.org/project/dynamic_entity_reference",
-                "irc": "irc://irc.freenode.org/drupal-contribute"
-            }
-        },
-        {
-            "name": "drupal/easy_breadcrumb",
-            "version": "2.0.9",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/easy_breadcrumb.git",
-                "reference": "2.0.9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.9.zip",
-                "reference": "2.0.9",
-                "shasum": "9e7c33e2ec0637d37d509776795a476f2f2d9bb8"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.9",
-                    "datestamp": "1732752214",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Neslee Canil Pinto",
-                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Greg Boggs",
-                    "homepage": "https://www.drupal.org/u/greg-boggs",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "diamondsea",
-                    "homepage": "https://www.drupal.org/user/430714"
-                },
-                {
-                    "name": "greg boggs",
-                    "homepage": "https://www.drupal.org/user/153069"
-                },
-                {
-                    "name": "hmartens",
-                    "homepage": "https://www.drupal.org/user/622826"
-                },
-                {
-                    "name": "loopduplicate",
-                    "homepage": "https://www.drupal.org/user/717290"
-                },
-                {
-                    "name": "neslee canil pinto",
-                    "homepage": "https://www.drupal.org/user/3580850"
-                },
-                {
-                    "name": "nickdickinsonwilde",
-                    "homepage": "https://www.drupal.org/user/3094661"
-                },
-                {
-                    "name": "rakesh.gectcr",
-                    "homepage": "https://www.drupal.org/user/1177822"
-                },
-                {
-                    "name": "renatog",
-                    "homepage": "https://www.drupal.org/user/3326031"
-                },
-                {
-                    "name": "sonemonu",
-                    "homepage": "https://www.drupal.org/user/1667988"
-                },
-                {
-                    "name": "spuky",
-                    "homepage": "https://www.drupal.org/user/209353"
-                },
-                {
-                    "name": "tatarbj",
-                    "homepage": "https://www.drupal.org/user/649590"
-                }
-            ],
-            "description": "Adds configuration to the system breadcrumbs.",
-            "homepage": "https://www.drupal.org/project/easy_breadcrumb",
-            "support": {
-                "source": "https://git.drupalcode.org/project/easy_breadcrumb",
-                "issues": "https://www.drupal.org/project/issues/easy_breadcrumb"
-            }
-        },
-        {
-            "name": "drupal/eca",
-            "version": "1.1.12",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/eca.git",
-                "reference": "1.1.12"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/eca-1.1.12.zip",
-                "reference": "1.1.12",
-                "shasum": "90e7cf7d15b384be2f145f0f3ce28a73ae4ad102"
-            },
-            "require": {
-                "dragonmantank/cron-expression": "^3.1",
-                "drupal/core": "^9.5 || ^10",
-                "ext-dom": "*",
-                "ext-json": "*",
-                "mtownsend/xml-to-array": "^2.0",
-                "php": ">=7.4"
-            },
-            "require-dev": {
-                "drupal/eca_ui": "*",
-                "drupal/token": "^1.10"
-            },
-            "suggest": {
-                "drupal/context_stack": "Integrates ECA with Context Stacks for more fine-grained control",
-                "drupal/eca_state_machine": "Integrates ECA with State Machine functionality",
-                "drupal/eca_tamper": "Integrates ECA with the Tamper API",
-                "drupal/entity_share": "Integrates ECA with Entity Share functionality",
-                "drupal/group_action": "Integrates ECA with Group Actions if you're using groups",
-                "drupal/token": "Provides the token browser in the UI and offers more token values"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.12",
-                    "datestamp": "1744218137",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9 || ^10 || ^11"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "boromino",
-                    "homepage": "https://www.drupal.org/user/859722"
-                },
-                {
-                    "name": "danielspeicher",
-                    "homepage": "https://www.drupal.org/user/3621778"
-                },
-                {
-                    "name": "jurgenhaas",
-                    "homepage": "https://www.drupal.org/user/168924"
-                }
-            ],
-            "description": "Event, Conditions, Actions - powerful, versatile, and user-friendly rules engine for Drupal",
-            "homepage": "https://www.drupal.org/project/eca",
-            "support": {
-                "source": "https://drupal.org/project/eca",
-                "issues": "https://drupal.org/project/issues/eca"
-            }
-        },
-        {
-            "name": "drupal/eca_context",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/eca_context.git",
-                "reference": "1.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/eca_context-1.0.0.zip",
-                "reference": "1.0.0",
-                "shasum": "5f5efd8c389b013cec26a476fad89cceb8f42f17"
-            },
-            "require": {
-                "drupal/context_stack": "^1.0",
-                "drupal/core": "^9 || ^10",
-                "drupal/eca": "^1.0",
-                "php": ">=7.4"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.0.0",
-                    "datestamp": "1659336697",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "mxh",
-                    "homepage": "https://www.drupal.org/user/1124384"
-                }
-            ],
-            "description": "A Drupal module which provides a context stack for ECA.",
-            "homepage": "https://www.drupal.org/project/eca_context",
-            "support": {
-                "source": "https://drupal.org/project/eca_context",
-                "issues": "https://drupal.org/project/issues/eca_context"
-            }
-        },
-        {
-            "name": "drupal/eca_modeller_bpmn",
-            "version": "1.1.12",
-            "require": {
-                "drupal/core": "^9 || ^10",
-                "drupal/eca": "^1",
-                "drupal/eca_ui": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.12",
-                    "datestamp": "1744218137",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "boromino",
-                    "homepage": "https://www.drupal.org/user/859722"
-                },
-                {
-                    "name": "danielspeicher",
-                    "homepage": "https://www.drupal.org/user/3621778"
-                },
-                {
-                    "name": "jurgenhaas",
-                    "homepage": "https://www.drupal.org/user/168924"
-                }
-            ],
-            "description": "Common functionality for all BPMN based modeller implementations.",
-            "homepage": "https://www.drupal.org/project/eca",
-            "support": {
-                "source": "https://git.drupalcode.org/project/eca"
-            }
-        },
-        {
-            "name": "drupal/eca_ui",
-            "version": "2.1.7",
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/eca": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.7",
-                    "datestamp": "1744222322",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "boromino",
-                    "homepage": "https://www.drupal.org/user/859722"
-                },
-                {
-                    "name": "danielspeicher",
-                    "homepage": "https://www.drupal.org/user/3621778"
-                },
-                {
-                    "name": "jurgenhaas",
-                    "homepage": "https://www.drupal.org/user/168924"
-                }
-            ],
-            "description": "Provides a user interface for managing ECA models.",
-            "homepage": "https://www.drupal.org/project/eca",
-            "support": {
-                "source": "https://git.drupalcode.org/project/eca"
-            }
-        },
-        {
-            "name": "drupal/editor_advanced_link",
-            "version": "2.2.6",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/editor_advanced_link.git",
-                "reference": "2.2.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.2.6.zip",
-                "reference": "2.2.6",
-                "shasum": "f6d7c437900f288b1e735b4faf2decc99bdd30e8"
-            },
-            "require": {
-                "drupal/core": "^10.2 || ^11.0"
-            },
-            "require-dev": {
-                "drupal/ckeditor": "*",
-                "phpro/grumphp": "^2.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.2.6",
-                    "datestamp": "1723183019",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "duaelfr",
-                    "homepage": "https://www.drupal.org/user/931394"
-                },
-                {
-                    "name": "vladimiraus",
-                    "homepage": "https://www.drupal.org/user/673120"
-                }
-            ],
-            "description": "Editor Advanced link",
-            "homepage": "https://www.drupal.org/project/editor_advanced_link",
-            "support": {
-                "source": "https://git.drupalcode.org/project/editor_advanced_link"
-            }
-        },
-        {
-            "name": "drupal/editoria11y",
-            "version": "2.2.8",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/editoria11y.git",
-                "reference": "2.2.8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/editoria11y-2.2.8.zip",
-                "reference": "2.2.8",
-                "shasum": "a3d0b016131140c276822ffef128b267c640a4d2"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "conflict": {
-                "drupal/csp": "<1.24"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.2.8",
-                    "datestamp": "1746713863",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "John Jameson",
-                    "homepage": "https://www.drupal.org/u/itmaybejj",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Brian Osborne",
-                    "homepage": "https://www.drupal.org/u/bkosborne",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Jason Partyka",
-                    "homepage": "https://www.drupal.org/u/partyka",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "See other contributors",
-                    "homepage": "https://www.drupal.org/node/3187132/committers",
-                    "role": "contributor"
-                }
-            ],
-            "description": "Editoria11y (\"editorial accessibility\") is a user-friendly accessibility checker.",
-            "homepage": "https://drupal.org/project/editoria11y",
-            "support": {
-                "source": "https://git.drupalcode.org/project/editoria11y",
-                "issues": "https://drupal.org/project/issues/editoria11y"
-            }
-        },
-        {
-            "name": "drupal/empty_page",
-            "version": "dev-8.x-1.x",
-            "source": {
-                "type": "git",
-                "url": "git@git.drupal.org:issue/empty_page-3287186.git",
-                "reference": "cb8e4a1b3c7d4b45d8e4c8c470413022ca616fab"
-            },
-            "type": "drupal-module",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "description": "A simple empty page solution. Assists in creating empty menu callbacks mostly used for pages that only consist of blocks.",
-            "homepage": "https://www.drupal.org/project/empty_page",
-            "support": {
-                "issues": "https://www.drupal.org/project/issues/empty_page",
-                "source": "https://git.drupalcode.org/project/empty_page"
-            },
-            "time": "2024-10-22T10:44:11+00:00"
-        },
         {
             "name": "drupal/entity",
-            "version": "1.6.0",
+            "version": "1.0.0-rc3",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/entity.git",
-                "reference": "8.x-1.6"
+                "reference": "8.x-1.0-rc3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.6.zip",
-                "reference": "8.x-1.6",
-                "shasum": "dfb214fd45bd6ad79604d23a39a96b3d4c38f8e1"
+                "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
+                "reference": "8.x-1.0-rc3",
+                "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
             },
             "require": {
-                "drupal/core": "^10.1 || ^11"
+                "drupal/core": "^8.6"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.6",
-                    "datestamp": "1740006812",
+                    "version": "8.x-1.0-rc3",
+                    "datestamp": "1559579884",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "RC releases are not covered by Drupal security advisories."
                     }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
-                    "name": "berdir",
+                    "name": "Berdir",
                     "homepage": "https://www.drupal.org/user/214652"
                 },
                 {
@@ -8388,126 +5593,49 @@
                 {
                     "name": "fago",
                     "homepage": "https://www.drupal.org/user/16747"
-                },
-                {
-                    "name": "mglaman",
-                    "homepage": "https://www.drupal.org/user/2416470"
-                },
-                {
-                    "name": "tr",
-                    "homepage": "https://www.drupal.org/user/202830"
                 }
             ],
             "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
-            "homepage": "https://www.drupal.org/project/entity",
+            "homepage": "http://drupal.org/project/entity",
             "support": {
-                "source": "https://git.drupalcode.org/project/entity",
-                "issues": "https://www.drupal.org/project/issues/entity"
-            }
-        },
-        {
-            "name": "drupal/entity_reference_override",
-            "version": "2.0.0-beta4",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/entity_reference_override.git",
-                "reference": "2.0.0-beta4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta4.zip",
-                "reference": "2.0.0-beta4",
-                "shasum": "14a223de91d34bfdc52f0ad73f84825c47e2a2e9"
-            },
-            "require": {
-                "drupal/core": "^10.1 || ^11"
-            },
-            "require-dev": {
-                "drupal/entity_browser": "*",
-                "drupal/entity_reference_revisions": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0-beta4",
-                    "datestamp": "1744343662",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Beta releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "alexpott",
-                    "homepage": "https://www.drupal.org/user/157725"
-                },
-                {
-                    "name": "dawehner",
-                    "homepage": "https://www.drupal.org/user/99340"
-                },
-                {
-                    "name": "eaton",
-                    "homepage": "https://www.drupal.org/user/16496"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ultimike",
-                    "homepage": "https://www.drupal.org/user/51132"
-                }
-            ],
-            "description": "Entity reference with overridable title",
-            "homepage": "https://www.drupal.org/project/entity_reference_override",
-            "support": {
-                "source": "https://git.drupalcode.org/project/entity_reference_override",
-                "error": "funding.opencollective : should be an array, string given"
+                "source": "https://git.drupalcode.org/project/entity"
             }
         },
         {
             "name": "drupal/entity_reference_revisions",
-            "version": "1.12.0",
+            "version": "1.6.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
-                "reference": "8.x-1.12"
+                "reference": "8.x-1.6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
-                "reference": "8.x-1.12",
-                "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
+                "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.6.zip",
+                "reference": "8.x-1.6",
+                "shasum": "82d515de04d3a75fb677ed82241a6aff3f54ab47"
             },
             "require": {
-                "drupal/core": "^9 || ^10 || ^11"
+                "drupal/core": "~8.0"
             },
             "require-dev": {
-                "drupal/diff": "^1 || ^2"
+                "drupal/diff": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.12",
-                    "datestamp": "1722804497",
+                    "version": "8.x-1.6",
+                    "datestamp": "1539588781",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
                 },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9 || ^10 || ^11"
-                    }
+                "patches_applied": {
+                    "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -8516,7 +5644,7 @@
             ],
             "authors": [
                 {
-                    "name": "berdir",
+                    "name": "Berdir",
                     "homepage": "https://www.drupal.org/user/214652"
                 },
                 {
@@ -8532,151 +5660,37 @@
                     "homepage": "https://www.drupal.org/user/227761"
                 }
             ],
-            "description": "Entity Reference Revisions",
+            "description": "Adds a Entity Reference field type with revision support.",
             "homepage": "https://www.drupal.org/project/entity_reference_revisions",
             "support": {
                 "source": "https://git.drupalcode.org/project/entity_reference_revisions"
             }
         },
-        {
-            "name": "drupal/entitygroupfield",
-            "version": "2.0.0-alpha1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/entitygroupfield.git",
-                "reference": "2.0.0-alpha1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/entitygroupfield-2.0.0-alpha1.zip",
-                "reference": "2.0.0-alpha1",
-                "shasum": "8a652543ba7cf587d023c8e4e8652592691b3565"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10",
-                "drupal/group": "^2.0 || ^3.0"
-            },
-            "require-dev": {
-                "drupal/variationcache": "~1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0-alpha1",
-                    "datestamp": "1687130173",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Derek Wright",
-                    "homepage": "https://www.drupal.org/u/dww",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Ivan Duarte",
-                    "homepage": "https://www.drupal.org/u/jidrone",
-                    "role": "Co-Maintainer"
-                }
-            ],
-            "description": "Defines a field to view and edit the groups associated with content.",
-            "homepage": "http://drupal.org/project/entitygroupfield",
-            "support": {
-                "source": "https://git.drupalcode.org/project/entitygroupfield",
-                "issues": "https://drupal.org/project/issues/entitygroupfield"
-            }
-        },
-        {
-            "name": "drupal/environment_indicator",
-            "version": "4.0.21",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/environment_indicator.git",
-                "reference": "4.0.21"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.21.zip",
-                "reference": "4.0.21",
-                "shasum": "e4d4de7060fb10156c44d27a3b9ec80929eb17b3"
-            },
-            "require": {
-                "drupal/core": "^9.3 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.21",
-                    "datestamp": "1734428244",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mateu Aguiló Bosch",
-                    "homepage": "https://www.drupal.org/user/550110",
-                    "email": "mateu@mateuaguilo.com"
-                },
-                {
-                    "name": "Ignacio Sánchez",
-                    "homepage": "https://www.drupal.org/user/733162",
-                    "email": "nacho@isholgueras.com"
-                },
-                {
-                    "name": "lullabot",
-                    "homepage": "https://www.drupal.org/user/3815489"
-                },
-                {
-                    "name": "mrfelton",
-                    "homepage": "https://www.drupal.org/user/305669"
-                },
-                {
-                    "name": "trackleft2",
-                    "homepage": "https://www.drupal.org/user/2860655"
-                }
-            ],
-            "description": "Environment Indicator adds some visual cuest to indicate which copy of the site are you interacting with",
-            "homepage": "https://www.drupal.org/project/environment_indicator",
-            "support": {
-                "source": "https://git.drupalcode.org/project/environment_indicator"
-            }
-        },
         {
             "name": "drupal/eu_cookie_compliance",
-            "version": "1.25.0",
+            "version": "1.8.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git",
-                "reference": "8.x-1.25"
+                "reference": "8.x-1.8"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.25.zip",
-                "reference": "8.x-1.25",
-                "shasum": "13797a009ba899db0d9bd9a5c5ad0eb4b2bedfb1"
+                "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.8.zip",
+                "reference": "8.x-1.8",
+                "shasum": "f4b5c48d0d4347c414b91eaa59acad88707b5907"
             },
             "require": {
-                "drupal/core": "^8.9 || ^9 || ^10 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.25",
-                    "datestamp": "1728547905",
+                    "version": "8.x-1.8",
+                    "datestamp": "1563997086",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -8685,7 +5699,7 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -8698,14 +5712,37 @@
                     "homepage": "https://www.drupal.org/u/svenryen",
                     "role": "Maintainer"
                 },
-                {
-                    "name": "Neslee Canil Pinto",
-                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
-                    "role": "Maintainer"
-                },
                 {
                     "name": "See other contributors",
                     "homepage": "https://www.drupal.org/node/1538032/committers"
+                },
+                {
+                    "name": "dakku",
+                    "homepage": "https://www.drupal.org/user/97634"
+                },
+                {
+                    "name": "grzegorz.bartman",
+                    "homepage": "https://www.drupal.org/user/363120"
+                },
+                {
+                    "name": "id.tornado",
+                    "homepage": "https://www.drupal.org/user/2754049"
+                },
+                {
+                    "name": "killua99",
+                    "homepage": "https://www.drupal.org/user/699418"
+                },
+                {
+                    "name": "mibfire",
+                    "homepage": "https://www.drupal.org/user/155136"
+                },
+                {
+                    "name": "naveenvalecha",
+                    "homepage": "https://www.drupal.org/user/2665733"
+                },
+                {
+                    "name": "svenryen",
+                    "homepage": "https://www.drupal.org/user/667244"
                 }
             ],
             "description": "This module aims at making the website compliant with the new EU cookie regulation.",
@@ -8717,101 +5754,41 @@
                 "GDPR"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/eu-cookie-compliance",
-                "docs": "https://www.drupal.org/docs/contributed-modules/eu-cookie-compliance",
+                "source": "https://cgit.drupalcode.org/eu-cookie-compliance",
+                "docs": "https://www.drupal.org/project/eu_cookie_compliance",
                 "forum": "https://drupal.stackexchange.com/search?q=eu+cookie+compliance",
                 "issues": "https://www.drupal.org/project/issues/eu_cookie_compliance?version=8.x",
-                "slack": "https://app.slack.com/client/T06GX3JTS/C012XBTH81E"
-            }
-        },
-        {
-            "name": "drupal/eva",
-            "version": "3.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/eva.git",
-                "reference": "3.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/eva-3.1.1.zip",
-                "reference": "3.1.1",
-                "shasum": "11df2285cc479033637b9aac2fe65f681e5ed38b"
-            },
-            "require": {
-                "drupal/core": "^9.5.11 || ^10 || ^11"
-            },
-            "suggest": {
-                "drupal/token": "Enable the argument token browser"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.1.1",
-                    "datestamp": "1732295600",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ahebrank",
-                    "homepage": "https://www.drupal.org/user/3190515"
-                },
-                {
-                    "name": "Crell",
-                    "homepage": "https://www.drupal.org/user/26398"
-                },
-                {
-                    "name": "eaton",
-                    "homepage": "https://www.drupal.org/user/16496"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                },
-                {
-                    "name": "mkadin",
-                    "homepage": "https://www.drupal.org/user/1093166"
-                }
-            ],
-            "description": "Attach a view to an entity",
-            "homepage": "https://www.drupal.org/project/eva",
-            "support": {
-                "source": "https://git.drupalcode.org/project/eva"
+                "irc": "irc://irc.freenode.org/drupal-contribute"
             }
         },
         {
             "name": "drupal/exclude_node_title",
-            "version": "1.4.0",
+            "version": "1.0.0-beta1",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/exclude_node_title.git",
-                "reference": "8.x-1.4"
+                "reference": "8.x-1.0-beta1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.4.zip",
-                "reference": "8.x-1.4",
-                "shasum": "c6f6c0e06c202f3ace436867a459f8672e1494f5"
+                "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.0-beta1.zip",
+                "reference": "8.x-1.0-beta1",
+                "shasum": "04b307c90c71285f421f8727d5ba8fd84b3df066"
             },
             "require": {
-                "drupal/core": "^8 || ^9 || ^10"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.4",
-                    "datestamp": "1659271679",
+                    "version": "8.x-1.0-beta1",
+                    "datestamp": "1452548339",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Beta releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -8821,232 +5798,63 @@
             ],
             "authors": [
                 {
-                    "name": "Neslee Canil Pinto",
-                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
-                    "role": "Maintainer"
+                    "name": "fizk",
+                    "homepage": "https://www.drupal.org/user/473174"
                 },
                 {
                     "name": "gabrielu",
                     "homepage": "https://www.drupal.org/user/279352"
                 },
                 {
-                    "name": "neslee canil pinto",
-                    "homepage": "https://www.drupal.org/user/3580850"
+                    "name": "id.tarzanych",
+                    "homepage": "https://www.drupal.org/user/2776543"
                 },
                 {
-                    "name": "smustgrave",
-                    "homepage": "https://www.drupal.org/user/3252890"
+                    "name": "jordanpagewhite",
+                    "homepage": "https://www.drupal.org/user/3162067"
                 }
             ],
-            "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.",
+            "description": "Excludes a node title from display. It provides a checkbox on node-edit pages for easier exclusion. You can also exclude title display from teaser pages.",
             "homepage": "https://www.drupal.org/project/exclude_node_title",
             "support": {
-                "source": "https://git.drupalcode.org/project/exclude_node_title",
-                "issues": "https://www.drupal.org/project/issues/exclude_node_title"
-            }
-        },
-        {
-            "name": "drupal/exif_orientation",
-            "version": "1.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/exif_orientation.git",
-                "reference": "8.x-1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/exif_orientation-8.x-1.5.zip",
-                "reference": "8.x-1.5",
-                "shasum": "9e5a9d06f974835ea7eee2da64a4b073099b6639"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.5",
-                    "datestamp": "1732132295",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "heddn",
-                    "homepage": "https://www.drupal.org/user/1463982"
-                },
-                {
-                    "name": "mglaman",
-                    "homepage": "https://www.drupal.org/user/2416470"
-                },
-                {
-                    "name": "nickdickinsonwilde",
-                    "homepage": "https://www.drupal.org/user/3094661"
-                }
-            ],
-            "description": "Rotates images per their EXIF Orientation",
-            "homepage": "https://www.drupal.org/project/exif_orientation",
-            "support": {
-                "source": "https://git.drupalcode.org/project/exif_orientation"
-            }
-        },
-        {
-            "name": "drupal/facet_bot_blocker",
-            "version": "1.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/facet_bot_blocker.git",
-                "reference": "1.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/facet_bot_blocker-1.0.1.zip",
-                "reference": "1.0.1",
-                "shasum": "59c852972cbb804d5f63c4bc0f4542a56c333b4a"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.0.1",
-                    "datestamp": "1744231176",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Project has not opted into security advisory coverage!"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bburg",
-                    "homepage": "https://www.drupal.org/user/1867900"
-                }
-            ],
-            "description": "Block requests for excessive faceted search URLs.",
-            "homepage": "https://www.drupal.org/project/facet_bot_blocker",
-            "support": {
-                "source": "https://git.drupalcode.org/project/facet_bot_blocker"
+                "source": "https://git.drupalcode.org/project/exclude_node_title"
             }
         },
         {
             "name": "drupal/facets",
-            "version": "dev-3.0.x",
+            "version": "1.4.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/facets.git",
-                "reference": "3a5dd4df8d7b16d150fe5a2f7370f133a93a4fe4"
+                "reference": "8.x-1.4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.4.zip",
+                "reference": "8.x-1.4",
+                "shasum": "ee2d584b8a225ab981e313f6050e13bc9c98e40b"
             },
             "require": {
-                "drupal/core": "^10.1 || ^11"
-            },
-            "conflict": {
-                "drupal/core": "<10.1.0",
-                "drupal/search_api": "<1.14"
+                "drupal/core": "~8.0"
             },
             "require-dev": {
-                "drupal/better_exposed_filters": "~7.0",
-                "drupal/default_content": "*",
-                "drupal/facets_exposed_filters": "*",
-                "drupal/jquery_ui_slider": "~2.1",
-                "drupal/jquery_ui_touch_punch": "~1.1",
-                "drupal/search_api": "1.x-dev",
-                "drupal/search_api_db": "*",
-                "drupal/views_ajax_history": "*",
-                "drupal/views_filters_summary": "*"
-            },
-            "suggest": {
-                "drupal/better_exposed_filters": "Required for AJAX support for facets rendered as views exposed filters",
-                "drupal/jquery_ui_slider": "Required for the 'Facets Range Widget' module to work",
-                "drupal/jquery_ui_touch_punch": "Required for the 'Facets Range Widget' module to work"
+                "drupal/search_api": "~1.5"
             },
             "type": "drupal-module",
             "extra": {
                 "branch-alias": {
-                    "dev-3.0.x": "3.0.x-dev"
+                    "dev-1.x": "1.x-dev"
                 },
                 "drupal": {
-                    "version": "3.0.0+7-dev",
-                    "datestamp": "1741877379",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "See all contributors",
-                    "homepage": "https://www.drupal.org/node/2348769/committers"
-                },
-                {
-                    "name": "drunken monkey",
-                    "homepage": "https://www.drupal.org/user/205582"
-                },
-                {
-                    "name": "mkalkbrenner",
-                    "homepage": "https://www.drupal.org/user/124705"
-                },
-                {
-                    "name": "nick_vh",
-                    "homepage": "https://www.drupal.org/user/122682"
-                },
-                {
-                    "name": "strykaizer",
-                    "homepage": "https://www.drupal.org/user/462700"
-                }
-            ],
-            "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.",
-            "homepage": "https://www.drupal.org/project/facets",
-            "support": {
-                "source": "https://git.drupalcode.org/project/facets.git",
-                "issues": "https://www.drupal.org/project/issues/facets",
-                "irc": "irc://irc.freenode.org/drupal-search-api"
-            }
-        },
-        {
-            "name": "drupal/fakeobjects",
-            "version": "2.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/fakeobjects.git",
-                "reference": "2.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/fakeobjects-2.0.1.zip",
-                "reference": "2.0.1",
-                "shasum": "a11cac7fa7fd2d511048ba0ff3d18321e767b296"
-            },
-            "require": {
-                "drupal-ckeditor-libraries-group/fakeobjects": "^4.5.11",
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.1",
-                    "datestamp": "1740094419",
+                    "version": "8.x-1.4",
+                    "datestamp": "1556645881",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
+                },
+                "patches_applied": {
+                    "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -9055,52 +5863,51 @@
             ],
             "authors": [
                 {
-                    "name": "Kevin Quillen (kevinquillen)",
-                    "homepage": "https://www.drupal.org/u/kevinquillen",
-                    "role": "Maintainer"
+                    "name": "See all contributors",
+                    "homepage": "https://www.drupal.org/node/2348769/committers"
                 },
                 {
-                    "name": "kevinquillen",
-                    "homepage": "https://www.drupal.org/user/317279"
+                    "name": "StryKaizer",
+                    "homepage": "https://www.drupal.org/user/462700"
                 },
                 {
-                    "name": "xmacinfo",
-                    "homepage": "https://www.drupal.org/user/12131"
+                    "name": "borisson_",
+                    "homepage": "https://www.drupal.org/user/2393360"
                 }
             ],
-            "description": "Adds the FakeObjects plugin to CKEditor. This plugin is a utility plugin that is required by certain user-facing CKEditor plugins.",
-            "homepage": "http://drupal.org/project/fakeobjects",
-            "keywords": [
-                "Drupal"
-            ],
+            "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.",
+            "homepage": "https://www.drupal.org/project/facets",
             "support": {
-                "source": "http://cgit.drupalcode.org/fakeobjects",
-                "issues": "http://drupal.org/project/issues/fakeobjects"
+                "source": "git://git.drupal.org/project/facets.git",
+                "issues": "https://www.drupal.org/project/issues/facets",
+                "irc": "irc://irc.freenode.org/drupal-search-api"
             }
         },
         {
             "name": "drupal/faqfield",
-            "version": "7.1.0",
+            "version": "1.1.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/faqfield.git",
-                "reference": "8.x-7.1"
+                "reference": "8.x-1.1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-7.1.zip",
-                "reference": "8.x-7.1",
-                "shasum": "c602e57dc07926bc5a263f56ee36ba7afa8dd574"
+                "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-1.1.zip",
+                "reference": "8.x-1.1",
+                "shasum": "61aeccae9ebf2347567df1a891772e88e9452aa6"
             },
             "require": {
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/jquery_ui_accordion": "^2.0"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-7.1",
-                    "datestamp": "1678202291",
+                    "version": "8.x-1.1",
+                    "datestamp": "1519216085",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -9121,10 +5928,6 @@
                     "name": "Kevin Quillen (kevinquillen)",
                     "homepage": "https://www.drupal.org/u/kevinquillen",
                     "role": "Maintainer"
-                },
-                {
-                    "name": "pifagor",
-                    "homepage": "https://www.drupal.org/user/2375692"
                 }
             ],
             "description": "This module provides a field for frequently asked questions.",
@@ -9139,27 +5942,30 @@
         },
         {
             "name": "drupal/features",
-            "version": "3.14.0",
+            "version": "3.8.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/features.git",
-                "reference": "8.x-3.14"
+                "reference": "8.x-3.8"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/features-8.x-3.14.zip",
-                "reference": "8.x-3.14",
-                "shasum": "fff0bb2d133c524ddb326422eba625c55585232c"
+                "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
+                "reference": "8.x-3.8",
+                "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
             },
             "require": {
-                "drupal/config_update": "^1.4 || ^2",
-                "drupal/core": "^9.4 || ^10"
+                "drupal/config_update": "^1.4",
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-3.14",
-                    "datestamp": "1702059191",
+                    "version": "8.x-3.8",
+                    "datestamp": "1536512284",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -9167,27 +5973,19 @@
                 },
                 "drush": {
                     "services": {
-                        "drush.services.yml": "^10 || ^11"
+                        "drush.services.yml": "^9"
                     }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
-                {
-                    "name": "Dave Reid",
-                    "homepage": "https://www.drupal.org/user/53892"
-                },
                 {
                     "name": "dawehner",
                     "homepage": "https://www.drupal.org/user/99340"
                 },
-                {
-                    "name": "donquixote",
-                    "homepage": "https://www.drupal.org/user/459338"
-                },
                 {
                     "name": "e2thex",
                     "homepage": "https://www.drupal.org/user/189123"
@@ -9196,10 +5994,6 @@
                     "name": "febbraro",
                     "homepage": "https://www.drupal.org/user/43670"
                 },
-                {
-                    "name": "flocondetoile",
-                    "homepage": "https://www.drupal.org/user/2006064"
-                },
                 {
                     "name": "jmiccolis",
                     "homepage": "https://www.drupal.org/user/31731"
@@ -9208,13 +6002,17 @@
                     "name": "joseph.olstad",
                     "homepage": "https://www.drupal.org/user/1321830"
                 },
-                {
-                    "name": "matthand",
-                    "homepage": "https://www.drupal.org/user/171527"
-                },
                 {
                     "name": "mpotter",
                     "homepage": "https://www.drupal.org/user/616192"
+                },
+                {
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
+                },
+                {
+                    "name": "tim.plunkett",
+                    "homepage": "https://www.drupal.org/user/241634"
                 }
             ],
             "description": "Enables administrators to package configuration into modules",
@@ -9223,233 +6021,99 @@
                 "source": "https://git.drupalcode.org/project/features"
             }
         },
-        {
-            "name": "drupal/field_defaults",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/field_defaults.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/field_defaults-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "ca90ca6814ff05457ec8ec0be6a976b0315c28a4"
-            },
-            "require": {
-                "drupal/core": "^10.0 || ^11.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1745506968",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^11 || ^12"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "b_sharpe",
-                    "homepage": "https://www.drupal.org/user/2512258"
-                }
-            ],
-            "description": "Field Defaults allows batch updating of default field values to existing content.",
-            "homepage": "https://www.drupal.org/project/field_defaults",
-            "keywords": [
-                "Content",
-                "Drupal",
-                "Fields"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/field_defaults",
-                "issues": "https://www.drupal.org/project/issues/field_defaults"
-            }
-        },
-        {
-            "name": "drupal/field_formatter_class",
-            "version": "1.8.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/field_formatter_class.git",
-                "reference": "8.x-1.8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/field_formatter_class-8.x-1.8.zip",
-                "reference": "8.x-1.8",
-                "shasum": "66f39802ac8ef43f362b7e3530280f751788f169"
-            },
-            "require": {
-                "drupal/core": "^10.2 || ^11.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.8",
-                    "datestamp": "1724880268",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Andrew Macpherson",
-                    "homepage": "https://www.drupal.org/u/andrewmacpherson",
-                    "role": "maintainer"
-                },
-                {
-                    "name": "Oleksandr Dekhteruk",
-                    "homepage": "https://www.drupal.org/u/pifagor",
-                    "role": "maintainer"
-                },
-                {
-                    "name": "dave reid",
-                    "homepage": "https://www.drupal.org/user/53892"
-                },
-                {
-                    "name": "mfer",
-                    "homepage": "https://www.drupal.org/user/25701"
-                },
-                {
-                    "name": "pifagor",
-                    "homepage": "https://www.drupal.org/user/2375692"
-                }
-            ],
-            "description": "Provides custom HTML class settings for field formatters.",
-            "homepage": "https://www.drupal.org/project/field_formatter_class",
-            "support": {
-                "source": "https://git.drupalcode.org/project/field_formatter_class",
-                "issues": "https://www.drupal.org/project/issues/field_formatter_class"
-            }
-        },
         {
             "name": "drupal/field_group",
-            "version": "3.6.0",
+            "version": "3.0.0-rc1",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/field_group.git",
-                "reference": "8.x-3.6"
+                "reference": "8.x-3.0-rc1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
-                "reference": "8.x-3.6",
-                "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
+                "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
+                "reference": "8.x-3.0-rc1",
+                "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
             },
             "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/jquery_ui_accordion": "*"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-3.6",
-                    "datestamp": "1722672510",
+                    "version": "8.x-3.0-rc1",
+                    "datestamp": "1558647185",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "RC releases are not covered by Drupal security advisories."
                     }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
-                    "name": "anybody",
-                    "homepage": "https://www.drupal.org/user/291091"
-                },
-                {
-                    "name": "grevil",
-                    "homepage": "https://www.drupal.org/user/3668491"
-                },
-                {
-                    "name": "hydra",
+                    "name": "Hydra",
                     "homepage": "https://www.drupal.org/user/647364"
                 },
-                {
-                    "name": "joevagyok",
-                    "homepage": "https://www.drupal.org/user/2876343"
-                },
-                {
-                    "name": "jyve",
-                    "homepage": "https://www.drupal.org/user/591438"
-                },
-                {
-                    "name": "nils.destoop",
-                    "homepage": "https://www.drupal.org/user/361625"
-                },
                 {
                     "name": "Stalski",
                     "homepage": "https://www.drupal.org/user/322618"
                 },
+                {
+                    "name": "jyve",
+                    "homepage": "https://www.drupal.org/user/591438"
+                },
                 {
                     "name": "swentel",
                     "homepage": "https://www.drupal.org/user/107403"
+                },
+                {
+                    "name": "zuuperman",
+                    "homepage": "https://www.drupal.org/user/361625"
                 }
             ],
             "description": "Provides the field_group module.",
             "homepage": "https://www.drupal.org/project/field_group",
             "support": {
-                "source": "https://git.drupalcode.org/project/field_group",
-                "issues": "https://www.drupal.org/project/issues/field_group"
+                "source": "https://git.drupalcode.org/project/field_group"
             }
         },
         {
             "name": "drupal/field_token_value",
-            "version": "3.1.0",
+            "version": "1.0.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/field_token_value.git",
-                "reference": "3.1.0"
+                "reference": "8.x-1.0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/field_token_value-3.1.0.zip",
-                "reference": "3.1.0",
-                "shasum": "af17b023855bedf070e42a750fa60700b24be9af"
+                "url": "https://ftp.drupal.org/files/projects/field_token_value-8.x-1.0.zip",
+                "reference": "8.x-1.0",
+                "shasum": "ba0c70108ca09589b9fa2ecce4c7a7194cdca897"
             },
             "require": {
-                "drupal/core": "^10 || ^11",
-                "drupal/token": "^1.15",
-                "php": ">=8.1.0"
+                "drupal/core": "~8.0",
+                "drupal/token": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "3.1.0",
-                    "datestamp": "1740522009",
+                    "version": "8.x-1.0",
+                    "datestamp": "1503548344",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^10 || ^11"
-                    }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -9459,157 +6123,40 @@
             "authors": [
                 {
                     "name": "haydent",
-                    "homepage": "https://www.drupal.org/u/haydent"
+                    "homepage": "https://www.drupal.org/user/2763191"
                 }
             ],
-            "description": "Allows you to use a Views to display an entity or entities for an entity_reference field display.",
+            "description": "Provides a field allowing the value to be set using a string containing tokens.",
             "homepage": "https://www.drupal.org/project/field_token_value",
             "support": {
-                "source": "https://git.drupalcode.org/project/field_token_value",
-                "issues": "https://www.drupal.org/project/issues/field_token_value"
-            }
-        },
-        {
-            "name": "drupal/filter_perms",
-            "version": "1.0.0-alpha2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/filter_perms.git",
-                "reference": "8.x-1.0-alpha2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha2.zip",
-                "reference": "8.x-1.0-alpha2",
-                "shasum": "07e2047ea46cd76839522f04cab59a91b90abdb3"
-            },
-            "require": {
-                "drupal/core": "^9.0 || ^10.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0-alpha2",
-                    "datestamp": "1686873472",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "cyu",
-                    "homepage": "https://www.drupal.org/user/202205"
-                },
-                {
-                    "name": "deekayen",
-                    "homepage": "https://www.drupal.org/user/972"
-                },
-                {
-                    "name": "ivavictoria",
-                    "homepage": "https://www.drupal.org/user/3061533"
-                },
-                {
-                    "name": "justcaldwell",
-                    "homepage": "https://www.drupal.org/user/290069"
-                },
-                {
-                    "name": "mgbellaire",
-                    "homepage": "https://www.drupal.org/user/1831932"
-                },
-                {
-                    "name": "scott_euser",
-                    "homepage": "https://www.drupal.org/user/3267594"
-                },
-                {
-                    "name": "willzyx",
-                    "homepage": "https://www.drupal.org/user/1043862"
-                }
-            ],
-            "description": "Provides role and module filters to simplify the user permissions page.",
-            "homepage": "https://www.drupal.org/project/filter_perms",
-            "support": {
-                "source": "http://cgit.drupalcode.org/filter_perms",
-                "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
-            }
-        },
-        {
-            "name": "drupal/fitvids",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/fitvids.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/fitvids-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "9bdc84fb6a7c0f03f9172ac7cf2274ccf11ce127"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1729218906",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "DerekAhmedzai",
-                    "homepage": "https://www.drupal.org/user/167927"
-                },
-                {
-                    "name": "nickdickinsonwilde",
-                    "homepage": "https://www.drupal.org/user/3094661"
-                }
-            ],
-            "description": "Uses the FitVids.js library for fluid width video embeds.",
-            "homepage": "https://www.drupal.org/project/fitvids",
-            "support": {
-                "source": "https://git.drupalcode.org/project/fitvids",
-                "issues": "https://www.drupal.org/project/issues/fitvids"
+                "source": "https://git.drupalcode.org/project/field_token_value"
             }
         },
         {
             "name": "drupal/fixed_block_content",
-            "version": "1.4.0",
+            "version": "1.0.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/fixed_block_content.git",
-                "reference": "8.x-1.4"
+                "reference": "8.x-1.0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.4.zip",
-                "reference": "8.x-1.4",
-                "shasum": "bf5035846418156857bd94bc6139aea339a884bb"
+                "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.0.zip",
+                "reference": "8.x-1.0",
+                "shasum": "ebd2474259f45b738aa46a48b8f439de9b2f2bc7"
             },
             "require": {
-                "drupal/core": "^9 || ^10 || ^11",
-                "drupal/hal": "^1.0 || ^2.0"
+                "drupal/core": "~8"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.4",
-                    "datestamp": "1743628825",
+                    "version": "8.x-1.0",
+                    "datestamp": "1542482880",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -9637,86 +6184,35 @@
                 "issues": "https://drupal.org/project/issues/fixed_block_content"
             }
         },
-        {
-            "name": "drupal/flexible_permissions",
-            "version": "2.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/flexible_permissions.git",
-                "reference": "2.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/flexible_permissions-2.0.1.zip",
-                "reference": "2.0.1",
-                "shasum": "382ad20c674a6c07974d411e767310166851a0a8"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "require-dev": {
-                "jangregor/phpstan-prophecy": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.1",
-                    "datestamp": "1726835397",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Kristiaan Van den Eynde",
-                    "homepage": "https://www.drupal.org/u/kristiaanvandeneynde",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Mathias Wächter",
-                    "homepage": "https://www.drupal.org/u/mef",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "This module allows you to gather, calculate and cache permissions from a myriad of sources",
-            "homepage": "http://drupal.org/project/flexible_permissions",
-            "support": {
-                "source": "https://git.drupalcode.org/project/flexible_permissions",
-                "issues": "https://drupal.org/project/issues/flexible_permissions"
-            }
-        },
         {
             "name": "drupal/focal_point",
-            "version": "2.1.2",
+            "version": "1.0.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/focal_point.git",
-                "reference": "2.1.2"
+                "reference": "8.x-1.0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/focal_point-2.1.2.zip",
-                "reference": "2.1.2",
-                "shasum": "5f8ffadd37748506c8f00314b1d45c947eb27cf7"
+                "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.0.zip",
+                "reference": "8.x-1.0",
+                "shasum": "dec88d870aaa21e99984d6328ccf95b8120ee472"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10 || ^11",
-                "drupal/crop": "^2.3"
+                "drupal/core": "*",
+                "drupal/crop": "*"
             },
             "require-dev": {
                 "drupal/crop": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.1.2",
-                    "datestamp": "1731556344",
+                    "version": "8.x-1.0",
+                    "datestamp": "1553270584",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -9729,123 +6225,42 @@
             ],
             "authors": [
                 {
-                    "name": "Alexander Ross (bleen)",
-                    "homepage": "https://www.drupal.org/u/bleen",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "rajeshreeputra",
-                    "homepage": "https://www.drupal.org/user/3418561"
+                    "name": "bleen",
+                    "homepage": "https://www.drupal.org/user/77375"
                 }
             ],
-            "description": "Focal Point allows content creators to mark the most important part of an image for easier cropping.",
-            "homepage": "https://drupal.org/project/focal_point",
+            "description": "Allows users to specify the focal point of an image for use during cropping.",
+            "homepage": "https://www.drupal.org/project/focal_point",
             "support": {
-                "source": "https://cgit.drupalcode.org/focal_point",
-                "issues": "https://drupal.org/project/issues/focal_point",
-                "irc": "irc://irc.freenode.org/drupal-contribute"
-            }
-        },
-        {
-            "name": "drupal/footnotes",
-            "version": "4.0.0-beta6",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/footnotes.git",
-                "reference": "4.0.0-beta6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/footnotes-4.0.0-beta6.zip",
-                "reference": "4.0.0-beta6",
-                "shasum": "a7a3ac4a91e2f2967262ce5e1bef36a9541a877b"
-            },
-            "require": {
-                "drupal/core": ">=10.0"
-            },
-            "require-dev": {
-                "drupal/metatag": "^2.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.0-beta6",
-                    "datestamp": "1741851876",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Beta releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Andrii Aleksandrov (id.aleks)",
-                    "homepage": "https://www.drupal.org/u/idaleks",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Oleksandr Dekhteruk (pifagor)",
-                    "homepage": "https://www.drupal.org/u/pifagor",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Fernando Conceição (yukare)",
-                    "homepage": "https://www.drupal.org/u/yukare",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Henrik Ingo (hingo)",
-                    "homepage": "https://www.drupal.org/u/hingo",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Scott Euser (scott_euser)",
-                    "homepage": "https://www.drupal.org/u/scott_euser",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "smulvih2",
-                    "homepage": "https://www.drupal.org/user/795442"
-                },
-                {
-                    "name": "yukare",
-                    "homepage": "https://www.drupal.org/user/889254"
-                }
-            ],
-            "description": "Add automatically numbered footnotes to your posts.",
-            "homepage": "https://drupal.org/project/footnotes",
-            "support": {
-                "source": "https://cgit.drupalcode.org/footnotes",
-                "issues": "https://drupal.org/project/issues/footnotes"
+                "source": "https://git.drupalcode.org/project/focal_point"
             }
         },
         {
             "name": "drupal/gdpr",
-            "version": "3.1.2",
+            "version": "2.0.0-alpha7",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/gdpr.git",
-                "reference": "3.1.2"
+                "reference": "8.x-2.0-alpha7"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/gdpr-3.1.2.zip",
-                "reference": "3.1.2",
-                "shasum": "61efb7ebc167e9ed38894920fb4850b8d940e06c"
+                "url": "https://ftp.drupal.org/files/projects/gdpr-8.x-2.0-alpha7.zip",
+                "reference": "8.x-2.0-alpha7",
+                "shasum": "07d2ebdd811e069f564bdd27158a67e17d031679"
             },
             "require": {
-                "drupal/checklistapi": "^2.1",
-                "drupal/core": "^9 || ^10 || ^11",
-                "drupal/entity": "^1.4",
-                "drupal/entity_reference_revisions": "^1.11",
-                "drupal/message": "^1.5",
-                "drupal/token": "^1.14",
-                "fakerphp/faker": "^1 || ^2",
-                "php": ">=8.1"
+                "cweagans/composer-patches": "~1.0",
+                "drupal/checklistapi": "^1.0",
+                "drupal/core": "~8.4",
+                "drupal/entity": "^1.0",
+                "drupal/entity_reference_revisions": "^1.4",
+                "drupal/message": "^1.0",
+                "drupal/token": "^1.1",
+                "drush/drush": "~9.0",
+                "ext-zip": "*",
+                "fzaninotto/faker": "^1.7",
+                "php": "^7.1"
             },
             "require-dev": {
                 "drupal/anonymizer": "*",
@@ -9855,18 +6270,17 @@
                 "drupal/message": "*",
                 "drupal/token": "*"
             },
-            "suggest": {
-                "drush/drush": "GDPR Dump requires Drush ^9 || ^10",
-                "ext-zip": "GDPR Tasks requires the PHP zip extension"
-            },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-2.x": "2.x-dev"
+                },
                 "drupal": {
-                    "version": "3.1.2",
-                    "datestamp": "1740594868",
+                    "version": "8.x-2.0-alpha7",
+                    "datestamp": "1552919885",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
                     }
                 }
             },
@@ -9877,33 +6291,25 @@
             "authors": [
                 {
                     "name": "mhavelant",
-                    "homepage": "https://www.drupal.org/user/1358588",
+                    "homepage": "https://www.drupal.org/user/1086292",
                     "email": "mhavelant@brainsum.com"
                 },
                 {
-                    "name": "andrewbelcher",
-                    "homepage": "https://www.drupal.org/user/655282"
+                    "name": "Kosa Ilma",
+                    "homepage": "https://www.drupal.org/user/3435475"
                 },
                 {
-                    "name": "baluertl",
-                    "homepage": "https://www.drupal.org/user/1086292"
+                    "name": "back-2-95",
+                    "homepage": "https://www.drupal.org/user/327328"
                 },
                 {
                     "name": "bfr",
                     "homepage": "https://www.drupal.org/user/369262"
                 },
-                {
-                    "name": "dj1999",
-                    "homepage": "https://www.drupal.org/user/387119"
-                },
                 {
                     "name": "golddragon007",
                     "homepage": "https://www.drupal.org/user/2723471"
                 },
-                {
-                    "name": "kosa ilma",
-                    "homepage": "https://www.drupal.org/user/3435475"
-                },
                 {
                     "name": "lbesenyei",
                     "homepage": "https://www.drupal.org/user/2626013"
@@ -9912,18 +6318,10 @@
                     "name": "mhavelant",
                     "homepage": "https://www.drupal.org/user/3331139"
                 },
-                {
-                    "name": "norman.lol",
-                    "homepage": "https://www.drupal.org/user/2482808"
-                },
                 {
                     "name": "pedrop",
                     "homepage": "https://www.drupal.org/user/1043368"
                 },
-                {
-                    "name": "rajeshreeputra",
-                    "homepage": "https://www.drupal.org/user/3418561"
-                },
                 {
                     "name": "szato",
                     "homepage": "https://www.drupal.org/user/389677"
@@ -9939,1118 +6337,21 @@
                 "source": "https://git.drupalcode.org/project/gdpr"
             }
         },
-        {
-            "name": "drupal/geolocation",
-            "version": "3.14.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/geolocation.git",
-                "reference": "8.x-3.14"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.14.zip",
-                "reference": "8.x-3.14",
-                "shasum": "2f7cda9ce6ca1c03e30405f892714ae6f6a04bfd"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/jquery_ui": "*",
-                "drupal/jquery_ui_autocomplete": "^2.0",
-                "php": "^8.0"
-            },
-            "require-dev": {
-                "drupal/address": "*",
-                "drupal/geofield": "*",
-                "drupal/geolocation_demo": "*",
-                "drupal/geolocation_geometry": "*",
-                "drupal/geolocation_geometry_data": "*",
-                "drupal/geolocation_google_maps": "*",
-                "drupal/geolocation_google_maps_demo": "*",
-                "drupal/geolocation_google_static_maps": "*",
-                "drupal/geolocation_leaflet": "*",
-                "drupal/geolocation_leaflet_demo": "*",
-                "drupal/search_api": "*",
-                "drupal/search_api_location": "*",
-                "drupal/search_api_location_views": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-3.14",
-                    "datestamp": "1729420964",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "derjochenmeyer",
-                    "homepage": "https://www.drupal.org/u/derjochenmeyer"
-                },
-                {
-                    "name": "cadamski",
-                    "homepage": "https://www.drupal.org/u/cadamski"
-                }
-            ],
-            "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
-            "homepage": "https://www.drupal.org/project/geolocation",
-            "support": {
-                "source": "https://git.drupal.org/project/geolocation.git",
-                "issues": "https://www.drupal.org/project/issues/geolocation"
-            }
-        },
-        {
-            "name": "drupal/gin",
-            "version": "4.0.6",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/gin.git",
-                "reference": "4.0.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/gin-4.0.6.zip",
-                "reference": "4.0.6",
-                "shasum": "c68a0fb646c439e1eea3f31f282e59be36eadab2"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11",
-                "drupal/gin_toolbar": "^2.0"
-            },
-            "type": "drupal-theme",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.6",
-                    "datestamp": "1740739176",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "scripts": {
-                "phpcs": [
-                    "phpcs -s --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 0 'web/modules/custom'"
-                ]
-            },
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Sascha Eggenberger (saschaeggi)",
-                    "homepage": "https://www.drupal.org/u/saschaeggi",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "saschaeggi",
-                    "homepage": "https://www.drupal.org/user/1999056"
-                }
-            ],
-            "description": "For a better Admin and Content Editor Experience.",
-            "homepage": "https://www.drupal.org/project/gin",
-            "support": {
-                "source": "https://git.drupalcode.org/project/gin",
-                "issues": "https://www.drupal.org/project/issues/gin"
-            },
-            "funding": [
-                {
-                    "type": "github",
-                    "url": "https://github.com/sponsors/saschaeggi"
-                },
-                {
-                    "type": "other",
-                    "url": "https://paypal.me/saschaeggi"
-                }
-            ]
-        },
-        {
-            "name": "drupal/gin_gutenberg",
-            "version": "1.1.16",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/gin_gutenberg.git",
-                "reference": "1.1.16"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.16.zip",
-                "reference": "1.1.16",
-                "shasum": "5a39790f1038f733a0177808ec64e6ff38843a15"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9.3 || ^10 || ^11",
-                "drupal/gutenberg": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.16",
-                    "datestamp": "1742293958",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Sohail Lajevardi",
-                    "homepage": "https://www.drupal.org/u/doxigo",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "hosisam",
-                    "homepage": "https://www.drupal.org/user/3449435"
-                },
-                {
-                    "name": "kiss.jozsef",
-                    "homepage": "https://www.drupal.org/user/2848443"
-                },
-                {
-                    "name": "mnlund",
-                    "homepage": "https://www.drupal.org/user/80815"
-                },
-                {
-                    "name": "szeidler",
-                    "homepage": "https://www.drupal.org/user/767652"
-                }
-            ],
-            "description": "The Gin Gutenberg module provides an integration between Gutenberg editor and Gin theme",
-            "homepage": "https://drupal.org/project/gin_gutenberg",
-            "support": {
-                "source": "https://git.drupalcode.org/project/gin_gutenberg",
-                "issues": "https://drupal.org/project/issues/gin_gutenberg"
-            }
-        },
-        {
-            "name": "drupal/gin_login",
-            "version": "2.1.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/gin_login.git",
-                "reference": "2.1.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/gin_login-2.1.3.zip",
-                "reference": "2.1.3",
-                "shasum": "4fd1a4f36205f511ab7c222f3543aa15ad2331c6"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.3",
-                    "datestamp": "1719750649",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Sascha Eggenberger (saschaeggi)",
-                    "homepage": "https://www.drupal.org/u/saschaeggi",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Custom Drupal Login for Gin theme",
-            "homepage": "https://www.drupal.org/project/gin_login",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/gin_login",
-                "issues": "https://www.drupal.org/project/issues/gin_login"
-            },
-            "funding": [
-                {
-                    "type": "github",
-                    "url": "https://github.com/sponsors/saschaeggi"
-                },
-                {
-                    "type": "other",
-                    "url": "https://paypal.me/saschaeggi"
-                }
-            ]
-        },
-        {
-            "name": "drupal/gin_toolbar",
-            "version": "2.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/gin_toolbar.git",
-                "reference": "2.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/gin_toolbar-2.0.0.zip",
-                "reference": "2.0.0",
-                "shasum": "2befeab2de9f7953b76b1a36c9bfb6a7e3987b11"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0",
-                    "datestamp": "1734698921",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Sascha Eggenberger (saschaeggi)",
-                    "homepage": "https://www.drupal.org/u/saschaeggi",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "saschaeggi",
-                    "homepage": "https://www.drupal.org/user/1999056"
-                }
-            ],
-            "description": "Gin Toolbar for Frontend use",
-            "homepage": "https://www.drupal.org/project/gin_toolbar",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/gin_toolbar",
-                "issues": "https://www.drupal.org/project/issues/gin_toolbar"
-            },
-            "funding": [
-                {
-                    "type": "github",
-                    "url": "https://github.com/sponsors/saschaeggi"
-                },
-                {
-                    "type": "other",
-                    "url": "https://paypal.me/saschaeggi"
-                }
-            ]
-        },
-        {
-            "name": "drupal/givebutter",
-            "version": "dev-1.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/givebutter.git",
-                "reference": "eb4ec6fb1a6b372e7608673009834bd5c1f37e2f"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.0.x": "1.0.x-dev"
-                },
-                "drupal": {
-                    "version": "1.0.x-dev",
-                    "datestamp": "1746809768",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Project has not opted into security advisory coverage!"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Allows your site to include the standard Givebutter script.",
-            "homepage": "https://www.drupal.org/project/givebutter",
-            "support": {
-                "source": "https://git.drupalcode.org/project/givebutter"
-            }
-        },
         {
             "name": "drupal/gnode",
-            "version": "3.3.5",
+            "version": "1.0.0-rc4",
             "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/group": "*"
+                "drupal/core": "*",
+                "drupal/group": "self.version"
             },
             "type": "metapackage",
             "extra": {
-                "drupal": {
-                    "version": "3.3.5",
-                    "datestamp": "1746519542",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "dww",
-                    "homepage": "https://www.drupal.org/user/46549"
-                },
-                {
-                    "name": "kristiaanvandeneynde",
-                    "homepage": "https://www.drupal.org/user/1345130"
-                }
-            ],
-            "description": "Enables Group functionality for the Node module",
-            "homepage": "https://www.drupal.org/project/group",
-            "support": {
-                "source": "https://git.drupalcode.org/project/group"
-            }
-        },
-        {
-            "name": "drupal/google_analytics",
-            "version": "4.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/google_analytics.git",
-                "reference": "4.0.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.3.zip",
-                "reference": "4.0.3",
-                "shasum": "faaae65a3b52d842ceef78fd2b2ef6344f3a21a0"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/token": "^1.7"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.3",
-                    "datestamp": "1734385014",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
                 "branch-alias": {
-                    "dev-4.x": "4.x-dev"
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "See contributors",
-                    "homepage": "https://www.drupal.org/node/49388/committers"
-                },
-                {
-                    "name": "budda",
-                    "homepage": "https://www.drupal.org/user/13164"
-                },
-                {
-                    "name": "ixismark",
-                    "homepage": "https://www.drupal.org/user/3632333"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "mglaman",
-                    "homepage": "https://www.drupal.org/user/2416470"
-                },
-                {
-                    "name": "roberto.rivera.ixis",
-                    "homepage": "https://www.drupal.org/user/3632325"
-                }
-            ],
-            "description": "Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.",
-            "homepage": "https://www.drupal.org/project/google_analytics",
-            "support": {
-                "source": "https://git.drupalcode.org/project/google_analytics",
-                "issues": "https://www.drupal.org/project/issues/google_analytics"
-            }
-        },
-        {
-            "name": "drupal/group",
-            "version": "3.3.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/group.git",
-                "reference": "3.3.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/group-3.3.5.zip",
-                "reference": "3.3.5",
-                "shasum": "5e8df19cf48ef171bbe042e4d4b2f8107a339530"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/entity": "^1.2",
-                "drupal/flexible_permissions": "^2.0"
-            },
-            "require-dev": {
-                "drupal/variationcache": "^1.5",
-                "jangregor/phpstan-prophecy": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.3.5",
-                    "datestamp": "1746519542",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Kristiaan Van den Eynde",
-                    "homepage": "https://www.drupal.org/u/kristiaanvandeneynde",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "kristiaanvandeneynde",
-                    "homepage": "https://www.drupal.org/user/1345130"
-                }
-            ],
-            "description": "This module allows you to group users, content and other entities",
-            "homepage": "http://drupal.org/project/group",
-            "support": {
-                "source": "https://git.drupalcode.org/project/group",
-                "issues": "https://drupal.org/project/issues/group"
-            }
-        },
-        {
-            "name": "drupal/gutenberg",
-            "version": "2.14.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/gutenberg.git",
-                "reference": "8.x-2.14"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/gutenberg-8.x-2.14.zip",
-                "reference": "8.x-2.14",
-                "shasum": "c6610a940797ad6eadc19d1a279467a36560c9bd"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11",
-                "ext-json": "*",
-                "php": ">=7.4"
-            },
-            "require-dev": {
-                "phpspec/prophecy-phpunit": "^2"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.14",
-                    "datestamp": "1728499573",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Marco Fernandes (marcofernandes)",
-                    "homepage": "https://www.drupal.org/u/marcofernandes"
-                },
-                {
-                    "name": "Thor Andre Gretland (thorandre)",
-                    "homepage": "https://www.drupal.org/u/thorandre"
-                },
-                {
-                    "name": "Roberto Ornelas (roborn)",
-                    "homepage": "https://www.drupal.org/u/roborn"
-                },
-                {
-                    "name": "codebymikey",
-                    "homepage": "https://www.drupal.org/u/codebymikey"
-                },
-                {
-                    "name": "Stephan Zeidler (szeidler)",
-                    "homepage": "https://www.drupal.org/u/szeidler"
-                },
-                {
-                    "name": "marcofernandes",
-                    "homepage": "https://www.drupal.org/user/2127558"
-                },
-                {
-                    "name": "perandre",
-                    "homepage": "https://www.drupal.org/user/221337"
-                },
-                {
-                    "name": "roborn",
-                    "homepage": "https://www.drupal.org/user/139474"
-                },
-                {
-                    "name": "szeidler",
-                    "homepage": "https://www.drupal.org/user/767652"
-                },
-                {
-                    "name": "thorandre",
-                    "homepage": "https://www.drupal.org/user/223878"
-                },
-                {
-                    "name": "truls1502",
-                    "homepage": "https://www.drupal.org/user/325866"
-                }
-            ],
-            "description": "Drupal Gutenberg brings the powerful admin features of Gutenberg Editor to Drupal.",
-            "homepage": "https://www.drupal.org/project/gutenberg",
-            "support": {
-                "source": "https://git.drupalcode.org/project/gutenberg",
-                "issues": "https://www.drupal.org/project/issues/gutenberg"
-            }
-        },
-        {
-            "name": "drupal/hal",
-            "version": "2.0.4",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/hal.git",
-                "reference": "2.0.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/hal-2.0.4.zip",
-                "reference": "2.0.4",
-                "shasum": "5d98f2ebbc7952d183278351d24d3e51ea18c8ee"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/aggregator": "2.x-dev",
-                "drupal/entity_reference_revisions": "1.x-dev",
-                "drupal/rdf": "^2.1 || 3.0.x-dev",
-                "drupal/tour": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.4",
-                    "datestamp": "1738532063",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bbrala",
-                    "homepage": "https://www.drupal.org/user/3366066"
-                },
-                {
-                    "name": "larowlan",
-                    "homepage": "https://www.drupal.org/user/395439"
-                }
-            ],
-            "description": "Hypermedia Application Language (HAL)",
-            "homepage": "https://www.drupal.org/project/hal",
-            "support": {
-                "source": "https://git.drupalcode.org/project/hal"
-            }
-        },
-        {
-            "name": "drupal/honeypot",
-            "version": "2.2.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/honeypot.git",
-                "reference": "2.2.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
-                "reference": "2.2.2",
-                "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "require-dev": {
-                "drupal/rules": "^4.0",
-                "drupal/webform": "^6.2"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.2.2",
-                    "datestamp": "1739854442",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Jeff Geerling",
-                    "homepage": "https://www.drupal.org/user/389011",
-                    "email": "geerlingguy@mac.com"
-                },
-                {
-                    "name": "manuel garcia",
-                    "homepage": "https://www.drupal.org/user/213194"
-                },
-                {
-                    "name": "tr",
-                    "homepage": "https://www.drupal.org/user/202830"
-                },
-                {
-                    "name": "vijaycs85",
-                    "homepage": "https://www.drupal.org/user/93488"
-                }
-            ],
-            "description": "Mitigates spam form submissions using the honeypot method.",
-            "homepage": "https://www.drupal.org/project/honeypot",
-            "keywords": [
-                "deterrent",
-                "form",
-                "honeypot",
-                "honeytrap",
-                "php",
-                "spam"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/honeypot",
-                "issues": "https://www.drupal.org/project/issues/honeypot"
-            }
-        },
-        {
-            "name": "drupal/http_cache_control",
-            "version": "2.6.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/http_cache_control.git",
-                "reference": "8.x-2.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.6.zip",
-                "reference": "8.x-2.6",
-                "shasum": "dce070dff18c0298949e432713616df0841d7182"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.6",
-                    "datestamp": "1740741248",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "dieterholvoet",
-                    "homepage": "https://www.drupal.org/user/3567222"
-                },
-                {
-                    "name": "josh waihi",
-                    "homepage": "https://www.drupal.org/user/188162"
-                }
-            ],
-            "description": "Module for controlling HTTP Cache Control response headers.",
-            "homepage": "https://www.drupal.org/project/http_cache_control",
-            "support": {
-                "source": "https://git.drupalcode.org/project/http_cache_control"
-            }
-        },
-        {
-            "name": "drupal/http_client_error_status",
-            "version": "3.1.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/http_client_error_status.git",
-                "reference": "3.1.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/http_client_error_status-3.1.3.zip",
-                "reference": "3.1.3",
-                "shasum": "4880388d93182e98a716790d05440b18c47edb2e"
-            },
-            "require": {
-                "drupal/core": "^10.2 || ^11"
-            },
-            "require-dev": {
-                "drush/drush": "^12.5.2 || ^13"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.1.3",
-                    "datestamp": "1720219453",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Jeff Logan (jefflogan)",
-                    "homepage": "https://www.drupal.org/u/jefflogan",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Provide HTTP client error status context plugin",
-            "homepage": "https://drupal.org/project/http_client_error_status",
-            "support": {
-                "source": "https://git.drupal.org/project/http_client_error_status.git",
-                "issues": "https://drupal.org/project/issues/http_client_error_status",
-                "irc": "irc://irc.freenode.org/drupal-contribute"
-            }
-        },
-        {
-            "name": "drupal/ief_complex_open",
-            "version": "dev-1.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/ief_complex_open.git",
-                "reference": "01cb7751694172aee46d9f0726f728ac758cf330"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11",
-                "drupal/inline_entity_form": "^1 || ^3"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.0.x": "1.0.x-dev"
+                    "dev-1.x": "1.x-dev"
                 },
                 "drupal": {
-                    "version": "1.0.1+15-dev",
-                    "datestamp": "1739677426",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drpldrp",
-                    "homepage": "https://www.drupal.org/user/3630968"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Inline entity form complex widget with add existing open by default.",
-            "homepage": "https://www.drupal.org/project/ief_complex_open",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/ief_complex_open",
-                "issues": "http://drupal.org/project/issues/ief_complex_open"
-            }
-        },
-        {
-            "name": "drupal/image_field_to_media",
-            "version": "3.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/image_field_to_media.git",
-                "reference": "3.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/image_field_to_media-3.0.0.zip",
-                "reference": "3.0.0",
-                "shasum": "abc66c620438ce6f5ba073b2c0003fcaf61d21a3"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.0",
-                    "datestamp": "1733757129",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Andrey Vitushkin (wombatbuddy)",
-                    "homepage": "https://www.drupal.org/u/wombatbuddy",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "wombatbuddy",
-                    "homepage": "https://www.drupal.org/user/3547848"
-                }
-            ],
-            "description": "Enables to convert existing image fields to Media image fields.",
-            "homepage": "https://www.drupal.org/project/image_field_to_media",
-            "support": {
-                "source": "https://git.drupalcode.org/project/image_field_to_media",
-                "issues": "https://www.drupal.org/project/issues/image_field_to_media"
-            }
-        },
-        {
-            "name": "drupal/image_widget_crop",
-            "version": "2.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/image_widget_crop.git",
-                "reference": "8.x-2.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/image_widget_crop-8.x-2.4.zip",
-                "reference": "8.x-2.4",
-                "shasum": "6fcf4641d730bf1f5afce2a95d58f76094c72d1b"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/crop": "^1 || ^2"
-            },
-            "require-dev": {
-                "drupal/bartik": "^1",
-                "drupal/crop": "*",
-                "drupal/ctools": "^3",
-                "drupal/entity_browser": "^2",
-                "drupal/inline_entity_form": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.4",
-                    "datestamp": "1667435355",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Alexandre Mallet",
-                    "homepage": "https://github.com/woprrr",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Drupal media CI",
-                    "homepage": "https://www.drupal.org/user/3057985"
-                },
-                {
-                    "name": "Drupal Media Team",
-                    "homepage": "https://www.drupal.org/user/3260690"
-                },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
-                {
-                    "name": "slashrsm",
-                    "homepage": "https://www.drupal.org/user/744628"
-                },
-                {
-                    "name": "woprrr",
-                    "homepage": "https://www.drupal.org/user/858604"
-                }
-            ],
-            "description": "Provides an interface for using the features of the Crop API.",
-            "homepage": "https://www.drupal.org/project/image_widget_crop",
-            "keywords": [
-                "Crop",
-                "Drupal",
-                "Drupal Media"
-            ],
-            "support": {
-                "source": "https://www.drupal.org/project/image_widget_crop",
-                "issues": "https://www.drupal.org/project/issues/image_widget_crop",
-                "irc": "irc://irc.freenode.org/drupal-contribute"
-            }
-        },
-        {
-            "name": "drupal/indieweb",
-            "version": "1.26.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/indieweb.git",
-                "reference": "8.x-1.26"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.26.zip",
-                "reference": "8.x-1.26",
-                "shasum": "5393c42a9c11ffed9026a70439454f9a20aff408"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11",
-                "indieauth/client": "^1.1",
-                "indieweb/mention-client": "^1.2",
-                "lcobucci/jwt": "4.3.0",
-                "p3k/micropub": "^0.0.3",
-                "p3k/websub": "^0.0.1",
-                "p3k/xray": "^1.12"
-            },
-            "require-dev": {
-                "drupal/externalauth": "^2.0",
-                "drupal/indieweb_indieauth": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.26",
-                    "datestamp": "1740916115",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Kristof De Jaeger",
-                    "homepage": "https://realize.be",
-                    "email": "swentel@realize.be",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "IndieWeb functionality for your site.",
-            "homepage": "http://drupal.org/project/indieweb",
-            "support": {
-                "source": "https://git.drupalcode.org/project/indieweb"
-            }
-        },
-        {
-            "name": "drupal/inline_entity_form",
-            "version": "3.0.0-rc21",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/inline_entity_form.git",
-                "reference": "3.0.0-rc21"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/inline_entity_form-3.0.0-rc21.zip",
-                "reference": "3.0.0-rc21",
-                "shasum": "bbfb99be0ee35ad197556b2aa02f6e181e34ff1f"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11",
-                "drupal/rat": "^1.0.0@stable",
-                "php": ">=7.1"
-            },
-            "require-dev": {
-                "drupal/entity_reference_revisions": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.0-rc21",
-                    "datestamp": "1746459780",
+                    "version": "8.x-1.0-rc4",
+                    "datestamp": "1563460085",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "RC releases are not covered by Drupal security advisories."
@@ -11063,87 +6364,49 @@
             ],
             "authors": [
                 {
-                    "name": "bojanz",
-                    "homepage": "https://www.drupal.org/user/86106"
+                    "name": "kristiaanvandeneynde",
+                    "homepage": "https://www.drupal.org/user/1345130"
                 },
                 {
-                    "name": "centarro",
-                    "homepage": "https://www.drupal.org/user/3661446"
-                },
-                {
-                    "name": "dawehner",
-                    "homepage": "https://www.drupal.org/user/99340"
-                },
-                {
-                    "name": "dww",
-                    "homepage": "https://www.drupal.org/user/46549"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                },
-                {
-                    "name": "joachim",
-                    "homepage": "https://www.drupal.org/user/107701"
-                },
-                {
-                    "name": "jsacksick",
-                    "homepage": "https://www.drupal.org/user/972218"
-                },
-                {
-                    "name": "oknate",
-                    "homepage": "https://www.drupal.org/user/471638"
-                },
-                {
-                    "name": "ram4nd",
-                    "homepage": "https://www.drupal.org/user/601534"
-                },
-                {
-                    "name": "rszrama",
-                    "homepage": "https://www.drupal.org/user/49344"
-                },
-                {
-                    "name": "slashrsm",
-                    "homepage": "https://www.drupal.org/user/744628"
-                },
-                {
-                    "name": "webflo",
-                    "homepage": "https://www.drupal.org/user/254778"
+                    "name": "ronaldtebrake",
+                    "homepage": "https://www.drupal.org/user/2314038"
                 }
             ],
-            "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
-            "homepage": "https://www.drupal.org/project/inline_entity_form",
+            "description": "Enables Group functionality for the Node module",
+            "homepage": "https://www.drupal.org/project/group",
             "support": {
-                "source": "https://git.drupalcode.org/project/inline_entity_form"
+                "source": "https://git.drupalcode.org/project/group"
             }
         },
         {
-            "name": "drupal/inotherwords",
-            "version": "3.0.1",
+            "name": "drupal/group",
+            "version": "1.0.0-rc4",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/inotherwords.git",
-                "reference": "3.0.1"
+                "url": "https://git.drupalcode.org/project/group.git",
+                "reference": "8.x-1.0-rc4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/inotherwords-3.0.1.zip",
-                "reference": "3.0.1",
-                "shasum": "bb9abce972fffc662affe34d691fa6d1c6da6709"
+                "url": "https://ftp.drupal.org/files/projects/group-8.x-1.0-rc4.zip",
+                "reference": "8.x-1.0-rc4",
+                "shasum": "d5d55167523a3ddccef7f66159b4c417d950d6f5"
             },
             "require": {
-                "agaric/oxford-comma": "^1.2",
-                "drupal/core": "^8 || ^9 || ^10",
-                "kwn/number-to-words": "^1.8"
+                "drupal/core": "^8.6",
+                "drupal/entity": "^1.0-rc1"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "3.0.1",
-                    "datestamp": "1686885306",
+                    "version": "8.x-1.0-rc4",
+                    "datestamp": "1563460085",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "RC releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -11153,638 +6416,48 @@
             ],
             "authors": [
                 {
-                    "name": "cedewey",
-                    "homepage": "https://www.drupal.org/user/38694"
-                },
-                {
-                    "name": "gnuget",
-                    "homepage": "https://www.drupal.org/user/992990"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Provides a field formatter for condensing sequential lists into shorter text.",
-            "homepage": "https://drupal.org/project/inotherwords",
-            "keywords": [
-                "content",
-                "drupal",
-                "field",
-                "field formatter",
-                "ux"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/inotherwords",
-                "issues": "https://www.drupal.org/project/issues/inotherwords"
-            }
-        },
-        {
-            "name": "drupal/insert",
-            "version": "3.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/insert.git",
-                "reference": "3.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/insert-3.0.2.zip",
-                "reference": "3.0.2",
-                "shasum": "df73a01b20be742b53c95b3b5a8424894d2ce703"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/colorbox": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.2",
-                    "datestamp": "1739545285",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "quicksketch",
-                    "homepage": "https://www.drupal.org/user/35821"
-                },
-                {
-                    "name": "snater",
-                    "homepage": "https://www.drupal.org/user/3513717"
-                }
-            ],
-            "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
-            "homepage": "https://www.drupal.org/project/insert",
-            "support": {
-                "source": "https://git.drupalcode.org/project/insert"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui",
-            "version": "1.7.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui.git",
-                "reference": "8.x-1.7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
-                "reference": "8.x-1.7",
-                "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.7",
-                    "datestamp": "1717002098",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "jjeff",
-                    "homepage": "https://www.drupal.org/user/17190"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "litwol",
-                    "homepage": "https://www.drupal.org/user/78134"
-                },
-                {
-                    "name": "mfb",
-                    "homepage": "https://www.drupal.org/user/12302"
-                },
-                {
-                    "name": "mfer",
-                    "homepage": "https://www.drupal.org/user/25701"
-                },
-                {
-                    "name": "mikelutz",
-                    "homepage": "https://www.drupal.org/user/2972409"
-                },
-                {
-                    "name": "nod_",
-                    "homepage": "https://www.drupal.org/user/598310"
-                },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
-                {
-                    "name": "RobLoach",
-                    "homepage": "https://www.drupal.org/user/61114"
-                },
-                {
-                    "name": "sun",
-                    "homepage": "https://www.drupal.org/user/54136"
-                },
-                {
-                    "name": "webchick",
-                    "homepage": "https://www.drupal.org/user/24967"
-                },
-                {
-                    "name": "Wim Leers",
-                    "homepage": "https://www.drupal.org/user/99777"
-                },
-                {
-                    "name": "zrpnr",
-                    "homepage": "https://www.drupal.org/user/1448368"
-                }
-            ],
-            "description": "Provides jQuery UI library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui",
-            "support": {
-                "source": "https://git.drupalcode.org/project/jquery_ui"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui_accordion",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "f52cfc83f302a54b9c71a038e9ac1ce496f47edd"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/jquery_ui": "^1.7"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1717015495",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "zrpnr",
-                    "homepage": "https://www.drupal.org/user/1448368"
-                }
-            ],
-            "description": "Provides jQuery UI Accordion library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui_accordion",
-            "support": {
-                "source": "https://git.drupalcode.org/project/jquery_ui_accordion"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui_autocomplete",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "ecf9500d8bff6c3673e92019a09dcce87ac81fc6"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/jquery_ui": "^1.7",
-                "drupal/jquery_ui_menu": "^2.1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1717035046",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "nod_",
-                    "homepage": "https://www.drupal.org/user/598310"
-                },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
-                {
-                    "name": "Wim Leers",
-                    "homepage": "https://www.drupal.org/user/99777"
-                },
-                {
-                    "name": "zrpnr",
-                    "homepage": "https://www.drupal.org/user/1448368"
-                }
-            ],
-            "description": "Provides jQuery UI Autocomplete library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
-            "support": {
-                "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui_datepicker",
-            "version": "2.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
-                "reference": "2.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
-                "reference": "2.1.1",
-                "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/jquery_ui": "^1.7"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.1",
-                    "datestamp": "1730932612",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "jrockowitz",
-                    "homepage": "https://www.drupal.org/user/371407"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "nod_",
-                    "homepage": "https://www.drupal.org/user/598310"
-                },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
-                {
-                    "name": "zrpnr",
-                    "homepage": "https://www.drupal.org/user/1448368"
-                }
-            ],
-            "description": "Provides jQuery UI Datepicker library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
-            "support": {
-                "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui_menu",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "9aa6958e52ea12c1cdedd7908c5aeb5309b8b4ea"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/jquery_ui": "^1.7"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1717031358",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "nod_",
-                    "homepage": "https://www.drupal.org/user/598310"
-                },
-                {
-                    "name": "phenaproxima",
-                    "homepage": "https://www.drupal.org/user/205645"
-                },
-                {
-                    "name": "Wim Leers",
-                    "homepage": "https://www.drupal.org/user/99777"
-                },
-                {
-                    "name": "zrpnr",
-                    "homepage": "https://www.drupal.org/user/1448368"
-                }
-            ],
-            "description": "Provides jQuery UI Menu library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui_menu",
-            "support": {
-                "source": "https://git.drupalcode.org/project/jquery_ui_menu"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui_slider",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/jquery_ui": "^1.7"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1717031321",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "zrpnr",
-                    "homepage": "https://www.drupal.org/user/1448368"
-                }
-            ],
-            "description": "Provides jQuery UI Slider library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui_slider",
-            "support": {
-                "source": "https://git.drupalcode.org/project/jquery_ui_slider"
-            }
-        },
-        {
-            "name": "drupal/jquery_ui_touch_punch",
-            "version": "1.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
-                "reference": "1.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
-                "reference": "1.1.1",
-                "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/jquery_ui": "^1.0",
-                "politsin/jquery-ui-touch-punch": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.1",
-                    "datestamp": "1717663479",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Naveen Valecha",
-                    "homepage": "https://drupal.org/u/naveenvalecha",
+                    "name": "Kristiaan Van den Eynde",
+                    "homepage": "https://www.drupal.org/u/kristiaanvandeneynde",
                     "role": "Maintainer"
                 },
                 {
-                    "name": "naveenvalecha",
-                    "homepage": "https://www.drupal.org/user/2665733"
+                    "name": "Ronald te Brake",
+                    "homepage": "https://www.drupal.org/u/ronaldtebrake",
+                    "role": "Co-maintainer"
                 }
             ],
-            "description": "Provides jQuery UI Touch Punch library.",
-            "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
-            "keywords": [
-                "Drupal",
-                "jquery_ui_touch_punch"
-            ],
+            "description": "This module allows you to group users, content and other entities",
+            "homepage": "http://drupal.org/project/group",
             "support": {
-                "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
-                "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
-            }
-        },
-        {
-            "name": "drupal/key",
-            "version": "1.20.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/key.git",
-                "reference": "8.x-1.20"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/key-8.x-1.20.zip",
-                "reference": "8.x-1.20",
-                "shasum": "f45415552de129e9976af72224393cd1d1f2ea65"
-            },
-            "require": {
-                "drupal/core": ">=8.9 <12"
-            },
-            "require-dev": {
-                "drush/drush": ">=9"
-            },
-            "suggest": {
-                "drush/drush": ">=11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.20",
-                    "datestamp": "1744582168",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": ">=9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "cellar door",
-                    "homepage": "https://www.drupal.org/user/658076"
-                },
-                {
-                    "name": "crashtest_",
-                    "homepage": "https://www.drupal.org/user/261457"
-                },
-                {
-                    "name": "nerdstein",
-                    "homepage": "https://www.drupal.org/user/1557710"
-                },
-                {
-                    "name": "rlhawk",
-                    "homepage": "https://www.drupal.org/user/352283"
-                }
-            ],
-            "description": "Provides the ability to manage site-wide keys",
-            "homepage": "http://drupal.org/project/key",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/key",
-                "issues": "http://drupal.org/project/key"
+                "source": "https://git.drupalcode.org/project/group",
+                "issues": "https://drupal.org/project/issues/group"
             }
         },
         {
             "name": "drupal/link_attributes",
-            "version": "1.14.0",
+            "version": "1.9.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/link_attributes.git",
-                "reference": "8.x-1.14"
+                "reference": "8.x-1.9"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
-                "reference": "8.x-1.14",
-                "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
+                "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.9.zip",
+                "reference": "8.x-1.9",
+                "shasum": "efbfc869c2e0b13b1bd5c9ff01dd51d3f2a6b755"
             },
             "require": {
-                "drupal/core": "^9 || ^10"
+                "drupal/core": "^8.4"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.14",
-                    "datestamp": "1687393687",
+                    "version": "8.x-1.9",
+                    "datestamp": "1564012686",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -11803,667 +6476,35 @@
             ],
             "description": "Provides a widget to allow settings of link attributes for menu links.",
             "homepage": "https://www.drupal.org/project/link_attributes",
-            "keywords": [
-                "Drupal"
-            ],
             "support": {
-                "source": "https://git.drupalcode.org/project/link_attributes",
-                "issues": "https://www.drupal.org/project/issues/link_attributes"
-            }
-        },
-        {
-            "name": "drupal/linkit",
-            "version": "6.1.6",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/linkit.git",
-                "reference": "6.1.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/linkit-6.1.6.zip",
-                "reference": "6.1.6",
-                "shasum": "113d8e569cfb92f8d7feb0a2f7713953c0715e92"
-            },
-            "require": {
-                "drupal/core": "^10.1"
-            },
-            "require-dev": {
-                "drupal/ckeditor": "*",
-                "drupal/imce": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "6.1.6",
-                    "datestamp": "1729189029",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Emil Stjerneman",
-                    "homepage": "https://stjerneman.com",
-                    "email": "emil@stjerneman.com",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "johnwebdev",
-                    "homepage": "https://www.drupal.org/user/3331569"
-                },
-                {
-                    "name": "mark_fullmer",
-                    "homepage": "https://www.drupal.org/user/2612816"
-                }
-            ],
-            "description": "Linkit - Enriched linking experience",
-            "homepage": "http://drupal.org/project/linkit",
-            "support": {
-                "source": "http://cgit.drupalcode.org/linkit",
-                "issues": "http://drupal.org/project/linkit"
-            }
-        },
-        {
-            "name": "drupal/mailchimp",
-            "version": "2.2.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/mailchimp.git",
-                "reference": "2.2.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.5.zip",
-                "reference": "2.2.5",
-                "shasum": "e8764ee98a2a0185a6889277d0f9a9cd27c9d6ef"
-            },
-            "require": {
-                "drupal/core": "^8.7.7 || ^9 || ^10",
-                "thinkshout/mailchimp-api-php": "^3"
-            },
-            "require-dev": {
-                "drupal/mailchimp_events": "*",
-                "drupal/mailchimp_lists": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.2.5",
-                    "datestamp": "1728582242",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "aprice42",
-                    "homepage": "https://www.drupal.org/user/369147"
-                },
-                {
-                    "name": "bdimaggio",
-                    "homepage": "https://www.drupal.org/user/70688"
-                },
-                {
-                    "name": "brendanthinkshout",
-                    "homepage": "https://www.drupal.org/user/3578399"
-                },
-                {
-                    "name": "gcb",
-                    "homepage": "https://www.drupal.org/user/1682976"
-                },
-                {
-                    "name": "kescoto-thinkshout",
-                    "homepage": "https://www.drupal.org/user/3664824"
-                },
-                {
-                    "name": "levelos",
-                    "homepage": "https://www.drupal.org/user/54135"
-                },
-                {
-                    "name": "mariacha1",
-                    "homepage": "https://www.drupal.org/user/2210776"
-                },
-                {
-                    "name": "maximumpotter",
-                    "homepage": "https://www.drupal.org/user/3653774"
-                },
-                {
-                    "name": "mshaver",
-                    "homepage": "https://www.drupal.org/user/39079"
-                },
-                {
-                    "name": "olivier.bouwman",
-                    "homepage": "https://www.drupal.org/user/2799483"
-                },
-                {
-                    "name": "tauno",
-                    "homepage": "https://www.drupal.org/user/105595"
-                },
-                {
-                    "name": "wxactly",
-                    "homepage": "https://www.drupal.org/user/3181097"
-                },
-                {
-                    "name": "xenophyle",
-                    "homepage": "https://www.drupal.org/user/664428"
-                }
-            ],
-            "description": "Mailchimp is an integration with the Mailchimp Mass email tool.",
-            "homepage": "http://drupal.org/project/mailchimp",
-            "support": {
-                "source": "https://git.drupalcode.org/project/mailchimp"
-            }
-        },
-        {
-            "name": "drupal/markdown",
-            "version": "3.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/markdown.git",
-                "reference": "3.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/markdown-3.0.1.zip",
-                "reference": "3.0.1",
-                "shasum": "ae33f2819c0f2591484ae02921781fb3ea783330"
-            },
-            "require": {
-                "composer/semver": "^1.0 || ^2.0 || ^3.0",
-                "drupal/core": "^9.1 || ^10",
-                "php": ">=5.5.9"
-            },
-            "suggest": {
-                "league/commonmark": "The PHP CommonMark parser is a robust, highly-extensible Markdown parser for PHP based on the CommonMark and Github-Flavored Markdown specifications."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.1",
-                    "datestamp": "1704727858",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9 || ^10"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mark Halliwell (markhalliwell)",
-                    "homepage": "https://www.drupal.org/u/markhalliwell",
-                    "role": "D8+ Maintainer"
-                },
-                {
-                    "name": "Gisle Hannemyr (gisle)",
-                    "homepage": "https://www.drupal.org/u/gisle",
-                    "role": "D7 Maintainer"
-                },
-                {
-                    "name": "joelpittet",
-                    "homepage": "https://www.drupal.org/user/160302"
-                },
-                {
-                    "name": "markdorison",
-                    "homepage": "https://www.drupal.org/user/346106"
-                },
-                {
-                    "name": "megachriz",
-                    "homepage": "https://www.drupal.org/user/654114"
-                }
-            ],
-            "description": "Provides Markdown integration for Drupal and allows content to be formatted in a simple plain-text syntax that is transformed into valid HTML.",
-            "homepage": "https://www.drupal.org/project/markdown",
-            "support": {
-                "source": "https://git.drupalcode.org/project/markdown",
-                "issues": "https://www.drupal.org/project/markdown"
-            }
-        },
-        {
-            "name": "drupal/media_contextual_crop",
-            "version": "2.1.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/media_contextual_crop.git",
-                "reference": "2.1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/media_contextual_crop-2.1.5.zip",
-                "reference": "2.1.5",
-                "shasum": "d511e031ec5b13c93fe5e1352ee455a902a3ec73"
-            },
-            "require": {
-                "composer/installers": "^1.9 || ^2.0",
-                "cweagans/composer-patches": "^1.7 || ^2.0",
-                "drupal/core": "^10 || ^11",
-                "drupal/crop": "^2.3",
-                "drush/drush": ">11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.5",
-                    "datestamp": "1736325942",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "enable-patching": true,
-                "patches": {
-                    "drupal/crop": {
-                        "provide_contextual_capability_to_crops": "https://www.drupal.org/files/issues/2024-01-21/2617818-32-provide_contextual_capability_to_crops.patch"
-                    },
-                    "drupal/core": {
-                        "Refactor ImageStyleDownloadController": "https://www.drupal.org/files/issues/2024-09-04/2685905-35-factorizeImageDeliver.patch"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drdam",
-                    "homepage": "https://www.drupal.org/user/1555440"
-                }
-            ],
-            "description": "Media Contextual Cropping API",
-            "homepage": "https://www.drupal.org/project/media_contextual_crop",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/media_contextual_crop"
-            }
-        },
-        {
-            "name": "drupal/media_contextual_crop_field_formatter",
-            "version": "2.0.7",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter.git",
-                "reference": "2.0.7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_field_formatter-2.0.7.zip",
-                "reference": "2.0.7",
-                "shasum": "f3409352b36dfd6ae3936536e76cfc618c92712c"
-            },
-            "require": {
-                "composer/installers": "^1.9 || ^2.0",
-                "cweagans/composer-patches": "^1.7",
-                "drupal/core": "^10 || ^11",
-                "drupal/media_contextual_crop": "~2.0",
-                "drupal/media_library_media_modify": "^1.0.0 || ^2.0.0@beta"
-            },
-            "require-dev": {
-                "drupal/advanced_help": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.7",
-                    "datestamp": "1728401162",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "enable-patching": true,
-                "patches": {
-                    "drupal/media_library_media_modify": {
-                        "#3270150 Add alteration": "https://git.drupalcode.org/project/media_library_media_modify/-/merge_requests/65.patch"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drdam",
-                    "homepage": "https://www.drupal.org/user/1555440"
-                }
-            ],
-            "description": "An implementation of media_contextual_crop API for media references",
-            "homepage": "https://www.drupal.org/project/media_contextual_crop_field_formatter",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter"
-            }
-        },
-        {
-            "name": "drupal/media_contextual_crop_fp_adapter",
-            "version": "2.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter.git",
-                "reference": "2.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_fp_adapter-2.0.2.zip",
-                "reference": "2.0.2",
-                "shasum": "ec729a10cda85f3f01428eff80f50102e7aa07c6"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11",
-                "drupal/focal_point": "^1.5 || ^2.0@alpha",
-                "drupal/media_contextual_crop": "~2.0"
-            },
-            "require-dev": {
-                "drupal/advanced_help": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.2",
-                    "datestamp": "1725437111",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drdam",
-                    "homepage": "https://www.drupal.org/user/1555440"
-                }
-            ],
-            "description": "An adapter between focal_point crop plugin and media_contextual_crop",
-            "homepage": "https://www.drupal.org/project/media_contextual_crop_fp_adapter",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter"
-            }
-        },
-        {
-            "name": "drupal/media_contextual_crop_iwc_adapter",
-            "version": "2.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter.git",
-                "reference": "2.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_iwc_adapter-2.0.2.zip",
-                "reference": "2.0.2",
-                "shasum": "49bae2a762dfb5197fcc23e280ce58b4f6963c4a"
-            },
-            "require": {
-                "drupal/core": "^10",
-                "drupal/image_widget_crop": "^2.3",
-                "drupal/media_contextual_crop": "~2.0"
-            },
-            "require-dev": {
-                "drupal/advanced_help": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.2",
-                    "datestamp": "1706001866",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drdam",
-                    "homepage": "https://www.drupal.org/user/1555440"
-                }
-            ],
-            "description": "An adapter between focal_point crop plugin and media_contextual_crop",
-            "homepage": "https://www.drupal.org/project/media_contextual_crop_iwc_adapter",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter"
-            }
-        },
-        {
-            "name": "drupal/media_library_media_modify",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/media_library_media_modify.git",
-                "reference": "1.0.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/media_library_media_modify-1.0.0.zip",
-                "reference": "1.0.0",
-                "shasum": "62386e5b8f9ec926fc58ecff1145aae6f835808a"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10"
-            },
-            "require-dev": {
-                "drupal/diff": "^1.0",
-                "drupal/inline_entity_form": "1.0-rc14",
-                "drush/drush": "^12.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.0.0",
-                    "datestamp": "1723624265",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "patches": {
-                    "drupal/core": {
-                        "Issue #3263397-10: Simplify form logic in media library": "https://www.drupal.org/files/issues/2023-01-19/3263397-16.patch"
-                    },
-                    "drupal/inline_entity_form": {
-                        "Issue #3271293: Changes are lost when collapsing a paragraphs subform including an inline_entity_form": "https://www.drupal.org/files/issues/2022-09-22/47-8.diff"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Christian Fritsch",
-                    "homepage": "https://www.drupal.org/user/157725",
-                    "email": "christian.fritsch@burda.com"
-                },
-                {
-                    "name": "chr.fritsch",
-                    "homepage": "https://www.drupal.org/user/2103716"
-                },
-                {
-                    "name": "daniel.bosen",
-                    "homepage": "https://www.drupal.org/user/404865"
-                },
-                {
-                    "name": "volkerk",
-                    "homepage": "https://www.drupal.org/user/57527"
-                }
-            ],
-            "description": "Store context specific overrides for entity reference fields.",
-            "homepage": "https://www.drupal.org/project/media_library_media_modify",
-            "support": {
-                "source": "https://git.drupalcode.org/project/media_library_media_modify"
-            }
-        },
-        {
-            "name": "drupal/media_responsive_thumbnail",
-            "version": "1.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/media_responsive_thumbnail.git",
-                "reference": "8.x-1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/media_responsive_thumbnail-8.x-1.5.zip",
-                "reference": "8.x-1.5",
-                "shasum": "ef96d0c4e4f2759eb19888823e9e733af67f7445"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.5",
-                    "datestamp": "1678903132",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "tunic",
-                    "homepage": "https://www.drupal.org/user/397132"
-                },
-                {
-                    "name": "yoruvo",
-                    "homepage": "https://www.drupal.org/user/2989799"
-                }
-            ],
-            "description": "Adds a field formatter for Media references which displays a responsive image.",
-            "homepage": "https://www.drupal.org/project/media_responsive_thumbnail",
-            "support": {
-                "source": "https://git.drupalcode.org/project/media_responsive_thumbnail"
-            }
-        },
-        {
-            "name": "drupal/menu_admin_per_menu",
-            "version": "1.6.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
-                "reference": "8.x-1.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip",
-                "reference": "8.x-1.6",
-                "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a"
-            },
-            "require": {
-                "drupal/core": "^10.2 || ^11.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.6",
-                    "datestamp": "1726150514",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "anrikun",
-                    "homepage": "https://www.drupal.org/user/410199"
-                },
-                {
-                    "name": "jeroent",
-                    "homepage": "https://www.drupal.org/user/2228934"
-                },
-                {
-                    "name": "jonas139",
-                    "homepage": "https://www.drupal.org/user/2873401"
-                },
-                {
-                    "name": "mkdok",
-                    "homepage": "https://www.drupal.org/user/3308753"
-                }
-            ],
-            "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
-            "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
-                "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
+                "source": "https://git.drupalcode.org/project/link_attributes"
             }
         },
         {
             "name": "drupal/menu_block",
-            "version": "1.14.0",
+            "version": "1.5.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/menu_block.git",
-                "reference": "8.x-1.14"
+                "reference": "8.x-1.5"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
-                "reference": "8.x-1.14",
-                "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
+                "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
+                "reference": "8.x-1.5",
+                "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
             },
             "require": {
-                "drupal/core": "^10.1 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.14",
-                    "datestamp": "1740624449",
+                    "version": "8.x-1.5",
+                    "datestamp": "1525200184",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -12476,25 +6517,21 @@
             ],
             "authors": [
                 {
-                    "name": "dave reid",
+                    "name": "Dave Reid",
                     "homepage": "https://www.drupal.org/user/53892"
                 },
+                {
+                    "name": "JohnAlbin",
+                    "homepage": "https://www.drupal.org/user/32095"
+                },
                 {
                     "name": "joelpittet",
                     "homepage": "https://www.drupal.org/user/160302"
                 },
-                {
-                    "name": "johnalbin",
-                    "homepage": "https://www.drupal.org/user/32095"
-                },
                 {
                     "name": "kim.pepper",
                     "homepage": "https://www.drupal.org/user/370574"
                 },
-                {
-                    "name": "renatog",
-                    "homepage": "https://www.drupal.org/user/3326031"
-                },
                 {
                     "name": "rrrob",
                     "homepage": "https://www.drupal.org/user/273533"
@@ -12507,30 +6544,37 @@
             }
         },
         {
-            "name": "drupal/menu_link_config",
-            "version": "1.0.0-alpha9",
+            "name": "drupal/message",
+            "version": "1.0.0-rc2",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/menu_link_config.git",
-                "reference": "8.x-1.0-alpha9"
+                "url": "https://git.drupalcode.org/project/message.git",
+                "reference": "8.x-1.0-rc2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha9.zip",
-                "reference": "8.x-1.0-alpha9",
-                "shasum": "de8dc902de9fea403240c6371b9aaa309c5f8077"
+                "url": "https://ftp.drupal.org/files/projects/message-8.x-1.0-rc2.zip",
+                "reference": "8.x-1.0-rc2",
+                "shasum": "8c74e4e98fd6bfa19728f499dc5f14ce29f5ba17"
             },
             "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
+                "drupal/core": "*"
+            },
+            "require-dev": {
+                "drupal/coder": "^8.2",
+                "drupal/token": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.0-alpha9",
-                    "datestamp": "1741211826",
+                    "version": "8.x-1.0-rc2",
+                    "datestamp": "1524519784",
                     "security-coverage": {
                         "status": "not-covered",
-                        "message": "Project has not opted into security advisory coverage!"
+                        "message": "RC releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -12540,151 +6584,24 @@
             ],
             "authors": [
                 {
-                    "name": "dawehner",
-                    "homepage": "https://www.drupal.org/user/99340"
+                    "name": "Grayside",
+                    "homepage": "https://www.drupal.org/user/346868"
                 },
                 {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
+                    "name": "RoySegall",
+                    "homepage": "https://www.drupal.org/user/1812910"
                 },
-                {
-                    "name": "hydra",
-                    "homepage": "https://www.drupal.org/user/647364"
-                },
-                {
-                    "name": "labboy0276",
-                    "homepage": "https://www.drupal.org/user/2397942"
-                },
-                {
-                    "name": "malcomio",
-                    "homepage": "https://www.drupal.org/user/418511"
-                },
-                {
-                    "name": "tstoeckler",
-                    "homepage": "https://www.drupal.org/user/107158"
-                }
-            ],
-            "description": "muh",
-            "homepage": "https://www.drupal.org/project/menu_link_config",
-            "support": {
-                "source": "https://git.drupalcode.org/project/menu_link_config"
-            }
-        },
-        {
-            "name": "drupal/menu_trail_by_path",
-            "version": "2.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/menu_trail_by_path.git",
-                "reference": "2.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.1.1.zip",
-                "reference": "2.1.1",
-                "shasum": "cd636347d775e986aa7d05af7783db860fbac27a"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.1",
-                    "datestamp": "1736754552",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "berdir",
-                    "homepage": "https://www.drupal.org/user/214652"
-                },
-                {
-                    "name": "davy-r",
-                    "homepage": "https://www.drupal.org/user/3278771"
-                },
-                {
-                    "name": "mbovan",
-                    "homepage": "https://www.drupal.org/user/3149657"
-                },
-                {
-                    "name": "redndahead",
-                    "homepage": "https://www.drupal.org/user/160320"
-                },
-                {
-                    "name": "SeriousMatters",
-                    "homepage": "https://www.drupal.org/user/290439"
-                }
-            ],
-            "description": "Expand menus and set active-trail according to the current path.",
-            "homepage": "https://www.drupal.org/project/menu_trail_by_path",
-            "support": {
-                "source": "https://git.drupalcode.org/project/menu_trail_by_path"
-            }
-        },
-        {
-            "name": "drupal/message",
-            "version": "1.8.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/message.git",
-                "reference": "8.x-1.8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/message-8.x-1.8.zip",
-                "reference": "8.x-1.8",
-                "shasum": "461a00b425c9d8907f489e8109fb6b20871c463e"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/token": "^1.14"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.8",
-                    "datestamp": "1739744268",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
                 {
                     "name": "amitaibu",
                     "homepage": "https://www.drupal.org/user/57511"
                 },
                 {
-                    "name": "bluegeek9",
-                    "homepage": "https://www.drupal.org/user/1286304"
-                },
-                {
-                    "name": "Grayside",
-                    "homepage": "https://www.drupal.org/user/346868"
+                    "name": "itamar",
+                    "homepage": "https://www.drupal.org/user/1757910"
                 },
                 {
                     "name": "jhedstrom",
                     "homepage": "https://www.drupal.org/user/208732"
-                },
-                {
-                    "name": "RoySegall",
-                    "homepage": "https://www.drupal.org/user/1812910"
                 }
             ],
             "description": "Message",
@@ -12695,51 +6612,49 @@
         },
         {
             "name": "drupal/metatag",
-            "version": "2.1.0",
+            "version": "1.10.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/metatag.git",
-                "reference": "2.1.0"
+                "reference": "8.x-1.10"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/metatag-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "c28fe2fdac68a9370a6af6cbafff4425dd5148f3"
+                "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
+                "reference": "8.x-1.10",
+                "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
             },
             "require": {
-                "drupal/core": "^9.4 || ^10 || ^11",
-                "drupal/token": "^1.0",
-                "php": ">=8.0"
+                "drupal/core": "*",
+                "drupal/token": "^1.0"
             },
             "require-dev": {
-                "drupal/forum": "*",
-                "drupal/hal": "^1 || ^2 || ^9",
+                "drupal/devel": "^2.0",
                 "drupal/metatag_dc": "*",
                 "drupal/metatag_open_graph": "*",
                 "drupal/page_manager": "^4.0",
                 "drupal/redirect": "^1.0",
-                "ergebnis/composer-normalize": "*",
-                "mpyw/phpunit-patch-serializable-comparison": "*"
+                "drupal/restui": "^1.0",
+                "drupal/schema_metatag": "^1.0",
+                "drupal/schema_web_page": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1731004042",
+                    "version": "8.x-1.10",
+                    "datestamp": "1567099985",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
-                },
-                "composer-normalize": {
-                    "indent-size": 2,
-                    "indent-style": "space"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -12748,7 +6663,7 @@
                     "role": "Developer"
                 },
                 {
-                    "name": "dave reid",
+                    "name": "Dave Reid",
                     "homepage": "https://www.drupal.org/user/53892"
                 }
             ],
@@ -12759,35 +6674,305 @@
                 "seo"
             ],
             "support": {
-                "source": "https://git.drupalcode.org/project/metatag",
-                "issues": "https://www.drupal.org/project/issues/metatag",
-                "docs": "https://www.drupal.org/docs/8/modules/metatag"
+                "source": "http://cgit.drupalcode.org/metatag",
+                "issues": "http://drupal.org/project/issues/metatag"
             }
         },
         {
-            "name": "drupal/microformats",
-            "version": "2.0.0-beta3",
+            "name": "drupal/migrate_plus",
+            "version": "4.2.0",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/microformats.git",
-                "reference": "2.0.0-beta3"
+                "url": "https://git.drupalcode.org/project/migrate_plus.git",
+                "reference": "8.x-4.2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/microformats-2.0.0-beta3.zip",
-                "reference": "2.0.0-beta3",
-                "shasum": "2306661c616a2a340e831ecfdd969e6b06fb351e"
+                "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
+                "reference": "8.x-4.2",
+                "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
             },
             "require": {
-                "barnabywalters/mf-cleaner": "^0.1.4",
-                "drupal/core": "^8 || ^9 || ^10",
-                "mf2/mf2": "~0.3"
+                "drupal/core": "^8.3"
+            },
+            "require-dev": {
+                "drupal/entity": "*",
+                "drupal/migrate_example_advanced_setup": "*",
+                "drupal/migrate_example_setup": "*",
+                "drupal/migrate_tools": "*",
+                "drupal/profile": "*"
+            },
+            "suggest": {
+                "ext-soap": "*",
+                "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-4.x": "4.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-beta3",
-                    "datestamp": "1695297696",
+                    "version": "8.x-4.2",
+                    "datestamp": "1555683487",
+                    "security-coverage": {
+                        "status": "covered",
+                        "message": "Covered by Drupal's security advisory policy"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "Mike Ryan",
+                    "homepage": "https://www.drupal.org/u/mikeryan",
+                    "role": "Maintainer"
+                },
+                {
+                    "name": "mikeryan",
+                    "homepage": "https://www.drupal.org/user/4420"
+                }
+            ],
+            "description": "Enhancements to core migration support.",
+            "homepage": "https://www.drupal.org/project/migrate_plus",
+            "support": {
+                "source": "https://cgit.drupalcode.org/migrate_plus",
+                "issues": "https://www.drupal.org/project/issues/migrate_plus",
+                "irc": "irc://irc.freenode.org/drupal-migrate"
+            }
+        },
+        {
+            "name": "drupal/migrate_source_csv",
+            "version": "3.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/migrate_source_csv.git",
+                "reference": "8.x-3.1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.1.zip",
+                "reference": "8.x-3.1",
+                "shasum": "a6fad35d60ce886352135659a1c5f09e808d343b"
+            },
+            "require": {
+                "drupal/core": "^8.7",
+                "league/csv": "^9.1"
+            },
+            "require-dev": {
+                "drupal/migrate_plus": "4.x-dev",
+                "mikey179/vfsstream": "^1",
+                "phpunit/phpunit": "^4.8.35 || ^6.5"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-3.1",
+                    "datestamp": "1566225488",
+                    "security-coverage": {
+                        "status": "covered",
+                        "message": "Covered by Drupal's security advisory policy"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "Lucas Hedding",
+                    "homepage": "https://www.drupal.org/u/heddn",
+                    "role": "Maintainer"
+                },
+                {
+                    "name": "mikeryan",
+                    "homepage": "https://www.drupal.org/user/4420"
+                }
+            ],
+            "description": "CSV source migration.",
+            "homepage": "https://www.drupal.org/project/migrate_source_csv",
+            "support": {
+                "source": "https://cgit.drupalcode.org/migrate_source_csv",
+                "issues": "https://www.drupal.org/project/issues/migrate_source_csv",
+                "irc": "irc://irc.freenode.org/drupal-migrate"
+            }
+        },
+        {
+            "name": "drupal/migrate_tools",
+            "version": "4.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/migrate_tools.git",
+                "reference": "8.x-4.3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.3.zip",
+                "reference": "8.x-4.3",
+                "shasum": "dbff0c5dbfdeeeca2294cbd2a858b851b3ba0753"
+            },
+            "require": {
+                "drupal/core": "^8.3",
+                "drupal/migrate_plus": "^4 || ^5"
+            },
+            "require-dev": {
+                "drupal/migrate_plus": "4.x-dev",
+                "drupal/migrate_source_csv": "^2.2",
+                "drush/drush": "^9"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-4.x": "4.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-4.3",
+                    "datestamp": "1565213885",
+                    "security-coverage": {
+                        "status": "covered",
+                        "message": "Covered by Drupal's security advisory policy"
+                    }
+                },
+                "drush": {
+                    "services": {
+                        "drush.services.yml": "^9"
+                    }
+                },
+                "patches_applied": {
+                    "The limit option does not accept a value": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "heddn",
+                    "homepage": "https://www.drupal.org/user/1463982"
+                },
+                {
+                    "name": "mikeryan",
+                    "homepage": "https://www.drupal.org/user/4420"
+                },
+                {
+                    "name": "moshe weitzman",
+                    "homepage": "https://www.drupal.org/user/23"
+                }
+            ],
+            "description": "Tools to assist in developing and running migrations.",
+            "homepage": "http://drupal.org/project/migrate_tools",
+            "support": {
+                "source": "http://cgit.drupalcode.org/migrate_tools",
+                "issues": "http://drupal.org/project/migrate_tools",
+                "irc": "irc://irc.freenode.org/drupal-migrate"
+            }
+        },
+        {
+            "name": "drupal/migrate_upgrade",
+            "version": "3.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/migrate_upgrade.git",
+                "reference": "8.x-3.0"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-8.x-3.0.zip",
+                "reference": "8.x-3.0",
+                "shasum": "5d5788a3262ce88a95a943c9419736edfae4e32c"
+            },
+            "require": {
+                "drupal/core": "*",
+                "drupal/migrate_plus": "^4"
+            },
+            "require-dev": {
+                "drupal/migrate_plus": "4.x-dev",
+                "drush/drush": "^9"
+            },
+            "type": "drupal-module",
+            "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-3.0",
+                    "datestamp": "1547043784",
+                    "security-coverage": {
+                        "status": "covered",
+                        "message": "Covered by Drupal's security advisory policy"
+                    }
+                }
+            },
+            "notification-url": "https://packages.drupal.org/8/downloads",
+            "license": [
+                "GPL-2.0-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "abhishek-anand",
+                    "homepage": "https://www.drupal.org/user/468982"
+                },
+                {
+                    "name": "heddn",
+                    "homepage": "https://www.drupal.org/user/1463982"
+                },
+                {
+                    "name": "ksenzee",
+                    "homepage": "https://www.drupal.org/user/139855"
+                },
+                {
+                    "name": "mikeryan",
+                    "homepage": "https://www.drupal.org/user/4420"
+                },
+                {
+                    "name": "ultimike",
+                    "homepage": "https://www.drupal.org/user/51132"
+                },
+                {
+                    "name": "xjm",
+                    "homepage": "https://www.drupal.org/user/65776"
+                }
+            ],
+            "description": "Drush support for direct upgrades from older Drupal versions.",
+            "homepage": "https://www.drupal.org/project/migrate_upgrade",
+            "support": {
+                "source": "https://git.drupalcode.org/project/migrate_upgrade"
+            }
+        },
+        {
+            "name": "drupal/octavia",
+            "version": "1.0.0-beta4",
+            "source": {
+                "type": "git",
+                "url": "https://git.drupalcode.org/project/octavia.git",
+                "reference": "8.x-1.0-beta4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/octavia-8.x-1.0-beta4.zip",
+                "reference": "8.x-1.0-beta4",
+                "shasum": "d745d095236cb96146a4d294a1d61897f7b473df"
+            },
+            "require": {
+                "drupal/bulma": "^1.0-alpha2",
+                "drupal/core": "~8.0",
+                "drupal/skins": "^1.0-alpha4"
+            },
+            "type": "drupal-theme",
+            "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
+                "drupal": {
+                    "version": "8.x-1.0-beta4",
+                    "datestamp": "1566518585",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Beta releases are not covered by Drupal security advisories."
@@ -12800,641 +6985,13 @@
             ],
             "authors": [
                 {
-                    "name": "HongPong",
-                    "homepage": "https://www.drupal.org/user/60005"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Microformats to provide support for exchanging data objects",
-            "homepage": "https://www.drupal.org/project/microformats",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/microformats",
-                "issues": "http://drupal.org/project/issues/microformats"
-            }
-        },
-        {
-            "name": "drupal/migrate_plus",
-            "version": "6.0.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/migrate_plus.git",
-                "reference": "6.0.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.5.zip",
-                "reference": "6.0.5",
-                "shasum": "441e91086feaca7a6f1acf1735023fff0dfc5e1e"
-            },
-            "require": {
-                "drupal/core": ">=9.1",
-                "php": ">=7.4"
-            },
-            "require-dev": {
-                "drupal/migrate_example_advanced_setup": "*",
-                "drupal/migrate_example_setup": "*"
-            },
-            "suggest": {
-                "ext-soap": "*",
-                "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "6.0.5",
-                    "datestamp": "1732124623",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mike Ryan",
-                    "homepage": "https://www.drupal.org/u/mikeryan",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Lucas Hedding",
-                    "homepage": "https://www.drupal.org/u/heddn",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "mikeryan",
-                    "homepage": "https://www.drupal.org/user/4420"
-                }
-            ],
-            "description": "Enhancements to core migration support.",
-            "homepage": "https://www.drupal.org/project/migrate_plus",
-            "support": {
-                "source": "https://git.drupalcode.org/project/migrate_plus",
-                "issues": "https://www.drupal.org/project/issues/migrate_plus",
-                "slack": "#migrate"
-            }
-        },
-        {
-            "name": "drupal/migrate_source_csv",
-            "version": "3.7.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/migrate_source_csv.git",
-                "reference": "8.x-3.7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.7.zip",
-                "reference": "8.x-3.7",
-                "shasum": "d952a58003a4616176050ce4d486f9df9c6c59c9"
-            },
-            "require": {
-                "drupal/core": ">=9.1",
-                "league/csv": "^9.1",
-                "php": ">=7.1"
-            },
-            "require-dev": {
-                "drupal/migrate_plus": ">=5.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-3.7",
-                    "datestamp": "1735314551",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Lucas Hedding",
-                    "homepage": "https://www.drupal.org/u/heddn",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "CSV source migration.",
-            "homepage": "https://www.drupal.org/project/migrate_source_csv",
-            "support": {
-                "source": "https://cgit.drupalcode.org/migrate_source_csv",
-                "issues": "https://www.drupal.org/project/issues/migrate_source_csv"
-            }
-        },
-        {
-            "name": "drupal/migrate_tools",
-            "version": "6.0.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/migrate_tools.git",
-                "reference": "6.0.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.0.5.zip",
-                "reference": "6.0.5",
-                "shasum": "c82519b366f43827818b04bfbc0009a6e028b835"
-            },
-            "require": {
-                "drupal/core": ">=9.1",
-                "php": ">=7.4"
-            },
-            "require-dev": {
-                "drupal/migrate_plus": ">=5",
-                "drupal/migrate_source_csv": ">=3",
-                "drush/drush": ">=11"
-            },
-            "suggest": {
-                "drupal/migrate_plus": ">=5",
-                "drush/drush": ">=11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "6.0.5",
-                    "datestamp": "1730824457",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": ">=9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mike Ryan",
-                    "homepage": "https://www.drupal.org/u/mikeryan",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Lucas Hedding",
-                    "homepage": "https://www.drupal.org/u/heddn",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "mikeryan",
-                    "homepage": "https://www.drupal.org/user/4420"
-                }
-            ],
-            "description": "Tools to assist in developing and running migrations.",
-            "homepage": "http://drupal.org/project/migrate_tools",
-            "support": {
-                "source": "https://git.drupalcode.org/project/migrate_tools",
-                "issues": "https://www.drupal.org/project/issues/migrate_tools",
-                "slack": "#migrate"
-            }
-        },
-        {
-            "name": "drupal/migrate_upgrade",
-            "version": "4.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/migrate_upgrade.git",
-                "reference": "4.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.2.zip",
-                "reference": "4.0.2",
-                "shasum": "358f3cea91411b179a1c78841f1cc3166a947088"
-            },
-            "require": {
-                "drupal/core": ">=9",
-                "drupal/migrate_plus": ">=5",
-                "drush/drush": ">=9",
-                "php": ">7.3"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.2",
-                    "datestamp": "1719350600",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mike Ryan",
-                    "homepage": "https://www.drupal.org/u/mikeryan",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Lucas Hedding",
-                    "homepage": "https://www.drupal.org/u/heddn",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Drush support for direct upgrades from older Drupal versions.",
-            "homepage": "https://www.drupal.org/project/migrate_upgrade",
-            "support": {
-                "source": "https://git.drupalcode.org/project/migrate_upgrade",
-                "issues": "https://www.drupal.org/project/issues/migrate_upgrade",
-                "slack": "#migrate"
-            }
-        },
-        {
-            "name": "drupal/migration_helpers",
-            "version": "dev-1.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/migration_helpers.git",
-                "reference": "8fb26e7b1221690a93637500d6876e02eea182ce"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.0.x": "1.0.x-dev"
-                },
-                "drupal": {
-                    "version": "1.0.x-dev",
-                    "datestamp": "1721919021",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "dinarcon",
-                    "homepage": "https://www.drupal.org/user/909522"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Provides helpers to migrate data into modern Drupal.",
-            "homepage": "https://git.agaric.com/agaric/migration_helpers",
-            "support": {
-                "source": "https://git.drupalcode.org/project/migration_helpers"
-            }
-        },
-        {
-            "name": "drupal/minimalhtml",
-            "version": "2.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/minimalhtml.git",
-                "reference": "2.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/minimalhtml-2.0.2.zip",
-                "reference": "2.0.2",
-                "shasum": "1dc75beafb5d392fc63648826e8cecfad1a97c37"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/wysiwyg_linebreaks": "2.0.x-dev@dev"
-            },
-            "require-dev": {
-                "drupal/ckeditor": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.2",
-                    "datestamp": "1690397749",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Benjamin Melançon",
-                    "homepage": "https://agaric.com/mlncn",
-                    "email": "mlncn@agaric.com",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "See contributors",
-                    "homepage": "https://www.drupal.org/node/2937110/committers"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Minimal HTML provides a WYSIWYG text format suitable for basic uses like short text fields or administrator-configured notices.",
-            "homepage": "https://www.drupal.org/project/minimalhtml",
-            "support": {
-                "source": "https://git.drupalcode.org/project/minimalhtml",
-                "issues": "https://www.drupal.org/project/issues/minimalhtml"
-            }
-        },
-        {
-            "name": "drupal/minimalhtmltitle",
-            "version": "2.0.2",
-            "require": {
-                "drupal/ckeditor": "*",
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/minimalhtml": "^2"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.2",
-                    "datestamp": "1690397749",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "A super-minimal WYSIWYG text format for titles, subtitles, and other text not meant to be wrapped in paragraph tags or have any block-level HTML elements.",
-            "homepage": "https://www.drupal.org/project/minimalhtml",
-            "support": {
-                "source": "https://git.drupalcode.org/project/minimalhtml"
-            }
-        },
-        {
-            "name": "drupal/node_view_permissions",
-            "version": "1.6.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/node_view_permissions.git",
-                "reference": "8.x-1.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/node_view_permissions-8.x-1.6.zip",
-                "reference": "8.x-1.6",
-                "shasum": "f56e0d43f41f384c73d93e18abfbe38809533d5e"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.6",
-                    "datestamp": "1686297669",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "adcillc",
-                    "homepage": "https://www.drupal.org/user/366450"
-                },
-                {
-                    "name": "adci_contributor",
-                    "homepage": "https://www.drupal.org/user/1830536"
-                },
-                {
-                    "name": "hxdef",
-                    "homepage": "https://www.drupal.org/user/2622115"
-                }
-            ],
-            "description": "enables permissions 'View own content' and 'View any content' for each content type on permissions page",
-            "homepage": "http://drupal.org/project/node_view_permissions",
-            "support": {
-                "source": "https://git.drupalcode.org/project/node_view_permissions"
-            }
-        },
-        {
-            "name": "drupal/noreferrer",
-            "version": "1.18.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/noreferrer.git",
-                "reference": "8.x-1.18"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/noreferrer-8.x-1.18.zip",
-                "reference": "8.x-1.18",
-                "shasum": "2faed2bc3f104eafcc061d941137f981bbea2078"
-            },
-            "require": {
-                "drupal/core": "^8.7.7 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.18",
-                    "datestamp": "1716361226",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "mark burdett",
-                    "homepage": "https://www.drupal.org/u/mfb"
-                }
-            ],
-            "description": "Adds rel=\"noopener\" and/or rel=\"noreferrer\" to links.",
-            "homepage": "https://www.drupal.org/project/noreferrer",
-            "support": {
-                "source": "https://git.drupalcode.org/project/noreferrer",
-                "issues": "https://www.drupal.org/project/issues/noreferrer"
-            },
-            "funding": [
-                {
-                    "type": "github",
-                    "url": "https://github.com/sponsors/mfb"
-                },
-                {
-                    "type": "patreon",
-                    "url": "https://www.patreon.com/mfb"
-                }
-            ]
-        },
-        {
-            "name": "drupal/notfoundpassthrough",
-            "version": "dev-1.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/notfoundpassthrough.git",
-                "reference": "8561838b0636eec6a452b7f35bcec3c673a90a92"
-            },
-            "require": {
-                "drupal/core": "^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.x": "1.x-dev"
-                },
-                "drupal": {
-                    "version": "1.0.0-beta5+2-dev",
-                    "datestamp": "1736206027",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Benjamin Melançon",
-                    "homepage": "https://agaric.coop/mlncn",
-                    "email": "mlncn@agaric.coop",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "David Valdez",
-                    "homepage": "https://agaric.coop/gnuget",
-                    "email": "gnuget@agaric.coop",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Vlad Pavlovic",
-                    "homepage": "https://www.drupal.org/u/vladpavlovic",
-                    "role": "Creator"
-                },
-                {
-                    "name": "Lucian NEAG",
-                    "homepage": "https://www.drupal.org/u/luxian",
-                    "role": "Ported to Drupal 7"
-                },
-                {
-                    "name": "See contributors",
-                    "homepage": "https://www.drupal.org/node/3170743/committers"
-                }
-            ],
-            "homepage": "https://www.drupal.org/project/notfoundpassthrough",
-            "support": {
-                "source": "https://git.drupalcode.org/project/notfoundpassthrough",
-                "issues": "https://www.drupal.org/project/issues/notfoundpassthrough"
-            }
-        },
-        {
-            "name": "drupal/octavia",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/octavia.git",
-                "reference": "23b696b1a43ea4b0f07ab6233128b528ffde4170"
-            },
-            "require": {
-                "drupal/bulma": "1.x-dev@dev",
-                "drupal/components": "^3",
-                "drupal/core": "^9 || ^10",
-                "drupal/skins": "^2",
-                "drupal/twigsuggest": "^2"
-            },
-            "type": "drupal-theme",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.0-alpha1+23-dev",
-                    "datestamp": "1738971348",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
+                    "name": "cedewey",
+                    "homepage": "https://www.drupal.org/user/38694"
                 },
                 {
                     "name": "drutopia_gitlab",
                     "homepage": "https://www.drupal.org/user/3514271"
                 },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
                 {
                     "name": "mlncn",
                     "homepage": "https://www.drupal.org/user/64383"
@@ -13443,10 +7000,6 @@
                     "name": "nedjo",
                     "homepage": "https://www.drupal.org/user/4481"
                 },
-                {
-                    "name": "onion",
-                    "homepage": "https://www.drupal.org/user/260583"
-                },
                 {
                     "name": "ronaldmulero",
                     "homepage": "https://www.drupal.org/user/241652"
@@ -13471,107 +7024,35 @@
                 "issues": "https://gitlab.com/drutopia/octavia/issues"
             }
         },
-        {
-            "name": "drupal/octavia_camouflage",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/octavia_camouflage.git",
-                "reference": "500185349412e67ba9c0cc60e3e6d9befa17748c"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10",
-                "drupal/octavia": "^2"
-            },
-            "type": "drupal-theme",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.x-dev",
-                    "datestamp": "1744746689",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Project has not opted into security advisory coverage!"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "freescholar",
-                    "homepage": "https://www.drupal.org/user/69463"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "skgchp",
-                    "homepage": "https://www.drupal.org/user/3519194"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "A free-for-all-to-contribute-to set of skins for Drutopia's Octavia theme.",
-            "homepage": "https://gitlab.com/drutopia/octavia_camouflage",
-            "keywords": [
-                "drutopia",
-                "skins",
-                "theme"
-            ],
-            "support": {
-                "source": "https://gitlab.com/drutopia/octavia_camouflage/tree/8.x-1.x",
-                "issues": "https://gitlab.com/drutopia/octavia_camouflage/issues"
-            }
-        },
         {
             "name": "drupal/paragraphs",
-            "version": "1.19.0",
+            "version": "1.9.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/paragraphs.git",
-                "reference": "8.x-1.19"
+                "reference": "8.x-1.9"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
-                "reference": "8.x-1.19",
-                "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
+                "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.9.zip",
+                "reference": "8.x-1.9",
+                "shasum": "c04753047fc995bfa2236c272d0b8344d77ee25d"
             },
             "require": {
-                "drupal/core": "^10.2 || ^11",
+                "drupal/core": "~8",
                 "drupal/entity_reference_revisions": "~1.3"
             },
             "require-dev": {
-                "drupal/block_field": "1.x-dev",
-                "drupal/diff": "1.x-dev",
+                "drupal/block_field": "~1.0",
+                "drupal/ctools": "3.x-dev",
+                "drupal/diff": "~1.0",
                 "drupal/entity_browser": "2.x-dev",
                 "drupal/entity_usage": "2.x-dev",
-                "drupal/feeds": "^3",
-                "drupal/field_group": "3.x-dev",
-                "drupal/inline_entity_form": "3.x-dev",
+                "drupal/field_group": "~1.0",
+                "drupal/inline_entity_form": "~1.0",
                 "drupal/paragraphs-paragraphs_library": "*",
-                "drupal/replicate": "1.x-dev",
-                "drupal/search_api": "^1",
+                "drupal/replicate": "~1.0",
+                "drupal/search_api": "~1.0",
                 "drupal/search_api_db": "*"
             },
             "suggest": {
@@ -13579,9 +7060,12 @@
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.19",
-                    "datestamp": "1740907076",
+                    "version": "8.x-1.9",
+                    "datestamp": "1565881389",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -13590,32 +7074,28 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0"
             ],
             "authors": [
                 {
-                    "name": "berdir",
+                    "name": "Berdir",
                     "homepage": "https://www.drupal.org/user/214652"
                 },
                 {
-                    "name": "frans",
+                    "name": "Frans",
                     "homepage": "https://www.drupal.org/user/514222"
                 },
+                {
+                    "name": "Primsi",
+                    "homepage": "https://www.drupal.org/user/282629"
+                },
                 {
                     "name": "jeroen.b",
                     "homepage": "https://www.drupal.org/user/1853532"
                 },
-                {
-                    "name": "jstoller",
-                    "homepage": "https://www.drupal.org/user/99012"
-                },
                 {
                     "name": "miro_dietiker",
                     "homepage": "https://www.drupal.org/user/227761"
-                },
-                {
-                    "name": "primsi",
-                    "homepage": "https://www.drupal.org/user/282629"
                 }
             ],
             "description": "Enables the creation of Paragraphs entities.",
@@ -13624,99 +7104,34 @@
                 "source": "https://git.drupalcode.org/project/paragraphs"
             }
         },
-        {
-            "name": "drupal/paragraphs_features",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/paragraphs_features.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "1e82c20d5fdcbff8615af7d6797f272e85610496"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/paragraphs": "^1.13"
-            },
-            "require-dev": {
-                "drupal/gin": "^3.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1736258966",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Mladen Todorovic",
-                    "homepage": "https://www.drupal.org/user/2103716",
-                    "email": "mladen.todorovic@burda.com"
-                },
-                {
-                    "name": "Daniel Bosen",
-                    "homepage": "https://www.drupal.org/user/404865",
-                    "email": "daniel.bosen@burda.com"
-                },
-                {
-                    "name": "Christian Fritsch",
-                    "homepage": "https://www.drupal.org/user/3511180",
-                    "email": "christian.fritsch@burda.com"
-                },
-                {
-                    "name": "Volker Killesreiter",
-                    "homepage": "https://www.drupal.org/user/57527",
-                    "email": "volker.killesreiter@burda.com"
-                },
-                {
-                    "name": "Alex Pott",
-                    "email": "alex.a.pott@gmail.com"
-                }
-            ],
-            "description": "Paragraphs features for extending paragraphs widget functionality.",
-            "homepage": "https://www.drupal.org/project/paragraphs_features",
-            "support": {
-                "source": "https://git.drupalcode.org/project/paragraphs_features"
-            }
-        },
         {
             "name": "drupal/paranoia",
-            "version": "1.0.0-rc2",
+            "version": "1.0.0-alpha1",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/paranoia.git",
-                "reference": "8.x-1.0-rc2"
+                "reference": "8.x-1.0-alpha1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/paranoia-8.x-1.0-rc2.zip",
-                "reference": "8.x-1.0-rc2",
-                "shasum": "ef9037b90412a669e719ed7ba99a52f642e0a5be"
+                "url": "https://ftp.drupal.org/files/projects/paranoia-8.x-1.0-alpha1.zip",
+                "reference": "8.x-1.0-alpha1",
+                "shasum": "4beb9c8ad6fdcc4feb0dc78bc8ce0d56560f707e"
             },
             "require": {
-                "drupal/core": "^8.9 || ^9 || ^10"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.0-rc2",
-                    "datestamp": "1690562977",
+                    "version": "8.x-1.0-alpha1",
+                    "datestamp": "1506626344",
                     "security-coverage": {
                         "status": "not-covered",
-                        "message": "RC releases are not covered by Drupal security advisories."
+                        "message": "Alpha releases are not covered by Drupal security advisories."
                     }
                 }
             },
@@ -13737,10 +7152,6 @@
                     "name": "killes@www.drop.org",
                     "homepage": "https://www.drupal.org/user/227"
                 },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
                 {
                     "name": "nedjo",
                     "homepage": "https://www.drupal.org/user/4481"
@@ -13752,118 +7163,37 @@
                 "source": "https://git.drupalcode.org/project/paranoia"
             }
         },
-        {
-            "name": "drupal/password_policy",
-            "version": "4.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/password_policy.git",
-                "reference": "4.0.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/password_policy-4.0.3.zip",
-                "reference": "4.0.3",
-                "shasum": "f583ede0ebd749459538d02dd527028d57a4e1ac"
-            },
-            "require": {
-                "drupal/core": "^9.1 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.3",
-                    "datestamp": "1723552706",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "AohRveTPV",
-                    "homepage": "https://www.drupal.org/user/2760115"
-                },
-                {
-                    "name": "deekayen",
-                    "homepage": "https://www.drupal.org/user/972"
-                },
-                {
-                    "name": "Kristen Pol",
-                    "homepage": "https://www.drupal.org/user/8389"
-                },
-                {
-                    "name": "miglius",
-                    "homepage": "https://www.drupal.org/user/18741"
-                },
-                {
-                    "name": "nerdstein",
-                    "homepage": "https://www.drupal.org/user/1557710"
-                },
-                {
-                    "name": "paulocs",
-                    "homepage": "https://www.drupal.org/user/3640109"
-                },
-                {
-                    "name": "shrop",
-                    "homepage": "https://www.drupal.org/user/14767"
-                },
-                {
-                    "name": "vishalkhode",
-                    "homepage": "https://www.drupal.org/user/2439156"
-                }
-            ],
-            "description": "Sets up constraints and expiration of passwords.",
-            "homepage": "https://www.drupal.org/project/password_policy",
-            "support": {
-                "source": "https://git.drupalcode.org/project/password_policy",
-                "issues": "https://www.drupal.org/project/issues/password_policy"
-            }
-        },
         {
             "name": "drupal/pathauto",
-            "version": "1.13.0",
+            "version": "1.4.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/pathauto.git",
-                "reference": "8.x-1.13"
+                "reference": "8.x-1.4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
-                "reference": "8.x-1.13",
-                "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
+                "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.4.zip",
+                "reference": "8.x-1.4",
+                "shasum": "ddfb047ae04ca2ddf475d65f6c09bceb44169e25"
             },
             "require": {
-                "drupal/core": "^9.4 || ^10 || ^11",
+                "drupal/core": "^8.5",
                 "drupal/ctools": "*",
                 "drupal/token": "*"
             },
-            "require-dev": {
-                "drupal/forum": "*"
-            },
-            "suggest": {
-                "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
-            },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.13",
-                    "datestamp": "1739552840",
+                    "version": "8.x-1.4",
+                    "datestamp": "1554239887",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9 || ^10"
-                    }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -13872,11 +7202,11 @@
             ],
             "authors": [
                 {
-                    "name": "berdir",
+                    "name": "Berdir",
                     "homepage": "https://www.drupal.org/user/214652"
                 },
                 {
-                    "name": "dave reid",
+                    "name": "Dave Reid",
                     "homepage": "https://www.drupal.org/user/53892"
                 },
                 {
@@ -13891,633 +7221,34 @@
             "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
             "homepage": "https://www.drupal.org/project/pathauto",
             "support": {
-                "source": "https://cgit.drupalcode.org/pathauto",
-                "issues": "https://www.drupal.org/project/issues/pathauto",
-                "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
-            }
-        },
-        {
-            "name": "drupal/pdf_api",
-            "version": "2.4.4",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/pdf_api.git",
-                "reference": "2.4.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/pdf_api-2.4.4.zip",
-                "reference": "2.4.4",
-                "shasum": "345309e4f1e0864ecded71c8226b4de0db95a505"
-            },
-            "require": {
-                "dompdf/dompdf": ">=2.0.4",
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11",
-                "mikehaertl/phpwkhtmltopdf": "^2.3",
-                "mpdf/mpdf": "^8.2.0",
-                "tecnickcom/tcpdf": "^6.8 || ^6.7.5"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.4.4",
-                    "datestamp": "1722646728",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "markdorison",
-                    "homepage": "https://www.drupal.org/user/346106"
-                },
-                {
-                    "name": "Nigel Cunningham",
-                    "homepage": "https://www.drupal.org/user/250105"
-                },
-                {
-                    "name": "Sutharsan",
-                    "homepage": "https://www.drupal.org/user/73854"
-                }
-            ],
-            "description": "Provides an API for generating PDFs.",
-            "homepage": "https://www.drupal.org/project/pdf_api",
-            "support": {
-                "source": "https://git.drupalcode.org/project/pdf_api"
-            }
-        },
-        {
-            "name": "drupal/plausible",
-            "version": "2.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/plausible.git",
-                "reference": "2.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/plausible-2.1.1.zip",
-                "reference": "2.1.1",
-                "shasum": "cf355cb4bb1820fad8b2cc3991e2521612ec0bbb"
-            },
-            "require": {
-                "drupal/core": "^8.8.6 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.1",
-                    "datestamp": "1732534895",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "dieterholvoet",
-                    "homepage": "https://www.drupal.org/user/3567222"
-                },
-                {
-                    "name": "droces",
-                    "homepage": "https://www.drupal.org/user/2996575"
-                },
-                {
-                    "name": "opdavies",
-                    "homepage": "https://www.drupal.org/user/381388"
-                }
-            ],
-            "description": "Allows your site to be tracked using Plausible, by adding a Javascript tracking snippet to every page.",
-            "homepage": "https://www.drupal.org/project/plausible",
-            "support": {
-                "source": "https://git.drupalcode.org/project/plausible"
-            }
-        },
-        {
-            "name": "drupal/prepopulate",
-            "version": "2.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/prepopulate.git",
-                "reference": "8.x-2.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.5.zip",
-                "reference": "8.x-2.5",
-                "shasum": "9efbac5cba063c79b0cfc4f82bcd87a31e0b123d"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/inline_entity_form": "^3.0@rc",
-                "drupal/og": "^1.x-dev"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.5",
-                    "datestamp": "1732903418",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Heddn",
-                    "homepage": "https://www.drupal.org/u/heddn",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Jbrauer",
-                    "homepage": "https://www.drupal.org/u/jbrauer",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Eafarris",
-                    "homepage": "https://www.drupal.org/u/eafarris",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "FF1",
-                    "homepage": "https://www.drupal.org/u/ff1",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Allows form elements to be prepopulated from the URL.",
-            "homepage": "https://www.drupal.org/project/prepopulate",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/prepopulate",
-                "issues": "https://www.drupal.org/project/issues/prepopulate"
-            }
-        },
-        {
-            "name": "drupal/preview_link",
-            "version": "2.2.0-alpha2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/preview_link.git",
-                "reference": "2.2.0-alpha2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/preview_link-2.2.0-alpha2.zip",
-                "reference": "2.2.0-alpha2",
-                "shasum": "7a2fd37b7b8d038919f31cfd4fb4b2c43168b6e0"
-            },
-            "require": {
-                "drupal/core": "^10.2 || ^11",
-                "drupal/dynamic_entity_reference": "^3 || ^4",
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "drupal/entity_reference_revisions": "*",
-                "drupal/paragraphs": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.2.0-alpha2",
-                    "datestamp": "1736820546",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "acbramley",
-                    "homepage": "https://www.drupal.org/user/1036766"
-                },
-                {
-                    "name": "benjy",
-                    "homepage": "https://www.drupal.org/user/1852732"
-                },
-                {
-                    "name": "dpi",
-                    "homepage": "https://www.drupal.org/user/81431"
-                },
-                {
-                    "name": "larowlan",
-                    "homepage": "https://www.drupal.org/user/395439"
-                },
-                {
-                    "name": "mstrelan",
-                    "homepage": "https://www.drupal.org/user/314289"
-                },
-                {
-                    "name": "sam152",
-                    "homepage": "https://www.drupal.org/user/1485048"
-                }
-            ],
-            "description": "Allows anyone to preview unpublished content with a unique link.",
-            "homepage": "https://www.drupal.org/project/preview_link",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/preview_link",
-                "issues": "https://www.drupal.org/project/issues/preview_link"
-            }
-        },
-        {
-            "name": "drupal/printable",
-            "version": "3.1.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/printable.git",
-                "reference": "3.1.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/printable-3.1.3.zip",
-                "reference": "3.1.3",
-                "shasum": "da44665d16bc2445fba519cbcc7dc448208d8f46"
-            },
-            "require": {
-                "drupal/core": "^9.4 || ^10 || ^11",
-                "drupal/pdf_api": "^2.4.0",
-                "wa72/htmlpagedom": "^1.3 || ^2.0 || 3.0"
-            },
-            "require-dev": {
-                "drupal/pdf_api": "*",
-                "smalot/pdfparser": "^1"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.1.3",
-                    "datestamp": "1720679594",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Nigel Cunningham",
-                    "homepage": "https://www.drupal.org/user/346106",
-                    "email": "nigel@nigelcunningham.com.au"
-                },
-                {
-                    "name": "Nigel Cunningham",
-                    "homepage": "https://www.drupal.org/user/250105"
-                }
-            ],
-            "description": "Generates printer friendly version of nodes",
-            "homepage": "https://www.drupal.org/project/printable",
-            "support": {
-                "source": "https://git.drupalcode.org/project/printable",
-                "issues": "https://www.drupal.org/project/issues/printable"
-            }
-        },
-        {
-            "name": "drupal/r4032login",
-            "version": "2.2.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/r4032login.git",
-                "reference": "2.2.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.3.zip",
-                "reference": "2.2.3",
-                "shasum": "6309c01b42ff6605cb6dd8f24ddde0c493f0fa2a"
-            },
-            "require": {
-                "drupal/core": "^9.3 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.2.3",
-                    "datestamp": "1737623532",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bdone",
-                    "homepage": "https://www.drupal.org/user/687670"
-                },
-                {
-                    "name": "Bevan",
-                    "homepage": "https://www.drupal.org/user/49989"
-                },
-                {
-                    "name": "deekayen",
-                    "homepage": "https://www.drupal.org/user/972"
-                },
-                {
-                    "name": "dieterholvoet",
-                    "homepage": "https://www.drupal.org/user/3567222"
-                },
-                {
-                    "name": "grayle",
-                    "homepage": "https://www.drupal.org/user/3145497"
-                },
-                {
-                    "name": "lotyrin",
-                    "homepage": "https://www.drupal.org/user/216580"
-                },
-                {
-                    "name": "markdorison",
-                    "homepage": "https://www.drupal.org/user/346106"
-                },
-                {
-                    "name": "ms2011",
-                    "homepage": "https://www.drupal.org/user/108440"
-                },
-                {
-                    "name": "nixou",
-                    "homepage": "https://www.drupal.org/user/2304734"
-                },
-                {
-                    "name": "pwolanin",
-                    "homepage": "https://www.drupal.org/user/49851"
-                },
-                {
-                    "name": "robloach",
-                    "homepage": "https://www.drupal.org/user/61114"
-                },
-                {
-                    "name": "shrop",
-                    "homepage": "https://www.drupal.org/user/14767"
-                },
-                {
-                    "name": "Sk8erPeter",
-                    "homepage": "https://www.drupal.org/user/1441344"
-                }
-            ],
-            "description": "Redirect anonymous users from 403 Access Denied pages to the /user/login page.",
-            "homepage": "https://www.drupal.org/project/r4032login",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/r4032login",
-                "issues": "https://www.drupal.org/project/issues/r4032login"
-            }
-        },
-        {
-            "name": "drupal/rabbit_hole",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/rabbit_hole.git",
-                "reference": "8.x-1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/rabbit_hole-8.x-1.0.zip",
-                "reference": "8.x-1.0",
-                "shasum": "9fd3129b27cd10e23a775719770bf2bda977c234"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/commerce": "^2.39",
-                "drupal/commerce_product": "*",
-                "drupal/file_entity": "*",
-                "drupal/group": "*",
-                "drupal/paragraphs-paragraphs_library": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0",
-                    "datestamp": "1721413113",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "aleksey.tk",
-                    "homepage": "https://www.drupal.org/user/22093"
-                },
-                {
-                    "name": "bohart",
-                    "homepage": "https://www.drupal.org/user/289861"
-                },
-                {
-                    "name": "dylan donkersgoed",
-                    "homepage": "https://www.drupal.org/user/2803351"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "matroskeen",
-                    "homepage": "https://www.drupal.org/user/3426249"
-                },
-                {
-                    "name": "mparker17",
-                    "homepage": "https://www.drupal.org/user/536298"
-                },
-                {
-                    "name": "Odd Hill",
-                    "homepage": "https://www.drupal.org/user/789934"
-                },
-                {
-                    "name": "olofbokedal",
-                    "homepage": "https://www.drupal.org/user/1198438"
-                }
-            ],
-            "description": "Basic functionality that is shared among the different Rabbit Hole modules.",
-            "homepage": "https://www.drupal.org/project/rabbit_hole",
-            "support": {
-                "source": "https://git.drupalcode.org/project/rabbit_hole"
-            }
-        },
-        {
-            "name": "drupal/rat",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/rat.git",
-                "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://git.drupalcode.org/api/v4/projects/project%2Frat/repository/archive.zip?sha=28202b02262a39ac8dbbfd43696b67c0c8c46b71",
-                "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.4 || ^8.0"
-            },
-            "require-dev": {
-                "drupal/core": "^9.4",
-                "drupal/core-dev": "^9.4"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Drupal\\rat\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "gpl-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Merlin",
-                    "email": "merlin@geeks4change.net"
-                }
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/rat/-/tree/1.0.0"
-            },
-            "time": "2023-07-19T22:22:22+00:00"
-        },
-        {
-            "name": "drupal/rdf",
-            "version": "2.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/rdf.git",
-                "reference": "2.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/rdf-2.1.1.zip",
-                "reference": "2.1.1",
-                "shasum": "9c897d1313abdabbe80806d79643faffaa0b2466"
-            },
-            "require": {
-                "drupal/core": "^9.4 || ^10.0",
-                "easyrdf/easyrdf": "^0.9 || ^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.1",
-                    "datestamp": "1666340902",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Arto",
-                    "homepage": "https://www.drupal.org/user/26089"
-                },
-                {
-                    "name": "bbrala",
-                    "homepage": "https://www.drupal.org/user/3366066"
-                },
-                {
-                    "name": "bhuga",
-                    "homepage": "https://www.drupal.org/user/186547"
-                },
-                {
-                    "name": "febbraro",
-                    "homepage": "https://www.drupal.org/user/43670"
-                },
-                {
-                    "name": "jmiccolis",
-                    "homepage": "https://www.drupal.org/user/31731"
-                },
-                {
-                    "name": "linclark",
-                    "homepage": "https://www.drupal.org/user/396253"
-                },
-                {
-                    "name": "miglius",
-                    "homepage": "https://www.drupal.org/user/18741"
-                },
-                {
-                    "name": "scor",
-                    "homepage": "https://www.drupal.org/user/52142"
-                },
-                {
-                    "name": "smustgrave",
-                    "homepage": "https://www.drupal.org/user/3252890"
-                }
-            ],
-            "description": "Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes",
-            "homepage": "https://www.drupal.org/project/rdf",
-            "support": {
-                "source": "https://git.drupalcode.org/project/rdf"
+                "source": "https://git.drupalcode.org/project/pathauto"
             }
         },
         {
             "name": "drupal/redirect",
-            "version": "1.11.0",
+            "version": "1.4.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/redirect.git",
-                "reference": "8.x-1.11"
+                "reference": "8.x-1.4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
-                "reference": "8.x-1.11",
-                "shasum": "7df8b3524bbde07d254216039636947a689140ef"
+                "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
+                "reference": "8.x-1.4",
+                "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
             },
             "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
+                "drupal/core": "~8"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.11",
-                    "datestamp": "1737382886",
+                    "version": "8.x-1.4",
+                    "datestamp": "1561757585",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -14526,21 +7257,17 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
-                    "name": "berdir",
+                    "name": "Berdir",
                     "homepage": "https://www.drupal.org/user/214652"
                 },
                 {
-                    "name": "dave reid",
+                    "name": "Dave Reid",
                     "homepage": "https://www.drupal.org/user/53892"
                 },
-                {
-                    "name": "kristen pol",
-                    "homepage": "https://www.drupal.org/user/8389"
-                },
                 {
                     "name": "pifagor",
                     "homepage": "https://www.drupal.org/user/2375692"
@@ -14552,703 +7279,27 @@
                 "source": "https://git.drupalcode.org/project/redirect"
             }
         },
-        {
-            "name": "drupal/redirect_404",
-            "version": "1.11.0",
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11",
-                "drupal/redirect": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.11",
-                    "datestamp": "1737382886",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "berdir",
-                    "homepage": "https://www.drupal.org/user/214652"
-                },
-                {
-                    "name": "dave reid",
-                    "homepage": "https://www.drupal.org/user/53892"
-                },
-                {
-                    "name": "kristen pol",
-                    "homepage": "https://www.drupal.org/user/8389"
-                },
-                {
-                    "name": "pifagor",
-                    "homepage": "https://www.drupal.org/user/2375692"
-                }
-            ],
-            "description": "Logs 404 errors and allows users to create redirects for often requested but missing pages.",
-            "homepage": "https://www.drupal.org/project/redirect",
-            "support": {
-                "source": "https://git.drupalcode.org/project/redirect"
-            }
-        },
-        {
-            "name": "drupal/regionincontent",
-            "version": "1.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/regionincontent.git",
-                "reference": "8.x-1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/regionincontent-8.x-1.1.zip",
-                "reference": "8.x-1.1",
-                "shasum": "3323c1215c4cfc3da3580e8d382c7cc0f691a513"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.1",
-                    "datestamp": "1699306875",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Provides the ability to print regions (the building block of Drupal site building— where blocks are placed) within content (node) templates.",
-            "homepage": "https://www.drupal.org/project/regionincontent",
-            "support": {
-                "source": "https://git.drupalcode.org/project/regionincontent"
-            }
-        },
-        {
-            "name": "drupal/registration_role",
-            "version": "2.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/registration_role.git",
-                "reference": "2.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/registration_role-2.0.2.zip",
-                "reference": "2.0.2",
-                "shasum": "3dcace022bae8fdbc4c66c86fa5b9b0274298a8b"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.2",
-                    "datestamp": "1739480619",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "karthikeyan-manivasagam",
-                    "homepage": "https://www.drupal.org/user/1494424"
-                },
-                {
-                    "name": "melon",
-                    "homepage": "https://www.drupal.org/user/32875"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "pfournier",
-                    "homepage": "https://www.drupal.org/user/160468"
-                },
-                {
-                    "name": "pignaz",
-                    "homepage": "https://www.drupal.org/user/471908"
-                },
-                {
-                    "name": "yogen.prasad",
-                    "homepage": "https://www.drupal.org/user/2115328"
-                }
-            ],
-            "description": "Automatically assign a role to all new users who register.",
-            "homepage": "https://www.drupal.org/project/registration_role",
-            "support": {
-                "source": "https://git.drupalcode.org/project/registration_role"
-            }
-        },
-        {
-            "name": "drupal/require_on_publish",
-            "version": "1.10.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/require_on_publish.git",
-                "reference": "8.x-1.10"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/require_on_publish-8.x-1.10.zip",
-                "reference": "8.x-1.10",
-                "shasum": "4ff1a062cceff6fb100d080cb59a6489e664920a"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.10",
-                    "datestamp": "1706803317",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Mike Priscella",
-                    "homepage": "https://drupal.org/u/mpriscella",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "mpriscella",
-                    "homepage": "https://www.drupal.org/user/2354820"
-                },
-                {
-                    "name": "pfunklange",
-                    "homepage": "https://www.drupal.org/user/566588"
-                }
-            ],
-            "description": "Adds ability to designate fields as required for publishing only.",
-            "homepage": "https://www.drupal.org/project/require_on_publish",
-            "keywords": [
-                "field",
-                "publish",
-                "require",
-                "require on publish",
-                "required field"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/require_on_publish",
-                "issues": "https://www.drupal.org/project/issues/require_on_publish"
-            }
-        },
-        {
-            "name": "drupal/rh_node",
-            "version": "1.0.0",
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11",
-                "drupal/rabbit_hole": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0",
-                    "datestamp": "1721413113",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "aleksey.tk",
-                    "homepage": "https://www.drupal.org/user/22093"
-                },
-                {
-                    "name": "bohart",
-                    "homepage": "https://www.drupal.org/user/289861"
-                },
-                {
-                    "name": "dylan donkersgoed",
-                    "homepage": "https://www.drupal.org/user/2803351"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "matroskeen",
-                    "homepage": "https://www.drupal.org/user/3426249"
-                },
-                {
-                    "name": "mparker17",
-                    "homepage": "https://www.drupal.org/user/536298"
-                },
-                {
-                    "name": "Odd Hill",
-                    "homepage": "https://www.drupal.org/user/789934"
-                },
-                {
-                    "name": "olofbokedal",
-                    "homepage": "https://www.drupal.org/user/1198438"
-                }
-            ],
-            "description": "Adds Rabbit Hole functionality for nodes.",
-            "homepage": "https://www.drupal.org/project/rabbit_hole",
-            "support": {
-                "source": "https://git.drupalcode.org/project/rabbit_hole"
-            }
-        },
-        {
-            "name": "drupal/riddler",
-            "version": "3.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/riddler.git",
-                "reference": "3.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/riddler-3.0.2.zip",
-                "reference": "3.0.2",
-                "shasum": "c4342ada86895cdb68c8fc83d1229f1e51cd8ecf"
-            },
-            "require": {
-                "drupal/captcha": "^2",
-                "drupal/core": "^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.2",
-                    "datestamp": "1738255331",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "alex_optim",
-                    "homepage": "https://www.drupal.org/user/3317601"
-                },
-                {
-                    "name": "anybody",
-                    "homepage": "https://www.drupal.org/user/291091"
-                },
-                {
-                    "name": "awolfey",
-                    "homepage": "https://www.drupal.org/user/277371"
-                },
-                {
-                    "name": "grevil",
-                    "homepage": "https://www.drupal.org/user/3668491"
-                },
-                {
-                    "name": "imerlin",
-                    "homepage": "https://www.drupal.org/user/21895"
-                },
-                {
-                    "name": "thomas.frobieter",
-                    "homepage": "https://www.drupal.org/user/409335"
-                }
-            ],
-            "description": "Provides a question and answer CAPTCHA.",
-            "homepage": "https://www.drupal.org/project/riddler",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/riddler",
-                "issues": "https://www.drupal.org/project/issues/riddler"
-            }
-        },
-        {
-            "name": "drupal/role_delegation",
-            "version": "1.3.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/role_delegation.git",
-                "reference": "8.x-1.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.3.zip",
-                "reference": "8.x-1.3",
-                "shasum": "e03d9c82d509a2630750e50a3452bd70ca1c55a6"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "require-dev": {
-                "drupal/action": "^0.2"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.3",
-                    "datestamp": "1726236826",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Jeroen Tubex",
-                    "homepage": "https://www.drupal.org/u/jeroent",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "benjy",
-                    "homepage": "https://www.drupal.org/user/1852732"
-                },
-                {
-                    "name": "jeroent",
-                    "homepage": "https://www.drupal.org/user/2228934"
-                }
-            ],
-            "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
-            "homepage": "http://drupal.org/project/role_delegation",
-            "support": {
-                "source": "https://git.drupalcode.org/project/role_delegation",
-                "issues": "http://drupal.org/project/role_delegation"
-            }
-        },
-        {
-            "name": "drupal/scheduler",
-            "version": "1.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/scheduler.git",
-                "reference": "8.x-1.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.5.zip",
-                "reference": "8.x-1.5",
-                "shasum": "206a9b6e348273aa2cf97ba429d437112b47469b"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "require-dev": {
-                "drupal/devel_generate": "^2.0 || >=4",
-                "drupal/rules": "^3",
-                "drush/drush": ">=9"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.5",
-                    "datestamp": "1683719323",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9 || ^10"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Eric Schaefer (Eric Schaefer)",
-                    "homepage": "https://www.drupal.org/u/eric-schaefer",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Jonathan Smith (jonathan1055)",
-                    "homepage": "https://www.drupal.org/u/jonathan1055",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Pieter Frenssen (pfrenssen)",
-                    "homepage": "https://www.drupal.org/u/pfrenssen",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Rick Manelius (rickmanelius)",
-                    "homepage": "https://www.drupal.org/u/rickmanelius",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Automatically publish and unpublish content at specified dates and times.",
-            "homepage": "https://drupal.org/project/scheduler",
-            "support": {
-                "source": "https://git.drupalcode.org/project/scheduler",
-                "issues": "https://www.drupal.org/project/issues/scheduler"
-            }
-        },
-        {
-            "name": "drupal/schema_metatag",
-            "version": "3.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/schema_metatag.git",
-                "reference": "3.0.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/schema_metatag-3.0.3.zip",
-                "reference": "3.0.3",
-                "shasum": "54fadabe0b56cb3a5f48a48ff438e8ad5883423c"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11",
-                "drupal/metatag": "^2.0",
-                "php": ">=8.0"
-            },
-            "require-dev": {
-                "drupal/coder": "^8.3",
-                "drupal/metatag_views": "*",
-                "drupal/schema_article": "*",
-                "drupal/schema_organization": "*",
-                "ergebnis/composer-normalize": "*",
-                "mpyw/phpunit-patch-serializable-comparison": "*",
-                "phpcompatibility/php-compatibility": "^9.3"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.3",
-                    "datestamp": "1721141808",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "composer-normalize": {
-                    "indent-size": 2,
-                    "indent-style": "space"
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "DamienMcKenna",
-                    "homepage": "https://www.drupal.org/user/108450"
-                },
-                {
-                    "name": "KarenS",
-                    "homepage": "https://www.drupal.org/user/45874"
-                },
-                {
-                    "name": "wells",
-                    "homepage": "https://www.drupal.org/user/2452278"
-                }
-            ],
-            "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
-            "homepage": "https://www.drupal.org/project/schema_metatag",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/schema_metatag",
-                "issues": "https://www.drupal.org/project/issues/schema_metatag"
-            }
-        },
-        {
-            "name": "drupal/scn",
-            "version": "2.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/scn.git",
-                "reference": "2.0.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/scn-2.0.3.zip",
-                "reference": "2.0.3",
-                "shasum": "f13d261528b5a61884ece9deb660c8e64c7d9ce7"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.3",
-                    "datestamp": "1689485714",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Andrei Ivnitskii",
-                    "homepage": "https://www.drupal.org/u/ivnish",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Notifies the site administrator by e-mail or telegram about new comments on the site.",
-            "homepage": "https://www.drupal.org/project/scn",
-            "support": {
-                "source": "https://git.drupalcode.org/project/scn",
-                "issues": "https://www.drupal.org/project/issues/scn"
-            }
-        },
-        {
-            "name": "drupal/search404",
-            "version": "2.1.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/search404.git",
-                "reference": "2.1.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/search404-2.1.2.zip",
-                "reference": "2.1.2",
-                "shasum": "1bd271486856e33a23c394849503477b97fbe25f"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.2",
-                    "datestamp": "1677067806",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "anoopjohn",
-                    "homepage": "https://www.drupal.org/user/188049"
-                },
-                {
-                    "name": "anybody",
-                    "homepage": "https://www.drupal.org/user/291091"
-                },
-                {
-                    "name": "binnythomas",
-                    "homepage": "https://www.drupal.org/user/3123091"
-                },
-                {
-                    "name": "emilymathew",
-                    "homepage": "https://www.drupal.org/user/2921997"
-                },
-                {
-                    "name": "grevil",
-                    "homepage": "https://www.drupal.org/user/3668491"
-                },
-                {
-                    "name": "jijojoseph_zyxware",
-                    "homepage": "https://www.drupal.org/user/3561263"
-                },
-                {
-                    "name": "larssg",
-                    "homepage": "https://www.drupal.org/user/655"
-                },
-                {
-                    "name": "varunity",
-                    "homepage": "https://www.drupal.org/user/273530"
-                },
-                {
-                    "name": "vimaljoseph",
-                    "homepage": "https://www.drupal.org/user/817380"
-                },
-                {
-                    "name": "zyxware",
-                    "homepage": "https://www.drupal.org/user/222163"
-                }
-            ],
-            "description": "Automatically search for the keywords in URLs that result in 404 errors and show results instead of Page-Not-Found.",
-            "homepage": "https://www.drupal.org/project/search404",
-            "support": {
-                "source": "https://git.drupalcode.org/project/search404"
-            }
-        },
         {
             "name": "drupal/search_api",
-            "version": "1.38.0",
+            "version": "1.14.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/search_api.git",
-                "reference": "8.x-1.38"
+                "reference": "8.x-1.14"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
-                "reference": "8.x-1.38",
-                "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
+                "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.14.zip",
+                "reference": "8.x-1.14",
+                "shasum": "bfc45a5ea3965cd8355927cd56a8f6a148cfc5e5"
             },
             "require": {
-                "drupal/core": "^10.2 || ^11"
+                "drupal/core": "^8.6"
             },
             "conflict": {
                 "drupal/search_api_solr": "2.* || 3.0 || 3.1"
             },
             "require-dev": {
-                "drupal/language_fallback_fix": "@dev",
                 "drupal/search_api_autocomplete": "@dev",
                 "drupal/search_api_db": "*"
             },
@@ -15259,18 +7310,29 @@
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.38",
-                    "datestamp": "1740298961",
+                    "version": "8.x-1.14",
+                    "datestamp": "1562599986",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
+                },
+                "drush": {
+                    "services": {
+                        "drush.services.yml": "^9"
+                    }
+                },
+                "patches_applied": {
+                    "Notice: Undefined index: total When we enable the module in the installation step": "https://www.drupal.org/files/issues/2931562-13--undefined_total_in_task_manager_batch_finish.patch"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -15289,77 +7351,26 @@
             "description": "Provides a generic framework for modules offering search capabilities.",
             "homepage": "https://www.drupal.org/project/search_api",
             "support": {
-                "source": "https://git.drupalcode.org/project/search_api",
+                "source": "http://git.drupal.org/project/search_api.git",
                 "issues": "https://www.drupal.org/project/issues/search_api",
                 "irc": "irc://irc.freenode.org/drupal-search-api"
             }
         },
-        {
-            "name": "drupal/search_api_autocomplete",
-            "version": "1.10.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/search_api_autocomplete.git",
-                "reference": "8.x-1.10"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.10.zip",
-                "reference": "8.x-1.10",
-                "shasum": "bd7d4a35a595efb866f6f5e2230d62d93b074927"
-            },
-            "require": {
-                "drupal/core": "^10.2 || ^11",
-                "drupal/search_api": "^1.0"
-            },
-            "require-dev": {
-                "drupal/search_api_page": "1.x-dev"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.10",
-                    "datestamp": "1736941746",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Thomas Seidl",
-                    "homepage": "https://www.drupal.org/u/drunken-monkey"
-                },
-                {
-                    "name": "See other contributors",
-                    "homepage": "https://www.drupal.org/node/1142202/committers"
-                }
-            ],
-            "description": "Adds autocomplete functionality to searches.",
-            "homepage": "https://www.drupal.org/project/search_api_autocomplete",
-            "support": {
-                "source": "http://git.drupal.org/project/search_api_autocomplete.git",
-                "issues": "https://www.drupal.org/project/issues/search_api_autocomplete",
-                "irc": "irc://irc.freenode.org/drupal-search-api"
-            }
-        },
         {
             "name": "drupal/search_api_db",
-            "version": "1.38.0",
+            "version": "1.14.0",
             "require": {
-                "drupal/core": "^10.2 || ^11",
-                "drupal/search_api": "*"
+                "drupal/core": "~8.0",
+                "drupal/search_api": "self.version"
             },
             "type": "metapackage",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.38",
-                    "datestamp": "1740298961",
+                    "version": "8.x-1.14",
+                    "datestamp": "1562599986",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -15371,6 +7382,10 @@
                 "GPL-2.0-or-later"
             ],
             "authors": [
+                {
+                    "name": "Nick_vh",
+                    "homepage": "https://www.drupal.org/user/122682"
+                },
                 {
                     "name": "borisson_",
                     "homepage": "https://www.drupal.org/user/2393360"
@@ -15378,10 +7393,6 @@
                 {
                     "name": "drunken monkey",
                     "homepage": "https://www.drupal.org/user/205582"
-                },
-                {
-                    "name": "nick_vh",
-                    "homepage": "https://www.drupal.org/user/122682"
                 }
             ],
             "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
@@ -15390,294 +7401,38 @@
                 "source": "https://git.drupalcode.org/project/search_api"
             }
         },
-        {
-            "name": "drupal/search_api_saved_searches",
-            "version": "1.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/search_api_saved_searches.git",
-                "reference": "8.x-1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.1.zip",
-                "reference": "8.x-1.1",
-                "shasum": "c5bc1de8f15143344fe2bad2d5589ec05ea280db"
-            },
-            "require": {
-                "drupal/core": "^10.1 || ^11",
-                "drupal/search_api": "^1.20"
-            },
-            "require-dev": {
-                "drupal/facets": "@dev",
-                "drupal/search_api_page": "@dev"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.1",
-                    "datestamp": "1740299097",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Thomas Seidl",
-                    "homepage": "https://www.drupal.org/u/drunken-monkey"
-                },
-                {
-                    "name": "See other contributors",
-                    "homepage": "https://www.drupal.org/node/1142202/committers"
-                }
-            ],
-            "description": "Allows visitors to bookmark searches and get notifications for new results.",
-            "homepage": "https://www.drupal.org/project/search_api_saved_searches",
-            "support": {
-                "source": "http://git.drupal.org/project/search_api_saved_searches.git",
-                "issues": "https://www.drupal.org/project/issues/search_api_saved_searches",
-                "irc": "irc://irc.freenode.org/drupal-search-api"
-            }
-        },
-        {
-            "name": "drupal/seckit",
-            "version": "2.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/seckit.git",
-                "reference": "2.0.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/seckit-2.0.3.zip",
-                "reference": "2.0.3",
-                "shasum": "34d38f2daaf99781ef6b7e7fbe2eeabc73a7ca16"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.3",
-                    "datestamp": "1726075930",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "badjava",
-                    "homepage": "https://www.drupal.org/user/83372"
-                },
-                {
-                    "name": "jweowu",
-                    "homepage": "https://www.drupal.org/user/152788"
-                },
-                {
-                    "name": "mcdruid",
-                    "homepage": "https://www.drupal.org/user/255969"
-                },
-                {
-                    "name": "p0deje",
-                    "homepage": "https://www.drupal.org/user/529960"
-                }
-            ],
-            "description": "SecKit provides Drupal with various security-hardening options.",
-            "homepage": "https://www.drupal.org/project/seckit",
-            "keywords": [
-                "Drupal",
-                "security"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/seckit",
-                "issues": "http://drupal.org/project/issues/seckit"
-            }
-        },
-        {
-            "name": "drupal/select_or_other",
-            "version": "4.2.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/select_or_other.git",
-                "reference": "4.2.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/select_or_other-4.2.0.zip",
-                "reference": "4.2.0",
-                "shasum": "1e33d196a7bc6116c66d5e77b53e2fee6f1e62d9"
-            },
-            "require": {
-                "drupal/core": "^10.1 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.2.0",
-                    "datestamp": "1733203728",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "daften",
-                    "homepage": "https://www.drupal.org/user/176274"
-                },
-                {
-                    "name": "danielb",
-                    "homepage": "https://www.drupal.org/user/134005"
-                },
-                {
-                    "name": "haydeniv",
-                    "homepage": "https://www.drupal.org/user/149501"
-                },
-                {
-                    "name": "hmendes",
-                    "homepage": "https://www.drupal.org/user/3673677"
-                },
-                {
-                    "name": "ivnish",
-                    "homepage": "https://www.drupal.org/user/3547706"
-                },
-                {
-                    "name": "legolasbo",
-                    "homepage": "https://www.drupal.org/user/2480548"
-                },
-                {
-                    "name": "qzmenko",
-                    "homepage": "https://www.drupal.org/user/3220037"
-                },
-                {
-                    "name": "vladbo",
-                    "homepage": "https://www.drupal.org/user/2696261"
-                }
-            ],
-            "description": "Provides a select box form element with additional option 'Other' to give a textfield.",
-            "homepage": "https://www.drupal.org/project/select_or_other",
-            "support": {
-                "source": "https://git.drupalcode.org/project/select_or_other"
-            }
-        },
-        {
-            "name": "drupal/shield",
-            "version": "1.8.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/shield.git",
-                "reference": "8.x-1.8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.8.zip",
-                "reference": "8.x-1.8",
-                "shasum": "709b5580790a3b5bd8dda26f722cdb5a9c3911c5"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/key": "^1.16"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.8",
-                    "datestamp": "1719947682",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "branch-alias": {
-                    "dev-8.x-1.x": "1.x-dev"
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "badjava",
-                    "homepage": "https://www.drupal.org/user/83372"
-                },
-                {
-                    "name": "chx",
-                    "homepage": "https://www.drupal.org/user/9446"
-                },
-                {
-                    "name": "geek-merlin",
-                    "homepage": "https://www.drupal.org/user/229048"
-                },
-                {
-                    "name": "japerry",
-                    "homepage": "https://www.drupal.org/user/45640"
-                },
-                {
-                    "name": "kalman.hosszu",
-                    "homepage": "https://www.drupal.org/user/267481"
-                },
-                {
-                    "name": "pkiraly",
-                    "homepage": "https://www.drupal.org/user/352587"
-                },
-                {
-                    "name": "vbouchet",
-                    "homepage": "https://www.drupal.org/user/1671428"
-                }
-            ],
-            "description": "Creates a general shield for the site.",
-            "homepage": "https://www.drupal.org/project/shield",
-            "support": {
-                "source": "https://git.drupalcode.org/project/shield"
-            }
-        },
         {
             "name": "drupal/similarterms",
-            "version": "1.9.0",
+            "version": "1.3.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/similarterms.git",
-                "reference": "8.x-1.9"
+                "reference": "8.x-1.3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.9.zip",
-                "reference": "8.x-1.9",
-                "shasum": "73aab93a7de4ed6a9fc2f18181b2eeee34324b6d"
+                "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.3.zip",
+                "reference": "8.x-1.3",
+                "shasum": "46f2c36340e3bb2c40a250ff3a3de29947cdd609"
             },
             "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
+                "drupal/core": "*"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.9",
-                    "datestamp": "1722872728",
+                    "version": "8.x-1.3",
+                    "datestamp": "1469824139",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
+                },
+                "patches_applied": {
+                    "PHP fatal error, SimilarTermsArgument::query() must be compatible with NumericArgument": "https://www.drupal.org/files/issues/query_4.patch"
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -15689,10 +7444,6 @@
                     "name": "rmiddle",
                     "homepage": "https://www.drupal.org/user/192183"
                 },
-                {
-                    "name": "shelane",
-                    "homepage": "https://www.drupal.org/user/2674989"
-                },
                 {
                     "name": "takim",
                     "homepage": "https://www.drupal.org/user/252386"
@@ -15705,37 +7456,33 @@
             }
         },
         {
-            "name": "drupal/simple_sitemap",
-            "version": "4.2.2",
+            "name": "drupal/skins",
+            "version": "1.0.0-alpha4",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/simple_sitemap.git",
-                "reference": "4.2.2"
+                "url": "https://git.drupalcode.org/project/skins.git",
+                "reference": "8.x-1.0-alpha4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.2.zip",
-                "reference": "4.2.2",
-                "shasum": "1f9c9197d37450fb347a4fa3f10191f5f4b5ef13"
+                "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-alpha4.zip",
+                "reference": "8.x-1.0-alpha4",
+                "shasum": "877bb89f55f514b7c8d8dd535ce9576e5faa5eab"
             },
             "require": {
-                "drupal/core": "^10.2 || ^11",
-                "ext-xmlwriter": "*"
-            },
-            "conflict": {
-                "drush/drush": "<12.5.1"
-            },
-            "require-dev": {
-                "drupal/paragraphs": "^1.18"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "4.2.2",
-                    "datestamp": "1732485885",
+                    "version": "8.x-1.0-alpha4",
+                    "datestamp": "1565305981",
                     "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
+                        "status": "not-covered",
+                        "message": "Project has not opted into security advisory coverage!"
                     }
                 }
             },
@@ -15745,48 +7492,48 @@
             ],
             "authors": [
                 {
-                    "name": "Pawel Ginalski (gbyte)",
-                    "homepage": "https://www.drupal.org/u/gbyte",
-                    "email": "contact@gbyte.dev",
-                    "role": "Maintainer"
+                    "name": "Poieo",
+                    "homepage": "https://www.drupal.org/user/303228"
                 },
                 {
-                    "name": "walkingdexter",
-                    "homepage": "https://www.drupal.org/user/3251330"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
                 }
             ],
-            "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
-            "homepage": "https://drupal.org/project/simple_sitemap",
+            "description": "Enable themes to provide a set of skins with distinct stylesheets and templates.",
+            "homepage": "https://www.drupal.org/project/skins",
             "support": {
-                "source": "https://cgit.drupalcode.org/simple_sitemap",
-                "issues": "https://drupal.org/project/issues/simple_sitemap"
+                "source": "https://git.drupalcode.org/project/skins"
             }
         },
         {
-            "name": "drupal/skins",
-            "version": "2.0.0-alpha1",
+            "name": "drupal/social_media_links",
+            "version": "2.6.0",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/skins.git",
-                "reference": "2.0.0-alpha1"
+                "url": "https://git.drupalcode.org/project/social_media_links.git",
+                "reference": "8.x-2.6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/skins-2.0.0-alpha1.zip",
-                "reference": "2.0.0-alpha1",
-                "shasum": "192b0ba615b866f0d36feebfc99d9a3ff58f86c0"
+                "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.6.zip",
+                "reference": "8.x-2.6",
+                "shasum": "53462cb307b104552ae5370b917e55ca50fba526"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-2.x": "2.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-alpha1",
-                    "datestamp": "1687484216",
+                    "version": "8.x-2.6",
+                    "datestamp": "1510489384",
                     "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Alpha releases are not covered by Drupal security advisories."
+                        "status": "covered",
+                        "message": "Covered by Drupal's security advisory policy"
                     }
                 }
             },
@@ -15796,357 +7543,8 @@
             ],
             "authors": [
                 {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "Poieo",
-                    "homepage": "https://www.drupal.org/user/303228"
-                }
-            ],
-            "description": "Enable themes or modules to provide a set of skins with distinct stylesheets and templates.",
-            "homepage": "http://drupal.org/project/skins",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/skins",
-                "issues": "http://drupal.org/project/issues/skins"
-            }
-        },
-        {
-            "name": "drupal/smart_date",
-            "version": "4.2.3",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/smart_date.git",
-                "reference": "4.2.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/smart_date-4.2.3.zip",
-                "reference": "4.2.3",
-                "shasum": "f4e97acce3bd666cf553b85c87b466eb172da69c"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11",
-                "php": ">=8.1",
-                "simshaun/recurr": "^5"
-            },
-            "require-dev": {
-                "drush/drush": "*"
-            },
-            "suggest": {
-                "drupal/multiple_fields_remove_button": "Provides a button for editors to remove unwanted rows."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.2.3",
-                    "datestamp": "1740856565",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "mandclu",
-                    "homepage": "https://www.drupal.org/user/52136"
-                },
-                {
-                    "name": "stefan.korn",
-                    "homepage": "https://www.drupal.org/user/1942204"
-                }
-            ],
-            "description": "Adds app-like date and recurring date functionality.",
-            "homepage": "https://www.drupal.org/project/smart_date",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/smart_date",
-                "issues": "https://www.drupal.org/project/issues/smart_date",
-                "documentation": "https://www.drupal.org/docs/contributed-modules/smart-date"
-            }
-        },
-        {
-            "name": "drupal/sms",
-            "version": "2.3.0",
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/dynamic_entity_reference": "^3 || ^4",
-                "drupal/smsframework": "^2",
-                "php": ">=8.1"
-            },
-            "conflict": {
-                "drupal/coder": "<8.3.26"
-            },
-            "require-dev": {
-                "mglaman/phpstan-drupal": "^1",
-                "phpstan/extension-installer": "^1.4",
-                "phpstan/phpstan": "^1.11",
-                "phpstan/phpstan-deprecation-rules": "*",
-                "previousnext/coding-standard": "^1.0"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "2.3.0",
-                    "datestamp": "1733714927",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Aniebiet Udoh",
-                    "homepage": "https://www.drupal.org/u/almaudoh",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Daniel Phin",
-                    "homepage": "http://danielph.in",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "dpi",
-                    "homepage": "https://www.drupal.org/user/81431"
-                }
-            ],
-            "description": "Provides an extensible API that facilitates communication between Drupal and various SMS gateways.",
-            "homepage": "http://drupal.org/project/smsframework",
-            "support": {
-                "source": "https://git.drupalcode.org/project/smsframework",
-                "issues": "https://www.drupal.org/project/issues/smsframework"
-            }
-        },
-        {
-            "name": "drupal/smsframework",
-            "version": "2.3.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/smsframework.git",
-                "reference": "2.3.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/smsframework-2.3.0.zip",
-                "reference": "2.3.0",
-                "shasum": "37e24980f7478eeef38b7a811fba7175606df235"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/dynamic_entity_reference": "^3 || ^4",
-                "php": ">=8.1"
-            },
-            "conflict": {
-                "drupal/coder": "<8.3.26"
-            },
-            "replace": {
-                "drupal/sms_blast": "self.version",
-                "drupal/sms_devel": "self.version",
-                "drupal/sms_sendtophone": "self.version",
-                "drupal/sms_user": "self.version"
-            },
-            "require-dev": {
-                "drupal/dynamic_entity_reference": "*",
-                "drupal/sms": "*",
-                "mglaman/phpstan-drupal": "^1",
-                "phpstan/extension-installer": "^1.4",
-                "phpstan/phpstan": "^1.11",
-                "phpstan/phpstan-deprecation-rules": "*",
-                "previousnext/coding-standard": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.3.0",
-                    "datestamp": "1733714927",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Aniebiet Udoh",
-                    "homepage": "https://www.drupal.org/u/almaudoh",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Daniel Phin",
-                    "homepage": "http://danielph.in",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "dpi",
-                    "homepage": "https://www.drupal.org/user/81431"
-                }
-            ],
-            "description": "Provides an extensible API that facilitates communication between Drupal and various SMS gateways.",
-            "homepage": "http://drupal.org/project/smsframework",
-            "support": {
-                "source": "https://git.drupalcode.org/project/smsframework",
-                "issues": "https://www.drupal.org/project/issues/smsframework"
-            }
-        },
-        {
-            "name": "drupal/social_api",
-            "version": "4.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/social_api.git",
-                "reference": "4.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/social_api-4.0.2.zip",
-                "reference": "4.0.2",
-                "shasum": "8da084f0262080b2dfbbaa0ffb72cc386c6221dc"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11",
-                "ext-openssl": "*",
-                "league/oauth2-client": "^2.0"
-            },
-            "require-dev": {
-                "drupal/coder": "^8.3",
-                "phpcompatibility/php-compatibility": "^9.3"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.0.2",
-                    "datestamp": "1725453406",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Getulio Sánchez (gvso)",
-                    "homepage": "https://www.drupal.org/u/gvso",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Himansh Dixit (himanshu-dixit)",
-                    "homepage": "https://www.drupal.org/user/3510098",
-                    "email": "hudixt@gmail.com"
-                },
-                {
-                    "name": "Chrsitopher C. Wells (wells)",
-                    "homepage": "https://www.drupal.org/user/550110",
-                    "email": "drupal.org@chris-wells.net"
-                },
-                {
-                    "name": "gvso",
-                    "homepage": "https://www.drupal.org/user/3101285"
-                },
-                {
-                    "name": "himanshu-dixit",
-                    "homepage": "https://www.drupal.org/user/3513954"
-                },
-                {
-                    "name": "wells",
-                    "homepage": "https://www.drupal.org/user/2452278"
-                }
-            ],
-            "description": "Harmonizes social networking services in Drupal",
-            "homepage": "https://www.drupal.org/project/social_api",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/social_api",
-                "issues": "https://www.drupal.org/project/issues/social_api"
-            }
-        },
-        {
-            "name": "drupal/social_media_links",
-            "version": "2.10.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/social_media_links.git",
-                "reference": "8.x-2.10"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.10.zip",
-                "reference": "8.x-2.10",
-                "shasum": "dd329d44f88112d2fe83f54331502738c5f2810b"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.10",
-                    "datestamp": "1724736719",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Neslee Canil Pinto",
-                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Christian Beier",
-                    "homepage": "https://www.drupal.org/u/cbeier",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "neslee canil pinto",
-                    "homepage": "https://www.drupal.org/user/3580850"
+                    "name": "cbeier",
+                    "homepage": "https://www.drupal.org/user/1500710"
                 }
             ],
             "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
@@ -16156,408 +7554,31 @@
                 "issues": "https://www.drupal.org/project/issues/social_media_links"
             }
         },
-        {
-            "name": "drupal/social_post",
-            "version": "3.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/social_post.git",
-                "reference": "3.0.2"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/social_post-3.0.2.zip",
-                "reference": "3.0.2",
-                "shasum": "616ce8d6c3f507b9ecf83434ccbd150e795cde77"
-            },
-            "require": {
-                "drupal/core": "^9.4 || ^10 || ^11",
-                "drupal/social_api": "^4",
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "drupal/coder": "^8.3",
-                "phpcompatibility/php-compatibility": "10.x-dev"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.0.2",
-                    "datestamp": "1725763360",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Getulio Valentin Sánchez (gvso)",
-                    "homepage": "https://www.drupal.org/user/550110",
-                    "email": "valentin2507@gmail.com"
-                },
-                {
-                    "name": "Himansh Dixit (himanshu-dixit)",
-                    "homepage": "https://www.drupal.org/user/3101285",
-                    "email": "hudixt@gmail.com"
-                },
-                {
-                    "name": "Chrsitopher C. Wells (wells)",
-                    "homepage": "https://www.drupal.org/user/2452278",
-                    "email": "drupal.org@chris-wells.net"
-                }
-            ],
-            "description": "Social Post",
-            "homepage": "https://www.drupal.org/project/social_post",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/social_post",
-                "issues": "https://www.drupal.org/project/issues/social_post"
-            }
-        },
-        {
-            "name": "drupal/social_post_facebook",
-            "version": "dev-3.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/social_post_facebook.git",
-                "reference": "eddf359ba9177adb81b63fa6c84e591b35603b51"
-            },
-            "require": {
-                "agaric/php-facebook": "dev-main",
-                "drupal/core": "^8 || ^9 || ^10",
-                "drupal/social_post": "^3"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-3.0.x": "3.0.x-dev"
-                },
-                "drupal": {
-                    "version": "3.0.x-dev",
-                    "datestamp": "1745366639",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "Getulio Valentin Sánchez (gvso)",
-                    "homepage": "https://www.drupal.org/user/440810",
-                    "email": "valentin2507@gmail.com"
-                },
-                {
-                    "name": "Himanshu Dixit (himanshu-dixit)",
-                    "homepage": "https://www.drupal.org/user/992990",
-                    "email": "hudixt@gmail.com"
-                },
-                {
-                    "name": "himanshu-dixit",
-                    "homepage": "https://www.drupal.org/user/3513954"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
-                }
-            ],
-            "description": "Social Post Facebook for Facebook",
-            "homepage": "https://www.drupal.org/project/social_post_facebook",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/social_post_facebook",
-                "issues": "https://www.drupal.org/project/issues/social_post_facebook"
-            }
-        },
-        {
-            "name": "drupal/social_post_twitter",
-            "version": "dev-3.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/social_post_twitter.git",
-                "reference": "13a10bf5c0cc6debe196b67163f2825e6ef3392e"
-            },
-            "require": {
-                "abraham/twitteroauth": ">=2",
-                "drupal/core": "^8.8 || ^9.0 || ^10",
-                "drupal/social_post": "^3.0"
-            },
-            "require-dev": {
-                "drupal/coder": "^8.3",
-                "drupal/rules": "3.x-dev",
-                "phpcompatibility/php-compatibility": "10.x-dev"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-3.x": "3.x-dev"
-                },
-                "drupal": {
-                    "version": "3.0.0+1-dev",
-                    "datestamp": "1720959231",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Getulio Valentin Sánchez (gvso)",
-                    "homepage": "https://www.drupal.org/user/3101285",
-                    "email": "valentin2507@gmail.com"
-                },
-                {
-                    "name": "Chrsitopher C. Wells (wells)",
-                    "homepage": "https://www.drupal.org/user/2452278",
-                    "email": "drupal.org@chris-wells.net"
-                }
-            ],
-            "description": "Social Post integration for Twitter",
-            "homepage": "https://www.drupal.org/project/social_post_twitter",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/social_post_twitter",
-                "issues": "https://www.drupal.org/project/issues/social_post_twitter"
-            }
-        },
-        {
-            "name": "drupal/stable",
-            "version": "2.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/stable.git",
-                "reference": "2.1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
-                "reference": "2.1.0",
-                "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11"
-            },
-            "type": "drupal-theme",
-            "extra": {
-                "drupal": {
-                    "version": "2.1.0",
-                    "datestamp": "1721202956",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "bnjmnm",
-                    "homepage": "https://www.drupal.org/user/2369194"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "Rajeshreeputra",
-                    "homepage": "https://www.drupal.org/user/3418561"
-                },
-                {
-                    "name": "star-szr",
-                    "homepage": "https://www.drupal.org/user/1167326"
-                }
-            ],
-            "description": "A base theme using Drupal core markup and CSS.",
-            "homepage": "https://www.drupal.org/project/stable",
-            "support": {
-                "source": "https://git.drupalcode.org/project/stable"
-            }
-        },
-        {
-            "name": "drupal/stringoverrides",
-            "version": "1.8.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/stringoverrides.git",
-                "reference": "8.x-1.8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/stringoverrides-8.x-1.8.zip",
-                "reference": "8.x-1.8",
-                "shasum": "5c621d593fc9d74079d76fb7970c7c648b98d0e7"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.8",
-                    "datestamp": "1671212608",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Audrius Vaitonis",
-                    "homepage": "https://www.drupal.org/user/454662"
-                },
-                {
-                    "name": "eaton",
-                    "homepage": "https://www.drupal.org/user/16496"
-                },
-                {
-                    "name": "hubdrop",
-                    "homepage": "https://www.drupal.org/user/2750597"
-                },
-                {
-                    "name": "manuel.adan",
-                    "homepage": "https://www.drupal.org/user/516420"
-                },
-                {
-                    "name": "Nitesh Sethia",
-                    "homepage": "https://www.drupal.org/user/2474982"
-                },
-                {
-                    "name": "pwolanin",
-                    "homepage": "https://www.drupal.org/user/49851"
-                },
-                {
-                    "name": "quicksketch",
-                    "homepage": "https://www.drupal.org/user/35821"
-                },
-                {
-                    "name": "RobLoach",
-                    "homepage": "https://www.drupal.org/user/61114"
-                },
-                {
-                    "name": "webchick",
-                    "homepage": "https://www.drupal.org/user/24967"
-                }
-            ],
-            "description": "Provides a quick and easy way of replacing text.",
-            "homepage": "https://www.drupal.org/project/stringoverrides",
-            "support": {
-                "source": "https://git.drupalcode.org/project/stringoverrides"
-            }
-        },
-        {
-            "name": "drupal/subpathauto",
-            "version": "1.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/subpathauto.git",
-                "reference": "8.x-1.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.4.zip",
-                "reference": "8.x-1.4",
-                "shasum": "fa9a737da79d396ee8019c944e0239865762ce48"
-            },
-            "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/redirect": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.4",
-                    "datestamp": "1729470928",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "dave reid",
-                    "homepage": "https://www.drupal.org/user/53892"
-                },
-                {
-                    "name": "lauriii",
-                    "homepage": "https://www.drupal.org/user/1078742"
-                },
-                {
-                    "name": "nickdickinsonwilde",
-                    "homepage": "https://www.drupal.org/user/3094661"
-                }
-            ],
-            "description": "Provides support for extending sub-paths of URL aliases.",
-            "homepage": "https://www.drupal.org/project/subpathauto",
-            "support": {
-                "source": "https://cgit.drupalcode.org/subpathauto",
-                "issues": "https://www.drupal.org/project/issues/subpathauto"
-            }
-        },
         {
             "name": "drupal/subprofiles",
-            "version": "2.0.0-alpha2",
+            "version": "1.0.0-alpha2",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/subprofiles.git",
-                "reference": "2.0.0-alpha2"
+                "reference": "8.x-1.0-alpha2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/subprofiles-2.0.0-alpha2.zip",
-                "reference": "2.0.0-alpha2",
-                "shasum": "2f5e16cf4a918d7e9873abbaa99a26788c8a63b3"
+                "url": "https://ftp.drupal.org/files/projects/subprofiles-8.x-1.0-alpha2.zip",
+                "reference": "8.x-1.0-alpha2",
+                "shasum": "ea694c467ea7834056d3f4961bd142f41d0acc33"
             },
             "require": {
-                "drupal/core": "^9.3 || ^10"
+                "drupal/core": "~8.0"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "2.0.0-alpha2",
-                    "datestamp": "1697325686",
+                    "version": "8.x-1.0-alpha2",
+                    "datestamp": "1507856720",
                     "security-coverage": {
                         "status": "not-covered",
                         "message": "Alpha releases are not covered by Drupal security advisories."
@@ -16566,289 +7587,53 @@
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
-                "GPL-2.0+"
+                "GPL-2.0-or-later"
             ],
             "authors": [
                 {
-                    "name": "drutopia",
-                    "homepage": "https://www.drupal.org/user/3763727"
-                },
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "MegaKeegMan",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
+                    "name": "nedjo",
+                    "homepage": "https://www.drupal.org/user/4481"
                 },
                 {
                     "name": "robertDouglass",
                     "homepage": "https://www.drupal.org/user/5449"
-                },
-                {
-                    "name": "wolcen",
-                    "homepage": "https://www.drupal.org/user/3099655"
                 }
             ],
             "description": "Provide multiple variations of a single installation profile.",
             "homepage": "https://www.drupal.org/project/subprofiles",
-            "keywords": [
-                "Drupal"
-            ],
             "support": {
-                "source": "https://git.drupalcode.org/project/subprofiles",
-                "issues": "http://drupal.org/project/issues/subprofiles"
-            }
-        },
-        {
-            "name": "drupal/taxonomy_import",
-            "version": "2.0.12",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/taxonomy_import.git",
-                "reference": "2.0.12"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/taxonomy_import-2.0.12.zip",
-                "reference": "2.0.12",
-                "shasum": "7ee3acb762e5f30208423c51035db1b889fe5785"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.12",
-                    "datestamp": "1680814752",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "aswathyajish",
-                    "homepage": "https://www.drupal.org/user/2584696"
-                },
-                {
-                    "name": "colan",
-                    "homepage": "https://www.drupal.org/user/58704"
-                },
-                {
-                    "name": "neethups",
-                    "homepage": "https://www.drupal.org/user/3516137"
-                },
-                {
-                    "name": "sajiniantony",
-                    "homepage": "https://www.drupal.org/user/2603884"
-                },
-                {
-                    "name": "tolstoydotcom",
-                    "homepage": "https://www.drupal.org/user/103055"
-                },
-                {
-                    "name": "vuil",
-                    "homepage": "https://www.drupal.org/user/3568458"
-                }
-            ],
-            "description": "A module to import taxonomy using CSV or XML file to a user defined vocabulary.",
-            "homepage": "https://www.drupal.org/project/taxonomy_import",
-            "keywords": [
-                "Drupal",
-                "taxonomy_import"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/taxonomy_import",
-                "issues": "https://www.drupal.org/project/issues/taxonomy_import",
-                "documentation": "https://www.drupal.org/project/taxonomy_import"
-            }
-        },
-        {
-            "name": "drupal/taxonomy_manager",
-            "version": "2.0.20",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/taxonomy_manager.git",
-                "reference": "2.0.20"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.20.zip",
-                "reference": "2.0.20",
-                "shasum": "69079226ff05c19087829319c99c06714759cfac"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11.0",
-                "drupal/jquery_ui": "^1.7"
-            },
-            "require-dev": {
-                "drupal/term_merge": "^2.0",
-                "drupal/term_reference_change": "^2.0"
-            },
-            "suggest": {
-                "fancytree/fancytree": "The fancytree library is required to use the drupal/taxonomy_manager module."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.20",
-                    "datestamp": "1745967696",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "alesbencina",
-                    "homepage": "https://www.drupal.org/user/3558110"
-                },
-                {
-                    "name": "andriy khomych",
-                    "homepage": "https://www.drupal.org/user/3287133"
-                },
-                {
-                    "name": "aurelianzaha",
-                    "homepage": "https://www.drupal.org/user/3575026"
-                },
-                {
-                    "name": "dragan_bp",
-                    "homepage": "https://www.drupal.org/user/3578037"
-                },
-                {
-                    "name": "JacobSanford",
-                    "homepage": "https://www.drupal.org/user/806538"
-                },
-                {
-                    "name": "joaogarin",
-                    "homepage": "https://www.drupal.org/user/612814"
-                },
-                {
-                    "name": "kalinchernev",
-                    "homepage": "https://www.drupal.org/user/231185"
-                },
-                {
-                    "name": "klausi",
-                    "homepage": "https://www.drupal.org/user/262198"
-                },
-                {
-                    "name": "mh86",
-                    "homepage": "https://www.drupal.org/user/59747"
-                },
-                {
-                    "name": "vladimiraus",
-                    "homepage": "https://www.drupal.org/user/673120"
-                }
-            ],
-            "description": "Tool for administrating taxonomy terms",
-            "homepage": "https://www.drupal.org/project/taxonomy_manager",
-            "support": {
-                "source": "https://drupal.org/project/taxonomy_manager",
-                "issues": "https://drupal.org/project/issues/taxonomy_manager"
-            }
-        },
-        {
-            "name": "drupal/textarea_widget_for_text",
-            "version": "1.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git",
-                "reference": "8.x-1.4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.4.zip",
-                "reference": "8.x-1.4",
-                "shasum": "8d77a7330cc12f0f54f239a42baa8c28ff8280e0"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.4",
-                    "datestamp": "1745957094",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "gnuget",
-                    "homepage": "https://www.drupal.org/user/992990"
-                },
-                {
-                    "name": "junaidpv",
-                    "homepage": "https://www.drupal.org/user/255728"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Allows short (non-long) text fields to use the textarea widget on content entry forms.",
-            "homepage": "https://www.drupal.org/project/textarea_widget_for_text",
-            "support": {
-                "source": "https://git.drupalcode.org/project/textarea_widget_for_text"
+                "source": "https://git.drupalcode.org/project/subprofiles"
             }
         },
         {
             "name": "drupal/token",
-            "version": "1.15.0",
+            "version": "1.5.0",
             "source": {
                 "type": "git",
                 "url": "https://git.drupalcode.org/project/token.git",
-                "reference": "8.x-1.15"
+                "reference": "8.x-1.5"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
-                "reference": "8.x-1.15",
-                "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
+                "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
+                "reference": "8.x-1.5",
+                "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
             },
             "require": {
-                "drupal/core": "^9.2 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/book": "*"
+                "drupal/core": "^8.5"
             },
             "type": "drupal-module",
             "extra": {
+                "branch-alias": {
+                    "dev-1.x": "1.x-dev"
+                },
                 "drupal": {
-                    "version": "8.x-1.15",
-                    "datestamp": "1722206211",
+                    "version": "8.x-1.5",
+                    "datestamp": "1537557481",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
                     }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": ">=9"
-                    }
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
@@ -16857,11 +7642,11 @@
             ],
             "authors": [
                 {
-                    "name": "berdir",
+                    "name": "Berdir",
                     "homepage": "https://www.drupal.org/user/214652"
                 },
                 {
-                    "name": "dave reid",
+                    "name": "Dave Reid",
                     "homepage": "https://www.drupal.org/user/53892"
                 },
                 {
@@ -16881,79 +7666,43 @@
                     "homepage": "https://www.drupal.org/user/4420"
                 }
             ],
-            "description": "Provides a user interface for the Token API, some missing core tokens.",
+            "description": "Provides a user interface for the Token API and some missing core tokens.",
             "homepage": "https://www.drupal.org/project/token",
             "support": {
                 "source": "https://git.drupalcode.org/project/token"
             }
         },
         {
-            "name": "drupal/tomselect",
-            "version": "dev-1.0.x",
+            "name": "drupal/video_embed_field",
+            "version": "2.2.0",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/tomselect.git",
-                "reference": "502a5f6b3ec4bacbf8f749de11456d868c12aee8"
+                "url": "https://git.drupalcode.org/project/video_embed_field.git",
+                "reference": "8.x-2.2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.2.zip",
+                "reference": "8.x-2.2",
+                "shasum": "1e76eeefb27f4166d3d119e8c27469bbf12c0f06"
             },
             "require": {
-                "drupal/core": "^8.8 || ^9 || ^10 || ^11"
+                "drupal/core": "^8.7.0"
+            },
+            "require-dev": {
+                "drupal/colorbox": "*",
+                "drupal/media_entity": "*",
+                "drupal/media_entity_embeddable_video": "*",
+                "drupal/video_embed_media": "*"
             },
             "type": "drupal-module",
             "extra": {
                 "branch-alias": {
-                    "dev-1.0.x": "1.0.x-dev"
+                    "dev-2.x": "2.x-dev"
                 },
                 "drupal": {
-                    "version": "1.0.0-alpha1+2-dev",
-                    "datestamp": "1729730530",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Development helper for including Tom Select JavaScript library.",
-            "homepage": "https://www.drupal.org/project/tomselect",
-            "support": {
-                "source": "https://git.drupalcode.org/project/tomselect"
-            }
-        },
-        {
-            "name": "drupal/trim",
-            "version": "2.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/trim.git",
-                "reference": "2.0.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/trim-2.0.1.zip",
-                "reference": "2.0.1",
-                "shasum": "18bf8975e915b845ec470652510ba1e03230d1e0"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.1",
-                    "datestamp": "1730171770",
+                    "version": "8.x-2.2",
+                    "datestamp": "1564103585",
                     "security-coverage": {
                         "status": "covered",
                         "message": "Covered by Drupal's security advisory policy"
@@ -16961,539 +7710,21 @@
                 }
             },
             "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "lelkneralfaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "Stefan Freudenberg",
-                    "homepage": "https://www.drupal.org/user/386087"
-                }
-            ],
-            "description": "Strips whitespace from all textfield input prior to validation and saving.",
-            "homepage": "https://www.drupal.org/project/trim",
-            "support": {
-                "source": "https://git.drupalcode.org/project/trim"
-            }
-        },
-        {
-            "name": "drupal/twig_tweak",
-            "version": "3.4.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/twig_tweak.git",
-                "reference": "3.4.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.4.0.zip",
-                "reference": "3.4.0",
-                "shasum": "1f47f71b4cfbad97fff11db1adc72c311bb1645e"
-            },
-            "require": {
-                "drupal/core": "^10.3 || ^11.0",
-                "ext-json": "*",
-                "php": ">=8.1",
-                "twig/twig": "^3.10.3"
-            },
-            "suggest": {
-                "symfony/var-dumper": "Better dump() function for debugging Twig variables"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "3.4.0",
-                    "datestamp": "1721562308",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^10 || ^11"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "chi",
-                    "homepage": "https://www.drupal.org/user/556138"
-                }
-            ],
-            "description": "A Twig extension with some useful functions and filters for Drupal development.",
-            "homepage": "https://www.drupal.org/project/twig_tweak",
-            "keywords": [
-                "Drupal",
-                "Twig"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/twig_tweak",
-                "issues": "https://www.drupal.org/project/issues/twig_tweak"
-            }
-        },
-        {
-            "name": "drupal/twigsuggest",
-            "version": "2.0.0-rc4",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/twigsuggest.git",
-                "reference": "2.0.0-rc4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/twigsuggest-2.0.0-rc4.zip",
-                "reference": "2.0.0-rc4",
-                "shasum": "e629ff389a2d5380c9e43bd2fc770fe443d7711d"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.0-rc4",
-                    "datestamp": "1734604997",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "RC releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
             "license": [
                 "GPL-2.0+"
             ],
             "authors": [
                 {
-                    "name": "beunerd",
-                    "homepage": "https://www.drupal.org/user/1312798"
-                },
-                {
-                    "name": "leymannx",
-                    "homepage": "https://www.drupal.org/user/2482808"
-                },
-                {
-                    "name": "megakeegman",
-                    "homepage": "https://www.drupal.org/user/3620027"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Provides template suggestions for things Drupal doesn't.",
-            "homepage": "https://www.drupal.org/project/twigsuggest",
-            "keywords": [
-                "drupal",
-                "styling",
-                "template suggestions",
-                "templates",
-                "theming"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/twigsuggest.git",
-                "issues": "https://www.drupal.org/project/issues/twigsuggest"
-            }
-        },
-        {
-            "name": "drupal/ui_patterns",
-            "version": "1.10.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/ui_patterns.git",
-                "reference": "8.x-1.10"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.10.zip",
-                "reference": "8.x-1.10",
-                "shasum": "bdb6f84ae8b82679380641cdc3d78b0fafe98614"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/ds": "^3.18",
-                "drupal/field_group": "^3.4"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.10",
-                    "datestamp": "1729182058",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ademarco",
-                    "homepage": "https://www.drupal.org/user/186696"
-                },
-                {
-                    "name": "bircher",
-                    "homepage": "https://www.drupal.org/user/1344166"
-                },
-                {
-                    "name": "christian.wiedemann",
-                    "homepage": "https://www.drupal.org/user/861002"
-                },
-                {
-                    "name": "duaelfr",
-                    "homepage": "https://www.drupal.org/user/931394"
-                },
-                {
-                    "name": "g4mbini",
-                    "homepage": "https://www.drupal.org/user/2533498"
-                },
-                {
-                    "name": "grimreaper",
-                    "homepage": "https://www.drupal.org/user/2388214"
-                },
-                {
-                    "name": "just_like_good_vibes",
-                    "homepage": "https://www.drupal.org/user/792018"
-                },
-                {
-                    "name": "pdureau",
-                    "homepage": "https://www.drupal.org/user/1903334"
-                },
-                {
-                    "name": "pescetti",
-                    "homepage": "https://www.drupal.org/user/436244"
-                }
-            ],
-            "description": "UI Patterns.",
-            "homepage": "https://www.drupal.org/project/ui_patterns",
-            "support": {
-                "source": "https://git.drupalcode.org/project/ui_patterns"
-            }
-        },
-        {
-            "name": "drupal/ui_patterns_ds",
-            "version": "1.10.0",
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11",
-                "drupal/ds": "*",
-                "drupal/ui_patterns": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.10",
-                    "datestamp": "1729182058",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ademarco",
-                    "homepage": "https://www.drupal.org/user/186696"
-                },
-                {
-                    "name": "bircher",
-                    "homepage": "https://www.drupal.org/user/1344166"
-                },
-                {
-                    "name": "christian.wiedemann",
-                    "homepage": "https://www.drupal.org/user/861002"
-                },
-                {
-                    "name": "duaelfr",
-                    "homepage": "https://www.drupal.org/user/931394"
-                },
-                {
-                    "name": "g4mbini",
-                    "homepage": "https://www.drupal.org/user/2533498"
-                },
-                {
-                    "name": "grimreaper",
-                    "homepage": "https://www.drupal.org/user/2388214"
-                },
-                {
-                    "name": "just_like_good_vibes",
-                    "homepage": "https://www.drupal.org/user/792018"
-                },
-                {
-                    "name": "pdureau",
-                    "homepage": "https://www.drupal.org/user/1903334"
-                },
-                {
-                    "name": "pescetti",
-                    "homepage": "https://www.drupal.org/user/436244"
-                }
-            ],
-            "description": "Use patterns as Display Suite field templates. It also provides Display Suite pattern sources.",
-            "homepage": "https://www.drupal.org/project/ui_patterns",
-            "support": {
-                "source": "https://git.drupalcode.org/project/ui_patterns"
-            }
-        },
-        {
-            "name": "drupal/ui_patterns_layouts",
-            "version": "2.0.3",
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/ui_patterns": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.3",
-                    "datestamp": "1742801289",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ademarco",
-                    "homepage": "https://www.drupal.org/user/186696"
-                },
-                {
-                    "name": "bircher",
-                    "homepage": "https://www.drupal.org/user/1344166"
-                },
-                {
-                    "name": "christian.wiedemann",
-                    "homepage": "https://www.drupal.org/user/861002"
-                },
-                {
-                    "name": "duaelfr",
-                    "homepage": "https://www.drupal.org/user/931394"
-                },
-                {
-                    "name": "g4mbini",
-                    "homepage": "https://www.drupal.org/user/2533498"
-                },
-                {
-                    "name": "grimreaper",
-                    "homepage": "https://www.drupal.org/user/2388214"
-                },
-                {
-                    "name": "just_like_good_vibes",
-                    "homepage": "https://www.drupal.org/user/792018"
-                },
-                {
-                    "name": "pdureau",
-                    "homepage": "https://www.drupal.org/user/1903334"
-                },
-                {
-                    "name": "pescetti",
-                    "homepage": "https://www.drupal.org/user/436244"
-                }
-            ],
-            "description": "Use UI components as layouts plugins.",
-            "homepage": "https://www.drupal.org/project/ui_patterns",
-            "support": {
-                "source": "https://git.drupalcode.org/project/ui_patterns"
-            }
-        },
-        {
-            "name": "drupal/ui_patterns_library",
-            "version": "2.0.3",
-            "require": {
-                "drupal/core": "^10.3 || ^11",
-                "drupal/ui_patterns": "*"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "2.0.3",
-                    "datestamp": "1742801289",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ademarco",
-                    "homepage": "https://www.drupal.org/user/186696"
-                },
-                {
-                    "name": "bircher",
-                    "homepage": "https://www.drupal.org/user/1344166"
-                },
-                {
-                    "name": "christian.wiedemann",
-                    "homepage": "https://www.drupal.org/user/861002"
-                },
-                {
-                    "name": "duaelfr",
-                    "homepage": "https://www.drupal.org/user/931394"
-                },
-                {
-                    "name": "g4mbini",
-                    "homepage": "https://www.drupal.org/user/2533498"
-                },
-                {
-                    "name": "grimreaper",
-                    "homepage": "https://www.drupal.org/user/2388214"
-                },
-                {
-                    "name": "just_like_good_vibes",
-                    "homepage": "https://www.drupal.org/user/792018"
-                },
-                {
-                    "name": "pdureau",
-                    "homepage": "https://www.drupal.org/user/1903334"
-                },
-                {
-                    "name": "pescetti",
-                    "homepage": "https://www.drupal.org/user/436244"
-                }
-            ],
-            "description": "Browse UI components in library pages.",
-            "homepage": "https://www.drupal.org/project/ui_patterns",
-            "support": {
-                "source": "https://git.drupalcode.org/project/ui_patterns"
-            }
-        },
-        {
-            "name": "drupal/unique_content_field_validation",
-            "version": "1.1.1",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/unique_content_field_validation.git",
-                "reference": "1.1.1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/unique_content_field_validation-1.1.1.zip",
-                "reference": "1.1.1",
-                "shasum": "a6fdc0b33e3a022fbc8f2decc8b0488ebe79cb82"
-            },
-            "require": {
-                "drupal/core": "^9.1 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "1.1.1",
-                    "datestamp": "1688169108",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Fabian Sierra",
-                    "homepage": "https://www.drupal.org/u/fabiansierra5191",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "mably",
-                    "homepage": "https://www.drupal.org/user/3375160"
-                }
-            ],
-            "description": "Validate the uniqueness of the entities fields or title.",
-            "homepage": "http://drupal.org/project/unique_content_field_validation",
-            "support": {
-                "source": "https://cgit.drupalcode.org/unique_content_field_validation",
-                "issues": "https://drupal.org/project/issues/unique_content_field_validation"
-            }
-        },
-        {
-            "name": "drupal/video_embed_field",
-            "version": "2.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/video_embed_field.git",
-                "reference": "8.x-2.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
-                "reference": "8.x-2.5",
-                "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
-            },
-            "require": {
-                "drupal/core": "^9.2 || ^10"
-            },
-            "require-dev": {
-                "drupal/ckeditor": "^1",
-                "drupal/colorbox": "^2",
-                "drupal/video_embed_media": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.5",
-                    "datestamp": "1671413311",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "abhinesh",
-                    "homepage": "https://www.drupal.org/user/3645979"
+                    "name": "Sam152",
+                    "homepage": "https://www.drupal.org/user/1485048"
                 },
                 {
                     "name": "jec006",
                     "homepage": "https://www.drupal.org/user/855980"
                 },
-                {
-                    "name": "mably",
-                    "homepage": "https://www.drupal.org/user/3375160"
-                },
                 {
                     "name": "plopesc",
                     "homepage": "https://www.drupal.org/user/282415"
-                },
-                {
-                    "name": "sam152",
-                    "homepage": "https://www.drupal.org/user/1485048"
                 }
             ],
             "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
@@ -17502,778 +7733,58 @@
                 "source": "https://git.drupalcode.org/project/video_embed_field"
             }
         },
-        {
-            "name": "drupal/view_password",
-            "version": "6.0.5",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/view_password.git",
-                "reference": "6.0.5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/view_password-6.0.5.zip",
-                "reference": "6.0.5",
-                "shasum": "a1f160e5ea7cbac4aa592692eba3bfd2b9527ee7"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "6.0.5",
-                    "datestamp": "1723228512",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "ahana92",
-                    "homepage": "https://www.drupal.org/user/3494063"
-                },
-                {
-                    "name": "anacolautti",
-                    "homepage": "https://www.drupal.org/user/2925043"
-                },
-                {
-                    "name": "cesarmiquel",
-                    "homepage": "https://www.drupal.org/user/115500"
-                },
-                {
-                    "name": "lmingarro",
-                    "homepage": "https://www.drupal.org/user/262938"
-                }
-            ],
-            "description": "Allows the users to see the contents of the password fields on selected forms before submission.",
-            "homepage": "https://www.drupal.org/project/view_password",
-            "support": {
-                "source": "https://git.drupalcode.org/project/view_password"
-            }
-        },
-        {
-            "name": "drupal/view_unpublished",
-            "version": "1.3.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/view_unpublished.git",
-                "reference": "8.x-1.3"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.3.zip",
-                "reference": "8.x-1.3",
-                "shasum": "7dd4411c53866585ac6319d147ab11d214d55877"
-            },
-            "require": {
-                "drupal/core": "^9.4 || ^10 || ^11"
-            },
-            "require-dev": {
-                "drupal/coder": "^8.3.18",
-                "phpcompatibility/php-compatibility": "10.x-dev@dev"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.3",
-                    "datestamp": "1724503131",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Agnes Chisholm",
-                    "homepage": "https://www.drupal.org/user/173461",
-                    "email": "amaria@chisholmtech.com"
-                },
-                {
-                    "name": "fathima.asmat",
-                    "homepage": "https://www.drupal.org/user/3622664"
-                },
-                {
-                    "name": "tobiasb",
-                    "homepage": "https://www.drupal.org/user/183956"
-                }
-            ],
-            "description": "Select which roles should be able to see unpublished nodes.",
-            "homepage": "https://www.drupal.org/project/view_unpublished",
-            "support": {
-                "source": "https://git.drupalcode.org/project/view_unpublished"
-            }
-        },
-        {
-            "name": "drupal/views_plain",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/views_plain.git",
-                "reference": "8.x-1.0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/views_plain-8.x-1.0.zip",
-                "reference": "8.x-1.0",
-                "shasum": "5eac9098aea2daf2e174cc271c2689263041f401"
-            },
-            "require": {
-                "drupal/core": "^8 || ^9 || ^10"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0",
-                    "datestamp": "1695650382",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "colorfield",
-                    "homepage": "https://www.drupal.org/user/2295486"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "Raphael Larrinaga",
-                    "homepage": "https://www.drupal.org/user/2873013"
-                },
-                {
-                    "name": "Rockabelly",
-                    "homepage": "https://www.drupal.org/user/2649181"
-                }
-            ],
-            "description": "Views display style that removes all the wrapper markup.",
-            "homepage": "https://www.drupal.org/project/views_plain",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/views_plain",
-                "issues": "https://www.drupal.org/project/issues/views_plain"
-            }
-        },
-        {
-            "name": "drupal/viewsreference",
-            "version": "dev-1.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/viewsreference.git",
-                "reference": "2ee107cd681a00f26ffe5382660d2298283ec978"
-            },
-            "require": {
-                "drupal/core": "^9.3 || ^10",
-                "php": "^7.0|^8.0"
-            },
-            "conflict": {
-                "drupal/viewsreferennce": "*"
-            },
-            "require-dev": {
-                "composer/installers": "^1.2",
-                "drupal/coder": "^8.2",
-                "drupal/core-composer-scaffold": "*",
-                "webflo/drupal-core-require-dev": "~8.5"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.x": "1.x-dev"
-                },
-                "drupal": {
-                    "version": "8.x-1.8+2-dev",
-                    "datestamp": "1691455445",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                },
-                "installer-paths": {
-                    "../build/core": [
-                        "type:drupal-core"
-                    ],
-                    "../build/modules/contrib/{$name}": [
-                        "type:drupal-module"
-                    ],
-                    "../build/themes/contrib/{$name}": [
-                        "type:drupal-theme"
-                    ]
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "joekers",
-                    "homepage": "https://www.drupal.org/user/2229066"
-                },
-                {
-                    "name": "NewZeal",
-                    "homepage": "https://www.drupal.org/user/93571"
-                },
-                {
-                    "name": "scott_euser",
-                    "homepage": "https://www.drupal.org/user/3267594"
-                },
-                {
-                    "name": "seanb",
-                    "homepage": "https://www.drupal.org/user/545912"
-                }
-            ],
-            "description": "Views Reference",
-            "homepage": "http://drupal.org/project/viewsreference",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/viewsreference",
-                "issues": "http://drupal.org/project/issues/viewsreference"
-            }
-        },
-        {
-            "name": "drupal/visitors",
-            "version": "2.28.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/visitors.git",
-                "reference": "8.x-2.28"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/visitors-8.x-2.28.zip",
-                "reference": "8.x-2.28",
-                "shasum": "e97fc91dceec531ea95bbf337f7d13cd0126f802"
-            },
-            "require": {
-                "drupal/charts": "^5",
-                "drupal/charts_chartjs": "*",
-                "drupal/core": "^10 || ^11",
-                "geoip2/geoip2": "~2.0",
-                "matomo/device-detector": "^6.1"
-            },
-            "require-dev": {
-                "drupal/statistics": "~1",
-                "drush/drush": "^12 || ^13"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-2.28",
-                    "datestamp": "1743466090",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": ">=9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Steven Ayers (bluegeek9)",
-                    "homepage": "https://www.drupal.org/u/bluegeek9",
-                    "role": "Maintainer"
-                }
-            ],
-            "description": "Visitors is a native drupal web analytics software.",
-            "homepage": "https://drupal.org/project/visitors",
-            "support": {
-                "source": "https://git.drupalcode.org/project/visitors",
-                "issues": "https://www.drupal.org/project/issues/visitors?version=8.x",
-                "docs": "https://www.drupal.org/docs/8/modules/visitors",
-                "forum": "https://drupal.stackexchange.com/questions/tagged/visitors"
-            }
-        },
-        {
-            "name": "drupal/webform",
-            "version": "6.2.9",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/webform.git",
-                "reference": "6.2.9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
-                "reference": "6.2.9",
-                "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
-            },
-            "require": {
-                "drupal/core": "^10.2",
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "drupal/address": "1.x-dev",
-                "drupal/bootstrap": "3.x-dev",
-                "drupal/captcha": "^1 || ^2",
-                "drupal/chosen": "3.0.x-dev",
-                "drupal/ckeditor": "1.0.x-dev",
-                "drupal/clientside_validation": "^3 || ^4",
-                "drupal/clientside_validation_jquery": "*",
-                "drupal/devel": "5.x-dev",
-                "drupal/entity": "1.x-dev",
-                "drupal/entity_print": "2.x-dev",
-                "drupal/group": "1.x-dev",
-                "drupal/hal": "1 - 2",
-                "drupal/jquery_ui": "1.x-dev",
-                "drupal/jquery_ui_button": "2.x-dev",
-                "drupal/jquery_ui_checkboxradio": "2.x-dev",
-                "drupal/jquery_ui_datepicker": "2.x-dev",
-                "drupal/mailsystem": "4.x-dev",
-                "drupal/metatag": "1.x-dev",
-                "drupal/paragraphs": "1.x-dev",
-                "drupal/select2": "1.x-dev",
-                "drupal/smtp": "1.x-dev",
-                "drupal/styleguide": "^1 || ^2",
-                "drupal/telephone_validation": "2.x-dev",
-                "drupal/token": "1.x-dev",
-                "drupal/variationcache": "1.x-dev",
-                "drupal/webform_access": "*",
-                "drupal/webform_attachment": "*",
-                "drupal/webform_clientside_validation": "*",
-                "drupal/webform_devel": "*",
-                "drupal/webform_entity_print": "*",
-                "drupal/webform_node": "*",
-                "drupal/webform_options_limit": "*",
-                "drupal/webform_scheduled_email": "*",
-                "drupal/webform_share": "*",
-                "drupal/webform_ui": "*"
-            },
-            "suggest": {
-                "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
-                "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "6.2.9",
-                    "datestamp": "1733851063",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": ">=9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Jacob Rockowitz (jrockowitz)",
-                    "homepage": "https://www.drupal.org/u/jrockowitz",
-                    "role": "Maintainer"
-                },
-                {
-                    "name": "Contributors",
-                    "homepage": "https://www.drupal.org/node/7404/committers",
-                    "role": "Contributor"
-                },
-                {
-                    "name": "liam morland",
-                    "homepage": "https://www.drupal.org/user/493050"
-                },
-                {
-                    "name": "mandclu",
-                    "homepage": "https://www.drupal.org/user/52136"
-                },
-                {
-                    "name": "quicksketch",
-                    "homepage": "https://www.drupal.org/user/35821"
-                }
-            ],
-            "description": "Enables the creation of webforms and questionnaires.",
-            "homepage": "https://drupal.org/project/webform",
-            "support": {
-                "source": "https://git.drupalcode.org/project/webform",
-                "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
-                "docs": "https://www.drupal.org/docs/8/modules/webform",
-                "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
-            }
-        },
-        {
-            "name": "drupal/weight",
-            "version": "3.6.0",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/weight.git",
-                "reference": "8.x-3.6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/weight-8.x-3.6.zip",
-                "reference": "8.x-3.6",
-                "shasum": "071c378a6f4887b15a9e68c1414c94735282e20c"
-            },
-            "require": {
-                "drupal/core": "^9.5 || ^10.2 || ^11.0"
-            },
-            "require-dev": {
-                "drupal/feeds": "*"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-3.6",
-                    "datestamp": "1729637541",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "heddn",
-                    "homepage": "https://www.drupal.org/user/1463982"
-                },
-                {
-                    "name": "kevinquillen",
-                    "homepage": "https://www.drupal.org/user/317279"
-                },
-                {
-                    "name": "NancyDru",
-                    "homepage": "https://www.drupal.org/user/101412"
-                },
-                {
-                    "name": "neslee canil pinto",
-                    "homepage": "https://www.drupal.org/user/3580850"
-                },
-                {
-                    "name": "vladimiraus",
-                    "homepage": "https://www.drupal.org/user/673120"
-                }
-            ],
-            "description": "Allows arbitrary ordering of entities.",
-            "homepage": "https://www.drupal.org/project/weight",
-            "keywords": [
-                "Drupal"
-            ],
-            "support": {
-                "source": "http://cgit.drupalcode.org/weight",
-                "issues": "https://www.drupal.org/project/issues/weight"
-            }
-        },
-        {
-            "name": "drupal/workflow_buttons",
-            "version": "dev-1.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/workflow_buttons.git",
-                "reference": "422ec4a3910b7ed9bb47c3e476f9f64caaab6c49"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-1.x": "1.x-dev"
-                },
-                "drupal": {
-                    "version": "8.x-1.0-beta6+6-dev",
-                    "datestamp": "1746664033",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0+"
-            ],
-            "authors": [
-                {
-                    "name": "beunerd",
-                    "homepage": "https://www.drupal.org/user/1312798"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "gnuget",
-                    "homepage": "https://www.drupal.org/user/992990"
-                },
-                {
-                    "name": "kelly.m.jacobs",
-                    "homepage": "https://www.drupal.org/user/3397374"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ultrabob",
-                    "homepage": "https://www.drupal.org/user/110463"
-                }
-            ],
-            "description": "Provide workflow buttons for content moderation instead of a select dropdown of states.  Button labels are taken from the transition names.",
-            "homepage": "https://www.drupal.org/project/workflow_buttons",
-            "keywords": [
-                "buttons",
-                "content",
-                "content moderation",
-                "drupal",
-                "editor",
-                "form",
-                "workflow"
-            ],
-            "support": {
-                "source": "https://git.drupalcode.org/project/workflow_buttons.git",
-                "issues": "https://www.drupal.org/project/issues/workflow_buttons"
-            }
-        },
-        {
-            "name": "drupal/workflow_buttons_trash",
-            "version": "1.0.0-beta7",
-            "require": {
-                "drupal/core": "^9 || ^10 || ^11",
-                "drupal/workflow_buttons": "^1"
-            },
-            "type": "metapackage",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0-beta7",
-                    "datestamp": "1746664585",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Beta releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "beunerd",
-                    "homepage": "https://www.drupal.org/user/1312798"
-                },
-                {
-                    "name": "elkaro",
-                    "homepage": "https://www.drupal.org/user/3577260"
-                },
-                {
-                    "name": "gnuget",
-                    "homepage": "https://www.drupal.org/user/992990"
-                },
-                {
-                    "name": "kelly.m.jacobs",
-                    "homepage": "https://www.drupal.org/user/3397374"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                },
-                {
-                    "name": "ultrabob",
-                    "homepage": "https://www.drupal.org/user/110463"
-                }
-            ],
-            "description": "Provides a trash (soft-delete) workflow which works well with (but does not require) Workflow buttons.",
-            "homepage": "https://www.drupal.org/project/workflow_buttons",
-            "support": {
-                "source": "https://git.drupalcode.org/project/workflow_buttons"
-            }
-        },
-        {
-            "name": "drupal/wysiwyg_linebreaks",
-            "version": "dev-2.0.x",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git",
-                "reference": "e5b669ddcbc7115e862f08b38e4f379f1e8f7c60"
-            },
-            "require": {
-                "drupal/core": "^9.3  || ^10 || ^11"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "branch-alias": {
-                    "dev-2.0.x": "2.0.x-dev"
-                },
-                "drupal": {
-                    "version": "2.0.0+4-dev",
-                    "datestamp": "1724196081",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Dev releases are not covered by Drupal security advisories."
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "geerlingguy",
-                    "homepage": "https://www.drupal.org/user/389011"
-                },
-                {
-                    "name": "mlncn",
-                    "homepage": "https://www.drupal.org/user/64383"
-                }
-            ],
-            "description": "Allows you to use CKEditor WYSIWYG editors on legacy content that may not already have HTML formatting applied and to more easily edit WYSIWYG-edited content in plain text.",
-            "homepage": "https://www.drupal.org/project/wysiwyg_linebreaks",
-            "support": {
-                "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks"
-            }
-        },
-        {
-            "name": "drupal/yaml_content",
-            "version": "1.0.0-alpha9",
-            "source": {
-                "type": "git",
-                "url": "https://git.drupalcode.org/project/yaml_content.git",
-                "reference": "8.x-1.0-alpha9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/yaml_content-8.x-1.0-alpha9.zip",
-                "reference": "8.x-1.0-alpha9",
-                "shasum": "21854b567ef6b9a17883da061c03850f136cc9d1"
-            },
-            "require": {
-                "drupal/core": "^9 || ^10"
-            },
-            "require-dev": {
-                "mikey179/vfsstream": "^1.0"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "8.x-1.0-alpha9",
-                    "datestamp": "1690397386",
-                    "security-coverage": {
-                        "status": "not-covered",
-                        "message": "Project has not opted into security advisory coverage!"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "DamienMcKenna",
-                    "homepage": "https://www.drupal.org/user/108450"
-                },
-                {
-                    "name": "shrop",
-                    "homepage": "https://www.drupal.org/user/14767"
-                },
-                {
-                    "name": "slucero",
-                    "homepage": "https://www.drupal.org/user/1612534"
-                }
-            ],
-            "description": "Demo content generator using yaml content templates.",
-            "homepage": "https://www.drupal.org/project/yaml_content",
-            "support": {
-                "source": "https://git.drupalcode.org/project/yaml_content"
-            }
-        },
         {
             "name": "drush/drush",
-            "version": "12.5.3",
+            "version": "9.7.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/drush-ops/drush.git",
-                "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
+                "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
-                "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
+                "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
+                "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
                 "shasum": ""
             },
             "require": {
-                "chi-teck/drupal-code-generator": "^3.0",
-                "composer-runtime-api": "^2.2",
-                "composer/semver": "^1.4 || ^3",
-                "consolidation/annotated-command": "^4.9.2",
-                "consolidation/config": "^2.1.2",
-                "consolidation/filter-via-dot-access-data": "^2.0.2",
-                "consolidation/output-formatters": "^4.3.2",
-                "consolidation/robo": "^4.0.6",
-                "consolidation/site-alias": "^4",
-                "consolidation/site-process": "^5.2.0",
+                "chi-teck/drupal-code-generator": "^1.28.1",
+                "composer/semver": "^1.4",
+                "consolidation/annotated-command": "^2.12",
+                "consolidation/config": "^1.2",
+                "consolidation/filter-via-dot-access-data": "^1",
+                "consolidation/output-formatters": "^3.3.1",
+                "consolidation/robo": "^1.4.6",
+                "consolidation/site-alias": "^3.0.0@stable",
+                "consolidation/site-process": "^2.0.3",
                 "ext-dom": "*",
-                "grasmash/yaml-cli": "^3.1",
-                "guzzlehttp/guzzle": "^7.0",
-                "league/container": "^4",
-                "php": ">=8.1",
-                "psy/psysh": "~0.11",
-                "symfony/event-dispatcher": "^6",
-                "symfony/filesystem": "^6.1",
-                "symfony/finder": "^6",
-                "symfony/var-dumper": "^6.0",
-                "symfony/yaml": "^6.0",
-                "webflo/drupal-finder": "^1.2"
-            },
-            "conflict": {
-                "drupal/core": "< 10.0",
-                "drupal/migrate_run": "*",
-                "drupal/migrate_tools": "<= 5"
+                "grasmash/yaml-expander": "^1.1.1",
+                "league/container": "~2",
+                "php": ">=5.6.0",
+                "psr/log": "~1.0",
+                "psy/psysh": "~0.6",
+                "symfony/console": "^3.4",
+                "symfony/event-dispatcher": "^3.4",
+                "symfony/finder": "^3.4 || ^4.0",
+                "symfony/process": "^3.4",
+                "symfony/var-dumper": "^3.4 || ^4.0",
+                "symfony/yaml": "^3.4",
+                "webflo/drupal-finder": "^1.1",
+                "webmozart/path-util": "^2.1.0"
             },
             "require-dev": {
-                "composer/installers": "^2",
+                "composer/installers": "^1.2",
                 "cweagans/composer-patches": "~1.0",
-                "drupal/core-recommended": "^10",
-                "drupal/semver_example": "2.3.0",
-                "phpunit/phpunit": "^9",
-                "rector/rector": "^0.12",
-                "squizlabs/php_codesniffer": "^3.7"
+                "drupal/alinks": "1.0.0",
+                "drupal/devel": "^2",
+                "drupal/empty_theme": "1.0",
+                "g1a/composer-test-scenarios": "^3",
+                "lox/xhprof": "dev-master",
+                "phpunit/phpunit": "^4.8.36 || ^6.1",
+                "squizlabs/php_codesniffer": "^2.7 || ^3",
+                "vlucas/phpdotenv": "^2.4",
+                "webflo/drupal-core-require-dev": "8.7.x-dev",
+                "webflo/drupal-core-strict": "8.7.x-dev"
             },
             "bin": [
                 "drush"
@@ -18287,29 +7798,46 @@
                     "sut/libraries/{$name}": [
                         "type:drupal-library"
                     ],
-                    "sut/themes/unish/{$name}": [
-                        "drupal/empty_theme"
-                    ],
-                    "sut/drush/contrib/{$name}": [
-                        "type:drupal-drush"
-                    ],
                     "sut/modules/unish/{$name}": [
                         "drupal/devel"
                     ],
-                    "sut/themes/contrib/{$name}": [
-                        "type:drupal-theme"
+                    "sut/themes/unish/{$name}": [
+                        "drupal/empty_theme"
                     ],
                     "sut/modules/contrib/{$name}": [
                         "type:drupal-module"
                     ],
                     "sut/profiles/contrib/{$name}": [
                         "type:drupal-profile"
+                    ],
+                    "sut/themes/contrib/{$name}": [
+                        "type:drupal-theme"
+                    ],
+                    "sut/drush/contrib/{$name}": [
+                        "type:drupal-drush"
                     ]
+                },
+                "scenarios": {
+                    "php5": {
+                        "config": {
+                            "platform": {
+                                "php": "5.6.38"
+                            }
+                        },
+                        "require-dev": {
+                            "webflo/drupal-core-strict": "8.6.x-dev",
+                            "webflo/drupal-core-require-dev": "8.6.x-dev"
+                        }
+                    }
+                },
+                "branch-alias": {
+                    "dev-master": "9.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Drush\\": "src/"
+                    "Drush\\": "src/",
+                    "Drush\\Internal\\": "src/internal-forks"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -18352,84 +7880,74 @@
             ],
             "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
             "homepage": "http://www.drush.org",
-            "support": {
-                "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
-                "issues": "https://github.com/drush-ops/drush/issues",
-                "security": "https://github.com/drush-ops/drush/security/advisories",
-                "slack": "https://drupal.slack.com/messages/C62H9CWQM",
-                "source": "https://github.com/drush-ops/drush/tree/12.5.3"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/weitzman",
-                    "type": "github"
-                }
-            ],
-            "time": "2024-08-02T11:57:29+00:00"
+            "time": "2019-06-30T19:46:39+00:00"
         },
         {
             "name": "drutopia/drutopia",
-            "version": "2.0.x-dev",
+            "version": "1.0-beta3",
             "source": {
                 "type": "git",
-                "url": "https://gitlab.com/drutopia/drutopia.git",
-                "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6"
+                "url": "https://github.com/drutopia/drutopia.git",
+                "reference": "67de2873e9a48f02257bb17e8d4f0dea052bae2a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=2192b03e0c0dba53dd1181c19c5c3c3ece643ba6",
-                "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6",
+                "url": "https://api.github.com/repos/drutopia/drutopia/zipball/67de2873e9a48f02257bb17e8d4f0dea052bae2a",
+                "reference": "67de2873e9a48f02257bb17e8d4f0dea052bae2a",
                 "shasum": ""
             },
             "require": {
-                "cweagans/composer-patches": "^1",
-                "drupal/antibot": "^2",
-                "drupal/block_visibility_groups": "^2",
-                "drupal/bulma_components": "^1",
-                "drupal/config_actions_provider": "^1",
-                "drupal/config_sync": "^3",
-                "drupal/config_update": "^2",
-                "drupal/default_content": "^2",
-                "drupal/drutopia_action": "^2",
-                "drupal/drutopia_article": "^2",
-                "drupal/drutopia_blog": "^2",
-                "drupal/drutopia_campaign": "^2",
-                "drupal/drutopia_comment": "^2",
-                "drupal/drutopia_core": "^2",
-                "drupal/drutopia_event": "^2",
-                "drupal/drutopia_group": "^2",
-                "drupal/drutopia_landing_page": "^2",
-                "drupal/drutopia_page": "^2",
-                "drupal/drutopia_people": "^2",
-                "drupal/drutopia_related_content": "^2",
-                "drupal/drutopia_resource": "^2",
-                "drupal/drutopia_search": "^2",
-                "drupal/drutopia_seo": "^2",
-                "drupal/drutopia_site": "^2",
-                "drupal/drutopia_social": "^2",
-                "drupal/drutopia_storyline": "^2",
-                "drupal/drutopia_user": "^2",
-                "drupal/eu_cookie_compliance": "^1",
-                "drupal/features": "^3",
-                "drupal/gdpr": "^3",
-                "drupal/gin": "^4",
-                "drupal/gin_toolbar": "^2",
-                "drupal/honeypot": "^2",
-                "drupal/menu_block": "^1",
-                "drupal/octavia": "^2",
-                "drupal/paranoia": "^1",
-                "drupal/riddler": "^3",
-                "drupal/subprofiles": "^2",
-                "drupal/twigsuggest": "^2",
-                "drupal/yaml_content": "^1",
-                "geeks4change/composer-pin": "*"
+                "composer/installers": "^1.0",
+                "cweagans/composer-patches": "^1.5.0",
+                "drupal-composer/drupal-scaffold": "^2.0.0",
+                "drupal/better_normalizers": "^1.0-beta3",
+                "drupal/block_visibility_groups": "^1.3",
+                "drupal/bulma": "^1.0-beta2",
+                "drupal/components": "^1.1",
+                "drupal/config_actions_provider": "^1.0-rc1",
+                "drupal/config_sync": "^2.0-beta5",
+                "drupal/config_update": "^1.6",
+                "drupal/core": "^8.7.2",
+                "drupal/default_content": "^1.0-alpha8",
+                "drupal/drutopia_action": "^1.0-beta3",
+                "drupal/drutopia_article": "^1.0-beta3",
+                "drupal/drutopia_blog": "^1.0-beta3",
+                "drupal/drutopia_campaign": "^1.0-beta3",
+                "drupal/drutopia_comment": "^1.0-beta1",
+                "drupal/drutopia_core": "^1.0-beta3",
+                "drupal/drutopia_event": "^1.0-beta3",
+                "drupal/drutopia_group": "^1.0-beta3",
+                "drupal/drutopia_landing_page": "^1.0-beta1",
+                "drupal/drutopia_page": "^1.0-beta3",
+                "drupal/drutopia_people": "^1.0-beta3",
+                "drupal/drutopia_related_content": "^1.0-beta2",
+                "drupal/drutopia_resource": "^1.0-beta3",
+                "drupal/drutopia_search": "^1.0-beta2",
+                "drupal/drutopia_seo": "^1.0-beta2",
+                "drupal/drutopia_site": "^1.0-beta1",
+                "drupal/drutopia_social": "^1.0-beta1",
+                "drupal/drutopia_storyline": "^1.0-beta3",
+                "drupal/drutopia_user": "^1.0-beta1",
+                "drupal/eu_cookie_compliance": "^1.5",
+                "drupal/features": "^3.8",
+                "drupal/gdpr": "^2.0-alpha7",
+                "drupal/menu_block": "^1.5",
+                "drupal/octavia": "^1.0-beta4",
+                "drupal/paranoia": "^1.0-alpha1",
+                "drupal/subprofiles": "^1.0-alpha2"
             },
             "require-dev": {
-                "drupal/devel": "^5",
-                "drupal/drupal-extension": "^5",
-                "drush/drush": "^12",
+                "behat/behat": "^3.0",
+                "behat/mink": "~1.7",
+                "behat/mink-goutte-driver": "~1.2",
+                "drupal-composer/drupal-scaffold": "^2.0.0",
+                "drupal/devel": "^1.0",
+                "drupal/drupal-extension": "^3.2",
+                "drush/drush": "^9.0",
                 "jcalderonzumba/gastonjs": "~1.0.2",
                 "mikey179/vfsstream": "~1.2",
+                "phing/phing": "^2.14",
+                "phpunit/phpunit": "~4.8",
                 "se/selenium-server-standalone": "^2.53",
                 "squizlabs/php_codesniffer": "2.*",
                 "symfony/css-selector": "~2.8"
@@ -18438,68 +7956,66 @@
             "extra": {
                 "patches": {
                     "drupal/ds": {
-                        "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch"
-                    },
-                    "drupal/core": {
-                        "Invoke hook after a site install is complete": "https://git.drupalcode.org/project/drupal/-/merge_requests/1512.diff"
+                        "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/parent_profile_template-2895316-3.patch"
                     }
                 },
-                "drupal-scaffold": {
-                    "locations": {
-                        "web-root": "web/"
-                    }
-                },
-                "enable-patching": true
+                "patches_applied": {
+                    "Remove default content": "patches/drutopia-remove-default-content.patch"
+                }
+            },
+            "scripts": {
+                "drupal-scaffold": [
+                    "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
+                ],
+                "post-install-cmd": [
+                    "@composer drupal-scaffold",
+                    "./bin/phing push"
+                ],
+                "post-update-cmd": [
+                    "./bin/phing push"
+                ]
             },
-            "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.",
             "support": {
-                "issues": "https://gitlab.com/drutopia/drutopia/-/issues",
-                "source": "https://gitlab.com/drutopia/drutopia/-/tree/2.0.x"
+                "source": "https://github.com/drutopia/drutopia/tree/8.x-1.0-beta3",
+                "issues": "https://github.com/drutopia/drutopia/issues"
             },
-            "time": "2025-02-07T15:24:33+00:00"
+            "time": "2019-08-26T20:57:59+00:00"
         },
         {
             "name": "easyrdf/easyrdf",
-            "version": "1.1.1",
+            "version": "0.9.1",
             "source": {
                 "type": "git",
-                "url": "https://github.com/easyrdf/easyrdf.git",
-                "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64"
+                "url": "https://github.com/njh/easyrdf.git",
+                "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64",
-                "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64",
+                "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
+                "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
                 "shasum": ""
             },
             "require": {
-                "ext-dom": "*",
                 "ext-mbstring": "*",
                 "ext-pcre": "*",
-                "ext-xmlreader": "*",
-                "lib-libxml": "*",
-                "php": ">=7.1.0"
+                "php": ">=5.2.8"
             },
             "require-dev": {
-                "code-lts/doctum": "^5",
-                "ml/json-ld": "~1.0",
-                "phpunit/phpunit": "^7",
-                "semsol/arc2": "^2.4",
-                "squizlabs/php_codesniffer": "3.*",
-                "zendframework/zend-http": "~2.3"
+                "phpunit/phpunit": "~3.5",
+                "sami/sami": "~1.4",
+                "squizlabs/php_codesniffer": "~1.4.3"
             },
             "suggest": {
-                "ml/json-ld": "~1.0",
-                "semsol/arc2": "~2.2"
+                "ml/json-ld": "~1.0"
             },
             "type": "library",
             "autoload": {
-                "psr-4": {
-                    "EasyRdf\\": "lib"
+                "psr-0": {
+                    "EasyRdf_": "lib/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -18516,7 +8032,6 @@
                 {
                     "name": "Alexey Zakhlestin",
                     "email": "indeyets@gmail.com",
-                    "homepage": "http://indeyets.ru/",
                     "role": "Developer"
                 }
             ],
@@ -18530,35 +8045,31 @@
                 "rdfa",
                 "sparql"
             ],
-            "support": {
-                "forum": "http://groups.google.com/group/easyrdf/",
-                "issues": "http://github.com/easyrdf/easyrdf/issues",
-                "source": "https://github.com/easyrdf/easyrdf/tree/1.1.1"
-            },
-            "time": "2020-12-02T08:47:31+00:00"
+            "time": "2015-02-27T09:45:49+00:00"
         },
         {
             "name": "egulias/email-validator",
-            "version": "4.0.4",
+            "version": "2.1.11",
             "source": {
                 "type": "git",
                 "url": "https://github.com/egulias/EmailValidator.git",
-                "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
+                "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
-                "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
+                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
+                "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
                 "shasum": ""
             },
             "require": {
-                "doctrine/lexer": "^2.0 || ^3.0",
-                "php": ">=8.1",
-                "symfony/polyfill-intl-idn": "^1.26"
+                "doctrine/lexer": "^1.0.1",
+                "php": ">= 5.5"
             },
             "require-dev": {
-                "phpunit/phpunit": "^10.2",
-                "vimeo/psalm": "^5.12"
+                "dominicsayers/isemail": "dev-master",
+                "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
+                "satooshi/php-coveralls": "^1.0.1",
+                "symfony/phpunit-bridge": "^4.4@dev"
             },
             "suggest": {
                 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
@@ -18566,12 +8077,12 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "4.0.x-dev"
+                    "dev-master": "2.1.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Egulias\\EmailValidator\\": "src"
+                    "Egulias\\EmailValidator\\": "EmailValidator"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -18592,116 +8103,36 @@
                 "validation",
                 "validator"
             ],
-            "support": {
-                "issues": "https://github.com/egulias/EmailValidator/issues",
-                "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/egulias",
-                    "type": "github"
-                }
-            ],
-            "time": "2025-03-06T22:45:56+00:00"
+            "time": "2019-08-13T17:33:27+00:00"
         },
         {
-            "name": "ezyang/htmlpurifier",
-            "version": "v4.18.0",
+            "name": "fzaninotto/faker",
+            "version": "v1.8.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/ezyang/htmlpurifier.git",
-                "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
+                "url": "https://github.com/fzaninotto/Faker.git",
+                "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
-                "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
+                "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
+                "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
                 "shasum": ""
             },
             "require": {
-                "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
+                "php": "^5.3.3 || ^7.0"
             },
             "require-dev": {
-                "cerdic/css-tidy": "^1.7 || ^2.0",
-                "simpletest/simpletest": "dev-master"
-            },
-            "suggest": {
-                "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
-                "ext-bcmath": "Used for unit conversion and imagecrash protection",
-                "ext-iconv": "Converts text to and from non-UTF-8 encodings",
-                "ext-tidy": "Used for pretty-printing HTML"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "library/HTMLPurifier.composer.php"
-                ],
-                "psr-0": {
-                    "HTMLPurifier": "library/"
-                },
-                "exclude-from-classmap": [
-                    "/library/HTMLPurifier/Language/"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "LGPL-2.1-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Edward Z. Yang",
-                    "email": "admin@htmlpurifier.org",
-                    "homepage": "http://ezyang.com"
-                }
-            ],
-            "description": "Standards compliant HTML filter written in PHP",
-            "homepage": "http://htmlpurifier.org/",
-            "keywords": [
-                "html"
-            ],
-            "support": {
-                "issues": "https://github.com/ezyang/htmlpurifier/issues",
-                "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
-            },
-            "time": "2024-11-01T03:51:45+00:00"
-        },
-        {
-            "name": "fakerphp/faker",
-            "version": "v1.24.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/FakerPHP/Faker.git",
-                "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
-                "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.4 || ^8.0",
-                "psr/container": "^1.0 || ^2.0",
-                "symfony/deprecation-contracts": "^2.2 || ^3.0"
-            },
-            "conflict": {
-                "fzaninotto/faker": "*"
-            },
-            "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.4.1",
-                "doctrine/persistence": "^1.3 || ^2.0",
                 "ext-intl": "*",
-                "phpunit/phpunit": "^9.5.26",
-                "symfony/phpunit-bridge": "^5.4.16"
-            },
-            "suggest": {
-                "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
-                "ext-curl": "Required by Faker\\Provider\\Image to download images.",
-                "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
-                "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
-                "ext-mbstring": "Required for multibyte Unicode string functionality."
+                "phpunit/phpunit": "^4.8.35 || ^5.7",
+                "squizlabs/php_codesniffer": "^1.5"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.8-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Faker\\": "src/Faker/"
@@ -18722,197 +8153,31 @@
                 "faker",
                 "fixtures"
             ],
-            "support": {
-                "issues": "https://github.com/FakerPHP/Faker/issues",
-                "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
-            },
-            "time": "2024-11-21T13:46:39+00:00"
-        },
-        {
-            "name": "geeks4change/composer-pin",
-            "version": "dev-master",
-            "source": {
-                "type": "git",
-                "url": "https://gitlab.com/geeks4change/packages/composer-pin.git",
-                "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://gitlab.com/api/v4/projects/geeks4change%2Fpackages%2Fcomposer-pin/repository/archive.zip?sha=e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8",
-                "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8",
-                "shasum": ""
-            },
-            "default-branch": true,
-            "bin": [
-                "composer-pin-apply"
-            ],
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.x-dev"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Merlin",
-                    "email": "merlin@geeks4change.net"
-                }
-            ],
-            "description": "Provides helper commands to do project level version/hash pinning.",
-            "support": {
-                "issues": "https://gitlab.com/geeks4change/packages/composer-pin/-/issues",
-                "source": "https://gitlab.com/geeks4change/packages/composer-pin/-/tree/master"
-            },
-            "time": "2020-06-02T10:38:25+00:00"
-        },
-        {
-            "name": "geoip2/geoip2",
-            "version": "v2.13.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/maxmind/GeoIP2-php.git",
-                "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
-                "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
-                "shasum": ""
-            },
-            "require": {
-                "ext-json": "*",
-                "maxmind-db/reader": "~1.8",
-                "maxmind/web-service-common": "~0.8",
-                "php": ">=7.2"
-            },
-            "require-dev": {
-                "friendsofphp/php-cs-fixer": "3.*",
-                "phpstan/phpstan": "*",
-                "phpunit/phpunit": "^8.0 || ^9.0",
-                "squizlabs/php_codesniffer": "3.*"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "GeoIp2\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Gregory J. Oschwald",
-                    "email": "goschwald@maxmind.com",
-                    "homepage": "https://www.maxmind.com/"
-                }
-            ],
-            "description": "MaxMind GeoIP2 PHP API",
-            "homepage": "https://github.com/maxmind/GeoIP2-php",
-            "keywords": [
-                "IP",
-                "geoip",
-                "geoip2",
-                "geolocation",
-                "maxmind"
-            ],
-            "support": {
-                "issues": "https://github.com/maxmind/GeoIP2-php/issues",
-                "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.13.0"
-            },
-            "time": "2022-08-05T20:32:58+00:00"
-        },
-        {
-            "name": "graham-campbell/result-type",
-            "version": "v1.1.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/GrahamCampbell/Result-Type.git",
-                "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
-                "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.2.5 || ^8.0",
-                "phpoption/phpoption": "^1.9.3"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "GrahamCampbell\\ResultType\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Graham Campbell",
-                    "email": "hello@gjcampbell.co.uk",
-                    "homepage": "https://github.com/GrahamCampbell"
-                }
-            ],
-            "description": "An Implementation Of The Result Type",
-            "keywords": [
-                "Graham Campbell",
-                "GrahamCampbell",
-                "Result Type",
-                "Result-Type",
-                "result"
-            ],
-            "support": {
-                "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
-                "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/GrahamCampbell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2024-07-20T21:45:45+00:00"
+            "time": "2018-07-12T10:23:15+00:00"
         },
         {
             "name": "grasmash/expander",
-            "version": "3.0.1",
+            "version": "1.0.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/grasmash/expander.git",
-                "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
+                "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
-                "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
+                "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
+                "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
                 "shasum": ""
             },
             "require": {
-                "dflydev/dot-access-data": "^3.0.0",
-                "php": ">=8.0",
-                "psr/log": "^2 | ^3"
+                "dflydev/dot-access-data": "^1.1.0",
+                "php": ">=5.4"
             },
             "require-dev": {
                 "greg-1-anderson/composer-test-scenarios": "^1",
-                "php-coveralls/php-coveralls": "^2.5",
-                "phpunit/phpunit": "^9",
-                "squizlabs/php_codesniffer": "^3.3"
+                "phpunit/phpunit": "^4|^5.5.4",
+                "satooshi/php-coveralls": "^1.0.2|dev-master",
+                "squizlabs/php_codesniffer": "^2.7"
             },
             "type": "library",
             "extra": {
@@ -18935,50 +8200,42 @@
                 }
             ],
             "description": "Expands internal property references in PHP arrays file.",
-            "support": {
-                "issues": "https://github.com/grasmash/expander/issues",
-                "source": "https://github.com/grasmash/expander/tree/3.0.1"
-            },
-            "time": "2024-11-25T23:28:05+00:00"
+            "time": "2017-12-21T22:14:55+00:00"
         },
         {
-            "name": "grasmash/yaml-cli",
-            "version": "3.2.1",
+            "name": "grasmash/yaml-expander",
+            "version": "1.4.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/grasmash/yaml-cli.git",
-                "reference": "09a8860566958a1576cc54bbe910a03477e54971"
+                "url": "https://github.com/grasmash/yaml-expander.git",
+                "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
-                "reference": "09a8860566958a1576cc54bbe910a03477e54971",
+                "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
+                "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
                 "shasum": ""
             },
             "require": {
-                "dflydev/dot-access-data": "^3",
-                "php": ">=8.0",
-                "symfony/console": "^6 || ^7",
-                "symfony/filesystem": "^6 || ^7",
-                "symfony/yaml": "^6 || ^7"
+                "dflydev/dot-access-data": "^1.1.0",
+                "php": ">=5.4",
+                "symfony/yaml": "^2.8.11|^3|^4"
             },
             "require-dev": {
-                "php-coveralls/php-coveralls": "^2",
-                "phpunit/phpunit": "^9",
-                "squizlabs/php_codesniffer": "^3.0"
+                "greg-1-anderson/composer-test-scenarios": "^1",
+                "phpunit/phpunit": "^4.8|^5.5.4",
+                "satooshi/php-coveralls": "^1.0.2|dev-master",
+                "squizlabs/php_codesniffer": "^2.7"
             },
-            "bin": [
-                "bin/yaml-cli"
-            ],
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "3.x-dev"
+                    "dev-master": "1.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Grasmash\\YamlCli\\": "src/"
+                    "Grasmash\\YamlExpander\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -18990,56 +8247,40 @@
                     "name": "Matthew Grasmick"
                 }
             ],
-            "description": "A command line tool for reading and manipulating yaml files.",
-            "support": {
-                "issues": "https://github.com/grasmash/yaml-cli/issues",
-                "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
-            },
-            "time": "2024-04-23T02:10:57+00:00"
+            "description": "Expands internal property references in a yaml file.",
+            "time": "2017-12-16T16:06:03+00:00"
         },
         {
             "name": "guzzlehttp/guzzle",
-            "version": "7.9.3",
+            "version": "6.3.3",
             "source": {
                 "type": "git",
                 "url": "https://github.com/guzzle/guzzle.git",
-                "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
+                "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
-                "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
+                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
+                "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
                 "shasum": ""
             },
             "require": {
-                "ext-json": "*",
-                "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
-                "guzzlehttp/psr7": "^2.7.0",
-                "php": "^7.2.5 || ^8.0",
-                "psr/http-client": "^1.0",
-                "symfony/deprecation-contracts": "^2.2 || ^3.0"
-            },
-            "provide": {
-                "psr/http-client-implementation": "1.0"
+                "guzzlehttp/promises": "^1.0",
+                "guzzlehttp/psr7": "^1.4",
+                "php": ">=5.5"
             },
             "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.8.2",
                 "ext-curl": "*",
-                "guzzle/client-integration-tests": "3.0.2",
-                "php-http/message-factory": "^1.1",
-                "phpunit/phpunit": "^8.5.39 || ^9.6.20",
-                "psr/log": "^1.1 || ^2.0 || ^3.0"
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
+                "psr/log": "^1.0"
             },
             "suggest": {
-                "ext-curl": "Required for CURL handler support",
-                "ext-intl": "Required for Internationalized Domain Name (IDN) support",
                 "psr/log": "Required for using the Log middleware"
             },
             "type": "library",
             "extra": {
-                "bamarni-bin": {
-                    "bin-links": true,
-                    "forward-command": false
+                "branch-alias": {
+                    "dev-master": "6.3-dev"
                 }
             },
             "autoload": {
@@ -19055,240 +8296,132 @@
                 "MIT"
             ],
             "authors": [
-                {
-                    "name": "Graham Campbell",
-                    "email": "hello@gjcampbell.co.uk",
-                    "homepage": "https://github.com/GrahamCampbell"
-                },
                 {
                     "name": "Michael Dowling",
                     "email": "mtdowling@gmail.com",
                     "homepage": "https://github.com/mtdowling"
-                },
-                {
-                    "name": "Jeremy Lindblom",
-                    "email": "jeremeamia@gmail.com",
-                    "homepage": "https://github.com/jeremeamia"
-                },
-                {
-                    "name": "George Mponos",
-                    "email": "gmponos@gmail.com",
-                    "homepage": "https://github.com/gmponos"
-                },
-                {
-                    "name": "Tobias Nyholm",
-                    "email": "tobias.nyholm@gmail.com",
-                    "homepage": "https://github.com/Nyholm"
-                },
-                {
-                    "name": "Márk Sági-Kazár",
-                    "email": "mark.sagikazar@gmail.com",
-                    "homepage": "https://github.com/sagikazarmark"
-                },
-                {
-                    "name": "Tobias Schultze",
-                    "email": "webmaster@tubo-world.de",
-                    "homepage": "https://github.com/Tobion"
                 }
             ],
             "description": "Guzzle is a PHP HTTP client library",
+            "homepage": "http://guzzlephp.org/",
             "keywords": [
                 "client",
                 "curl",
                 "framework",
                 "http",
                 "http client",
-                "psr-18",
-                "psr-7",
                 "rest",
                 "web service"
             ],
-            "support": {
-                "issues": "https://github.com/guzzle/guzzle/issues",
-                "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/GrahamCampbell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://github.com/Nyholm",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-03-27T13:37:11+00:00"
+            "time": "2018-04-22T15:46:56+00:00"
         },
         {
             "name": "guzzlehttp/promises",
-            "version": "2.0.4",
+            "version": "v1.3.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/guzzle/promises.git",
-                "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
+                "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
-                "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
+                "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
+                "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.2.5 || ^8.0"
+                "php": ">=5.5.0"
             },
             "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.8.2",
-                "phpunit/phpunit": "^8.5.39 || ^9.6.20"
+                "phpunit/phpunit": "^4.0"
             },
             "type": "library",
             "extra": {
-                "bamarni-bin": {
-                    "bin-links": true,
-                    "forward-command": false
+                "branch-alias": {
+                    "dev-master": "1.4-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
                     "GuzzleHttp\\Promise\\": "src/"
-                }
+                },
+                "files": [
+                    "src/functions_include.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
             "authors": [
-                {
-                    "name": "Graham Campbell",
-                    "email": "hello@gjcampbell.co.uk",
-                    "homepage": "https://github.com/GrahamCampbell"
-                },
                 {
                     "name": "Michael Dowling",
                     "email": "mtdowling@gmail.com",
                     "homepage": "https://github.com/mtdowling"
-                },
-                {
-                    "name": "Tobias Nyholm",
-                    "email": "tobias.nyholm@gmail.com",
-                    "homepage": "https://github.com/Nyholm"
-                },
-                {
-                    "name": "Tobias Schultze",
-                    "email": "webmaster@tubo-world.de",
-                    "homepage": "https://github.com/Tobion"
                 }
             ],
             "description": "Guzzle promises library",
             "keywords": [
                 "promise"
             ],
-            "support": {
-                "issues": "https://github.com/guzzle/promises/issues",
-                "source": "https://github.com/guzzle/promises/tree/2.0.4"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/GrahamCampbell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://github.com/Nyholm",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2024-10-17T10:06:22+00:00"
+            "time": "2016-12-20T10:07:11+00:00"
         },
         {
             "name": "guzzlehttp/psr7",
-            "version": "2.7.1",
+            "version": "1.6.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/guzzle/psr7.git",
-                "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
+                "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
-                "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
+                "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
+                "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.2.5 || ^8.0",
-                "psr/http-factory": "^1.0",
-                "psr/http-message": "^1.1 || ^2.0",
-                "ralouphie/getallheaders": "^3.0"
+                "php": ">=5.4.0",
+                "psr/http-message": "~1.0",
+                "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
             },
             "provide": {
-                "psr/http-factory-implementation": "1.0",
                 "psr/http-message-implementation": "1.0"
             },
             "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.8.2",
-                "http-interop/http-factory-tests": "0.9.0",
-                "phpunit/phpunit": "^8.5.39 || ^9.6.20"
+                "ext-zlib": "*",
+                "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
             },
             "suggest": {
-                "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+                "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
             },
             "type": "library",
             "extra": {
-                "bamarni-bin": {
-                    "bin-links": true,
-                    "forward-command": false
+                "branch-alias": {
+                    "dev-master": "1.6-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
                     "GuzzleHttp\\Psr7\\": "src/"
-                }
+                },
+                "files": [
+                    "src/functions_include.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
             "authors": [
-                {
-                    "name": "Graham Campbell",
-                    "email": "hello@gjcampbell.co.uk",
-                    "homepage": "https://github.com/GrahamCampbell"
-                },
                 {
                     "name": "Michael Dowling",
                     "email": "mtdowling@gmail.com",
                     "homepage": "https://github.com/mtdowling"
                 },
-                {
-                    "name": "George Mponos",
-                    "email": "gmponos@gmail.com",
-                    "homepage": "https://github.com/gmponos"
-                },
-                {
-                    "name": "Tobias Nyholm",
-                    "email": "tobias.nyholm@gmail.com",
-                    "homepage": "https://github.com/Nyholm"
-                },
-                {
-                    "name": "Márk Sági-Kazár",
-                    "email": "mark.sagikazar@gmail.com",
-                    "homepage": "https://github.com/sagikazarmark"
-                },
                 {
                     "name": "Tobias Schultze",
-                    "email": "webmaster@tubo-world.de",
                     "homepage": "https://github.com/Tobion"
-                },
-                {
-                    "name": "Márk Sági-Kazár",
-                    "email": "mark.sagikazar@gmail.com",
-                    "homepage": "https://sagikazarmark.hu"
                 }
             ],
             "description": "PSR-7 message implementation that also provides common utility methods",
@@ -19302,248 +8435,80 @@
                 "uri",
                 "url"
             ],
-            "support": {
-                "issues": "https://github.com/guzzle/psr7/issues",
-                "source": "https://github.com/guzzle/psr7/tree/2.7.1"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/GrahamCampbell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://github.com/Nyholm",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-03-27T12:30:47+00:00"
+            "time": "2019-07-01T23:21:34+00:00"
         },
         {
-            "name": "indieauth/client",
-            "version": "1.1.6",
+            "name": "jakub-onderka/php-console-color",
+            "version": "v0.2",
             "source": {
                 "type": "git",
-                "url": "https://github.com/indieweb/indieauth-client-php.git",
-                "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d"
+                "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
+                "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/9f3f9cc71a752c371b44d40a979504ffd7026c7d",
-                "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d",
+                "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
+                "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
                 "shasum": ""
             },
             "require": {
-                "indieweb/representative-h-card": "^0.1.2",
-                "mf2/mf2": "^0.5",
-                "p3k/http": "^0.1",
-                "php": ">5.6.0"
+                "php": ">=5.4.0"
             },
             "require-dev": {
-                "yoast/phpunit-polyfills": "^1.0"
+                "jakub-onderka/php-code-style": "1.0",
+                "jakub-onderka/php-parallel-lint": "1.0",
+                "jakub-onderka/php-var-dump-check": "0.*",
+                "phpunit/phpunit": "~4.3",
+                "squizlabs/php_codesniffer": "1.*"
             },
             "type": "library",
             "autoload": {
                 "psr-4": {
-                    "IndieAuth\\": "src/IndieAuth/"
+                    "JakubOnderka\\PhpConsoleColor\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "Apache-2.0"
+                "BSD-2-Clause"
             ],
             "authors": [
                 {
-                    "name": "Aaron Parecki",
-                    "homepage": "https://aaronparecki.com"
+                    "name": "Jakub Onderka",
+                    "email": "jakub.onderka@gmail.com"
                 }
             ],
-            "description": "IndieAuth Client Library",
-            "support": {
-                "issues": "https://github.com/indieweb/indieauth-client-php/issues",
-                "source": "https://github.com/indieweb/indieauth-client-php/tree/1.1.6"
-            },
-            "funding": [
-                {
-                    "url": "https://opencollective.com/indieweb",
-                    "type": "opencollective"
-                }
-            ],
-            "time": "2022-11-08T21:37:04+00:00"
+            "time": "2018-09-29T17:23:10+00:00"
         },
         {
-            "name": "indieweb/link-rel-parser",
-            "version": "0.1.3",
+            "name": "jakub-onderka/php-console-highlighter",
+            "version": "v0.4",
             "source": {
                 "type": "git",
-                "url": "https://github.com/indieweb/link-rel-parser-php.git",
-                "reference": "295420e4f16d9a9d262a3c25a7a583794428f055"
+                "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
+                "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/indieweb/link-rel-parser-php/zipball/295420e4f16d9a9d262a3c25a7a583794428f055",
-                "reference": "295420e4f16d9a9d262a3c25a7a583794428f055",
+                "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
+                "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.0"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/IndieWeb/link_rel_parser.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "http://aaronparecki.com"
-                },
-                {
-                    "name": "Tantek Çelik",
-                    "homepage": "http://tantek.com"
-                }
-            ],
-            "description": "Parse rel values from HTTP headers",
-            "homepage": "https://github.com/indieweb/link-rel-parser-php",
-            "keywords": [
-                "http",
-                "indieweb",
-                "microformats2"
-            ],
-            "support": {
-                "issues": "https://github.com/indieweb/link-rel-parser-php/issues",
-                "source": "https://github.com/indieweb/link-rel-parser-php/tree/master"
-            },
-            "time": "2017-01-11T17:14:49+00:00"
-        },
-        {
-            "name": "indieweb/mention-client",
-            "version": "1.2.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/indieweb/mention-client-php.git",
-                "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/6807f4b1b96df7f47ea425eebfc7c032768652cf",
-                "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf",
-                "shasum": ""
-            },
-            "require": {
-                "mf2/mf2": ">=0.2",
-                "php": ">=5.6"
+                "ext-tokenizer": "*",
+                "jakub-onderka/php-console-color": "~0.2",
+                "php": ">=5.4.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^6"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-0": {
-                    "IndieWeb": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "email": "aaron@parecki.com",
-                    "homepage": "http://aaronparecki.com/"
-                }
-            ],
-            "description": "Client library for sending webmention and pingback notifications",
-            "homepage": "https://github.com/indieweb/mention-client-php",
-            "support": {
-                "issues": "https://github.com/indieweb/mention-client-php/issues",
-                "source": "https://github.com/indieweb/mention-client-php/tree/1.2.1"
-            },
-            "time": "2021-02-02T13:13:07+00:00"
-        },
-        {
-            "name": "indieweb/representative-h-card",
-            "version": "0.1.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/indieweb/representative-h-card-php.git",
-                "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/indieweb/representative-h-card-php/zipball/97731c6ccc0838418c775b867bf826aeaa91cd95",
-                "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.4"
-            },
-            "require-dev": {
-                "mf2/mf2": "0.2.*",
-                "phpunit/phpunit": "*"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/mf2/representative-h-card.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "http://aaronparecki.com"
-                }
-            ],
-            "keywords": [
-                "h-card",
-                "indieweb",
-                "mf2",
-                "microformats"
-            ],
-            "support": {
-                "issues": "https://github.com/indieweb/representative-h-card-php/issues",
-                "source": "https://github.com/indieweb/representative-h-card-php/tree/0.1.3"
-            },
-            "time": "2023-05-24T15:33:06+00:00"
-        },
-        {
-            "name": "kwn/number-to-words",
-            "version": "1.13.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/kwn/number-to-words.git",
-                "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/kwn/number-to-words/zipball/df61dc0f2fffe49f87319c9bcf1f7f44669152c7",
-                "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.6|>=7.1"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^5.7.9",
-                "squizlabs/php_codesniffer": "^3.3.0"
+                "jakub-onderka/php-code-style": "~1.0",
+                "jakub-onderka/php-parallel-lint": "~1.0",
+                "jakub-onderka/php-var-dump-check": "~0.1",
+                "phpunit/phpunit": "~4.0",
+                "squizlabs/php_codesniffer": "~1.5"
             },
             "type": "library",
             "autoload": {
                 "psr-4": {
-                    "NumberToWords\\": "src"
+                    "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -19552,558 +8517,47 @@
             ],
             "authors": [
                 {
-                    "name": "Karol Wnuk",
-                    "email": "k.wnuk@ascetic.pl"
+                    "name": "Jakub Onderka",
+                    "email": "acci@acci.cz",
+                    "homepage": "http://www.acci.cz/"
                 }
             ],
-            "description": "Multi language standalone PHP number to words converter. Fully tested, open for extensions and new languages.",
-            "keywords": [
-                "currency",
-                "money",
-                "number",
-                "numbers",
-                "string",
-                "to",
-                "words"
-            ],
-            "support": {
-                "issues": "https://github.com/kwn/number-to-words/issues",
-                "source": "https://github.com/kwn/number-to-words/tree/1.13.0"
-            },
-            "time": "2021-06-23T20:47:44+00:00"
-        },
-        {
-            "name": "laminas/laminas-escaper",
-            "version": "2.17.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/laminas/laminas-escaper.git",
-                "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba",
-                "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba",
-                "shasum": ""
-            },
-            "require": {
-                "ext-ctype": "*",
-                "ext-mbstring": "*",
-                "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
-            },
-            "conflict": {
-                "zendframework/zend-escaper": "*"
-            },
-            "require-dev": {
-                "infection/infection": "^0.29.8",
-                "laminas/laminas-coding-standard": "~3.0.1",
-                "phpunit/phpunit": "^10.5.45",
-                "psalm/plugin-phpunit": "^0.19.2",
-                "vimeo/psalm": "^6.6.2"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Laminas\\Escaper\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
-            "homepage": "https://laminas.dev",
-            "keywords": [
-                "escaper",
-                "laminas"
-            ],
-            "support": {
-                "chat": "https://laminas.dev/chat",
-                "docs": "https://docs.laminas.dev/laminas-escaper/",
-                "forum": "https://discourse.laminas.dev",
-                "issues": "https://github.com/laminas/laminas-escaper/issues",
-                "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
-                "source": "https://github.com/laminas/laminas-escaper"
-            },
-            "funding": [
-                {
-                    "url": "https://funding.communitybridge.org/projects/laminas-project",
-                    "type": "community_bridge"
-                }
-            ],
-            "time": "2025-05-06T19:29:36+00:00"
-        },
-        {
-            "name": "laminas/laminas-feed",
-            "version": "2.23.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/laminas/laminas-feed.git",
-                "reference": "23807e692b3174750b426143bd93572b71b6739a"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/23807e692b3174750b426143bd93572b71b6739a",
-                "reference": "23807e692b3174750b426143bd93572b71b6739a",
-                "shasum": ""
-            },
-            "require": {
-                "ext-dom": "*",
-                "ext-libxml": "*",
-                "laminas/laminas-escaper": "^2.9",
-                "laminas/laminas-stdlib": "^3.6",
-                "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
-            },
-            "conflict": {
-                "laminas/laminas-servicemanager": "<3.3",
-                "zendframework/zend-feed": "*"
-            },
-            "require-dev": {
-                "laminas/laminas-cache": "^2.13.2 || ^3.12",
-                "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3",
-                "laminas/laminas-coding-standard": "~2.5.0",
-                "laminas/laminas-db": "^2.18",
-                "laminas/laminas-http": "^2.19",
-                "laminas/laminas-servicemanager": "^3.22.1",
-                "laminas/laminas-validator": "^2.46",
-                "phpunit/phpunit": "^10.5.5",
-                "psalm/plugin-phpunit": "^0.19.0",
-                "psr/http-message": "^2.0",
-                "vimeo/psalm": "^5.18.0"
-            },
-            "suggest": {
-                "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
-                "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
-                "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
-                "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
-                "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
-                "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Laminas\\Feed\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "description": "provides functionality for creating and consuming RSS and Atom feeds",
-            "homepage": "https://laminas.dev",
-            "keywords": [
-                "atom",
-                "feed",
-                "laminas",
-                "rss"
-            ],
-            "support": {
-                "chat": "https://laminas.dev/chat",
-                "docs": "https://docs.laminas.dev/laminas-feed/",
-                "forum": "https://discourse.laminas.dev",
-                "issues": "https://github.com/laminas/laminas-feed/issues",
-                "rss": "https://github.com/laminas/laminas-feed/releases.atom",
-                "source": "https://github.com/laminas/laminas-feed"
-            },
-            "funding": [
-                {
-                    "url": "https://funding.communitybridge.org/projects/laminas-project",
-                    "type": "community_bridge"
-                }
-            ],
-            "time": "2024-10-09T10:53:30+00:00"
-        },
-        {
-            "name": "laminas/laminas-stdlib",
-            "version": "3.20.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/laminas/laminas-stdlib.git",
-                "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
-                "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
-                "shasum": ""
-            },
-            "require": {
-                "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
-            },
-            "conflict": {
-                "zendframework/zend-stdlib": "*"
-            },
-            "require-dev": {
-                "laminas/laminas-coding-standard": "^3.0",
-                "phpbench/phpbench": "^1.3.1",
-                "phpunit/phpunit": "^10.5.38",
-                "psalm/plugin-phpunit": "^0.19.0",
-                "vimeo/psalm": "^5.26.1"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Laminas\\Stdlib\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "description": "SPL extensions, array utilities, error handlers, and more",
-            "homepage": "https://laminas.dev",
-            "keywords": [
-                "laminas",
-                "stdlib"
-            ],
-            "support": {
-                "chat": "https://laminas.dev/chat",
-                "docs": "https://docs.laminas.dev/laminas-stdlib/",
-                "forum": "https://discourse.laminas.dev",
-                "issues": "https://github.com/laminas/laminas-stdlib/issues",
-                "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
-                "source": "https://github.com/laminas/laminas-stdlib"
-            },
-            "funding": [
-                {
-                    "url": "https://funding.communitybridge.org/projects/laminas-project",
-                    "type": "community_bridge"
-                }
-            ],
-            "time": "2024-10-29T13:46:07+00:00"
-        },
-        {
-            "name": "laminas/laminas-xml",
-            "version": "1.7.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/laminas/laminas-xml.git",
-                "reference": "3a7850dec668a89807accfa4826a2ff11497fe74"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/3a7850dec668a89807accfa4826a2ff11497fe74",
-                "reference": "3a7850dec668a89807accfa4826a2ff11497fe74",
-                "shasum": ""
-            },
-            "require": {
-                "ext-dom": "*",
-                "ext-simplexml": "*",
-                "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
-            },
-            "conflict": {
-                "zendframework/zendxml": "*"
-            },
-            "require-dev": {
-                "ext-iconv": "*",
-                "laminas/laminas-coding-standard": "~1.0.0",
-                "phpunit/phpunit": "^10.5.35 || ^11.4",
-                "squizlabs/php_codesniffer": "3.10.3 as 2.9999999.9999999"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Laminas\\Xml\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "description": "Utility library for XML usage, best practices, and security in PHP",
-            "homepage": "https://laminas.dev",
-            "keywords": [
-                "laminas",
-                "security",
-                "xml"
-            ],
-            "support": {
-                "chat": "https://laminas.dev/chat",
-                "forum": "https://discourse.laminas.dev",
-                "issues": "https://github.com/laminas/laminas-xml/issues",
-                "rss": "https://github.com/laminas/laminas-xml/releases.atom",
-                "source": "https://github.com/laminas/laminas-xml"
-            },
-            "funding": [
-                {
-                    "url": "https://funding.communitybridge.org/projects/laminas-project",
-                    "type": "community_bridge"
-                }
-            ],
-            "time": "2024-10-11T08:45:59+00:00"
-        },
-        {
-            "name": "lcobucci/clock",
-            "version": "3.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/lcobucci/clock.git",
-                "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc",
-                "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc",
-                "shasum": ""
-            },
-            "require": {
-                "php": "~8.1.0 || ~8.2.0",
-                "psr/clock": "^1.0"
-            },
-            "provide": {
-                "psr/clock-implementation": "1.0"
-            },
-            "require-dev": {
-                "infection/infection": "^0.26",
-                "lcobucci/coding-standard": "^9.0",
-                "phpstan/extension-installer": "^1.2",
-                "phpstan/phpstan": "^1.9.4",
-                "phpstan/phpstan-deprecation-rules": "^1.1.1",
-                "phpstan/phpstan-phpunit": "^1.3.2",
-                "phpstan/phpstan-strict-rules": "^1.4.4",
-                "phpunit/phpunit": "^9.5.27"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Lcobucci\\Clock\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Luís Cobucci",
-                    "email": "lcobucci@gmail.com"
-                }
-            ],
-            "description": "Yet another clock abstraction",
-            "support": {
-                "issues": "https://github.com/lcobucci/clock/issues",
-                "source": "https://github.com/lcobucci/clock/tree/3.0.0"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/lcobucci",
-                    "type": "github"
-                },
-                {
-                    "url": "https://www.patreon.com/lcobucci",
-                    "type": "patreon"
-                }
-            ],
-            "time": "2022-12-19T15:00:24+00:00"
-        },
-        {
-            "name": "lcobucci/jwt",
-            "version": "4.3.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/lcobucci/jwt.git",
-                "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4",
-                "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4",
-                "shasum": ""
-            },
-            "require": {
-                "ext-hash": "*",
-                "ext-json": "*",
-                "ext-mbstring": "*",
-                "ext-openssl": "*",
-                "ext-sodium": "*",
-                "lcobucci/clock": "^2.0 || ^3.0",
-                "php": "^7.4 || ^8.0"
-            },
-            "require-dev": {
-                "infection/infection": "^0.21",
-                "lcobucci/coding-standard": "^6.0",
-                "mikey179/vfsstream": "^1.6.7",
-                "phpbench/phpbench": "^1.2",
-                "phpstan/extension-installer": "^1.0",
-                "phpstan/phpstan": "^1.4",
-                "phpstan/phpstan-deprecation-rules": "^1.0",
-                "phpstan/phpstan-phpunit": "^1.0",
-                "phpstan/phpstan-strict-rules": "^1.0",
-                "phpunit/php-invoker": "^3.1",
-                "phpunit/phpunit": "^9.5"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Lcobucci\\JWT\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "authors": [
-                {
-                    "name": "Luís Cobucci",
-                    "email": "lcobucci@gmail.com",
-                    "role": "Developer"
-                }
-            ],
-            "description": "A simple library to work with JSON Web Token and JSON Web Signature",
-            "keywords": [
-                "JWS",
-                "jwt"
-            ],
-            "support": {
-                "issues": "https://github.com/lcobucci/jwt/issues",
-                "source": "https://github.com/lcobucci/jwt/tree/4.3.0"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/lcobucci",
-                    "type": "github"
-                },
-                {
-                    "url": "https://www.patreon.com/lcobucci",
-                    "type": "patreon"
-                }
-            ],
-            "time": "2023-01-02T13:28:00+00:00"
-        },
-        {
-            "name": "league/commonmark",
-            "version": "1.6.7",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thephpleague/commonmark.git",
-                "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
-                "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
-                "shasum": ""
-            },
-            "require": {
-                "ext-mbstring": "*",
-                "php": "^7.1 || ^8.0"
-            },
-            "conflict": {
-                "scrutinizer/ocular": "1.7.*"
-            },
-            "require-dev": {
-                "cebe/markdown": "~1.0",
-                "commonmark/commonmark.js": "0.29.2",
-                "erusev/parsedown": "~1.0",
-                "ext-json": "*",
-                "github/gfm": "0.29.0",
-                "michelf/php-markdown": "~1.4",
-                "mikehaertl/php-shellcommand": "^1.4",
-                "phpstan/phpstan": "^0.12.90",
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
-                "scrutinizer/ocular": "^1.5",
-                "symfony/finder": "^4.2"
-            },
-            "bin": [
-                "bin/commonmark"
-            ],
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "League\\CommonMark\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "authors": [
-                {
-                    "name": "Colin O'Dell",
-                    "email": "colinodell@gmail.com",
-                    "homepage": "https://www.colinodell.com",
-                    "role": "Lead Developer"
-                }
-            ],
-            "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
-            "homepage": "https://commonmark.thephpleague.com",
-            "keywords": [
-                "commonmark",
-                "flavored",
-                "gfm",
-                "github",
-                "github-flavored",
-                "markdown",
-                "md",
-                "parser"
-            ],
-            "support": {
-                "docs": "https://commonmark.thephpleague.com/",
-                "issues": "https://github.com/thephpleague/commonmark/issues",
-                "rss": "https://github.com/thephpleague/commonmark/releases.atom",
-                "source": "https://github.com/thephpleague/commonmark"
-            },
-            "funding": [
-                {
-                    "url": "https://www.colinodell.com/sponsor",
-                    "type": "custom"
-                },
-                {
-                    "url": "https://www.paypal.me/colinpodell/10.00",
-                    "type": "custom"
-                },
-                {
-                    "url": "https://github.com/colinodell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2022-01-13T17:18:13+00:00"
+            "description": "Highlight PHP code in terminal",
+            "time": "2018-09-29T18:48:56+00:00"
         },
         {
             "name": "league/container",
-            "version": "4.2.4",
+            "version": "2.4.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/thephpleague/container.git",
-                "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec"
+                "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/container/zipball/7ea728b013b9a156c409c6f0fc3624071b742dec",
-                "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec",
+                "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
+                "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.2 || ^8.0",
-                "psr/container": "^1.1 || ^2.0"
+                "container-interop/container-interop": "^1.2",
+                "php": "^5.4.0 || ^7.0"
             },
             "provide": {
+                "container-interop/container-interop-implementation": "^1.2",
                 "psr/container-implementation": "^1.0"
             },
             "replace": {
                 "orno/di": "~2.0"
             },
             "require-dev": {
-                "nette/php-generator": "^3.4",
-                "nikic/php-parser": "^4.10",
-                "phpstan/phpstan": "^0.12.47",
-                "phpunit/phpunit": "^8.5.17",
-                "roave/security-advisories": "dev-latest",
-                "scrutinizer/ocular": "^1.8",
-                "squizlabs/php_codesniffer": "^3.6"
+                "phpunit/phpunit": "4.*"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-1.x": "1.x-dev",
                     "dev-2.x": "2.x-dev",
-                    "dev-3.x": "3.x-dev",
-                    "dev-4.x": "4.x-dev",
-                    "dev-master": "4.x-dev"
+                    "dev-1.x": "1.x-dev"
                 }
             },
             "autoload": {
@@ -20118,7 +8572,8 @@
             "authors": [
                 {
                     "name": "Phil Bennett",
-                    "email": "mail@philbennett.co.uk",
+                    "email": "philipobenito@gmail.com",
+                    "homepage": "http://www.philipobenito.com",
                     "role": "Developer"
                 }
             ],
@@ -20133,56 +8588,38 @@
                 "provider",
                 "service"
             ],
-            "support": {
-                "issues": "https://github.com/thephpleague/container/issues",
-                "source": "https://github.com/thephpleague/container/tree/4.2.4"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/philipobenito",
-                    "type": "github"
-                }
-            ],
-            "time": "2024-11-10T12:42:13+00:00"
+            "time": "2017-05-10T09:20:27+00:00"
         },
         {
             "name": "league/csv",
-            "version": "9.23.0",
+            "version": "9.3.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/thephpleague/csv.git",
-                "reference": "774008ad8a634448e4f8e288905e070e8b317ff3"
+                "reference": "d16f85d1f958a765844db4bc7174017edf2dd637"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/csv/zipball/774008ad8a634448e4f8e288905e070e8b317ff3",
-                "reference": "774008ad8a634448e4f8e288905e070e8b317ff3",
+                "url": "https://api.github.com/repos/thephpleague/csv/zipball/d16f85d1f958a765844db4bc7174017edf2dd637",
+                "reference": "d16f85d1f958a765844db4bc7174017edf2dd637",
                 "shasum": ""
             },
             "require": {
-                "ext-filter": "*",
-                "php": "^8.1.2"
+                "ext-dom": "*",
+                "ext-json": "*",
+                "ext-mbstring": "*",
+                "php": ">=7.0.10"
             },
             "require-dev": {
-                "ext-dom": "*",
-                "ext-xdebug": "*",
-                "friendsofphp/php-cs-fixer": "^3.69.0",
-                "phpbench/phpbench": "^1.4.0",
-                "phpstan/phpstan": "^1.12.18",
-                "phpstan/phpstan-deprecation-rules": "^1.2.1",
-                "phpstan/phpstan-phpunit": "^1.4.2",
-                "phpstan/phpstan-strict-rules": "^1.6.2",
-                "phpunit/phpunit": "^10.5.16 || ^11.5.7",
-                "symfony/var-dumper": "^6.4.8 || ^7.2.3"
+                "ext-curl": "*",
+                "friendsofphp/php-cs-fixer": "^2.12",
+                "phpstan/phpstan": "^0.9.2",
+                "phpstan/phpstan-phpunit": "^0.9.4",
+                "phpstan/phpstan-strict-rules": "^0.9.0",
+                "phpunit/phpunit": "^6.0"
             },
             "suggest": {
-                "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
-                "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
-                "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters",
-                "ext-mysqli": "Requiered to use the package with the MySQLi extension",
-                "ext-pdo": "Required to use the package with the PDO extension",
-                "ext-pgsql": "Requiered to use the package with the PgSQL extension",
-                "ext-sqlite3": "Required to use the package with the SQLite3 extension"
+                "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters"
             },
             "type": "library",
             "extra": {
@@ -20191,12 +8628,12 @@
                 }
             },
             "autoload": {
-                "files": [
-                    "src/functions_include.php"
-                ],
                 "psr-4": {
                     "League\\Csv\\": "src"
-                }
+                },
+                "files": [
+                    "src/functions_include.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
@@ -20210,173 +8647,42 @@
                     "role": "Developer"
                 }
             ],
-            "description": "CSV data manipulation made easy in PHP",
-            "homepage": "https://csv.thephpleague.com",
+            "description": "Csv data manipulation made easy in PHP",
+            "homepage": "http://csv.thephpleague.com",
             "keywords": [
-                "convert",
                 "csv",
                 "export",
                 "filter",
                 "import",
                 "read",
-                "transform",
                 "write"
             ],
-            "support": {
-                "docs": "https://csv.thephpleague.com",
-                "issues": "https://github.com/thephpleague/csv/issues",
-                "rss": "https://github.com/thephpleague/csv/releases.atom",
-                "source": "https://github.com/thephpleague/csv"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/sponsors/nyamsprod",
-                    "type": "github"
-                }
-            ],
-            "time": "2025-03-28T06:52:04+00:00"
-        },
-        {
-            "name": "league/oauth2-client",
-            "version": "2.8.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thephpleague/oauth2-client.git",
-                "reference": "9df2924ca644736c835fc60466a3a60390d334f9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/9df2924ca644736c835fc60466a3a60390d334f9",
-                "reference": "9df2924ca644736c835fc60466a3a60390d334f9",
-                "shasum": ""
-            },
-            "require": {
-                "ext-json": "*",
-                "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
-                "php": "^7.1 || >=8.0.0 <8.5.0"
-            },
-            "require-dev": {
-                "mockery/mockery": "^1.3.5",
-                "php-parallel-lint/php-parallel-lint": "^1.4",
-                "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
-                "squizlabs/php_codesniffer": "^3.11"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "League\\OAuth2\\Client\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Alex Bilbie",
-                    "email": "hello@alexbilbie.com",
-                    "homepage": "http://www.alexbilbie.com",
-                    "role": "Developer"
-                },
-                {
-                    "name": "Woody Gilk",
-                    "homepage": "https://github.com/shadowhand",
-                    "role": "Contributor"
-                }
-            ],
-            "description": "OAuth 2.0 Client Library",
-            "keywords": [
-                "Authentication",
-                "SSO",
-                "authorization",
-                "identity",
-                "idp",
-                "oauth",
-                "oauth2",
-                "single sign on"
-            ],
-            "support": {
-                "issues": "https://github.com/thephpleague/oauth2-client/issues",
-                "source": "https://github.com/thephpleague/oauth2-client/tree/2.8.1"
-            },
-            "time": "2025-02-26T04:37:30+00:00"
-        },
-        {
-            "name": "league/oauth2-facebook",
-            "version": "2.2.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thephpleague/oauth2-facebook.git",
-                "reference": "ec6d62a00b548c6cd56d7b734346b9e6befbfbbb"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/ec6d62a00b548c6cd56d7b734346b9e6befbfbbb",
-                "reference": "ec6d62a00b548c6cd56d7b734346b9e6befbfbbb",
-                "shasum": ""
-            },
-            "require": {
-                "league/oauth2-client": "^2.0",
-                "php": ">=7.3"
-            },
-            "require-dev": {
-                "ext-json": "*",
-                "mockery/mockery": "~1.3.0",
-                "phpunit/phpunit": "^9.4",
-                "squizlabs/php_codesniffer": "~3.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "League\\OAuth2\\Client\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Sammy Kaye Powers",
-                    "email": "me@sammyk.me",
-                    "homepage": "http://www.sammyk.me"
-                }
-            ],
-            "description": "Facebook OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
-            "keywords": [
-                "Authentication",
-                "authorization",
-                "client",
-                "facebook",
-                "oauth",
-                "oauth2"
-            ],
-            "support": {
-                "issues": "https://github.com/thephpleague/oauth2-facebook/issues",
-                "source": "https://github.com/thephpleague/oauth2-facebook/tree/2.2.0"
-            },
-            "time": "2022-02-24T18:45:07+00:00"
+            "time": "2019-07-30T14:39:11+00:00"
         },
         {
             "name": "masterminds/html5",
-            "version": "2.9.0",
+            "version": "2.7.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/Masterminds/html5-php.git",
-                "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
+                "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
-                "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
+                "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
+                "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
                 "shasum": ""
             },
             "require": {
+                "ext-ctype": "*",
                 "ext-dom": "*",
+                "ext-libxml": "*",
                 "php": ">=5.3.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
+                "phpunit/phpunit": "^4.8.35",
+                "sami/sami": "~2.0",
+                "satooshi/php-coveralls": "1.0.*"
             },
             "type": "library",
             "extra": {
@@ -20418,852 +8724,28 @@
                 "serializer",
                 "xml"
             ],
-            "support": {
-                "issues": "https://github.com/Masterminds/html5-php/issues",
-                "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
-            },
-            "time": "2024-03-31T07:05:07+00:00"
-        },
-        {
-            "name": "matomo/device-detector",
-            "version": "6.4.5",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/matomo-org/device-detector.git",
-                "reference": "270bbc41f80994e80805ac377b67324eba53c412"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/270bbc41f80994e80805ac377b67324eba53c412",
-                "reference": "270bbc41f80994e80805ac377b67324eba53c412",
-                "shasum": ""
-            },
-            "require": {
-                "mustangostang/spyc": "*",
-                "php": "^7.2|^8.0"
-            },
-            "replace": {
-                "piwik/device-detector": "self.version"
-            },
-            "require-dev": {
-                "matthiasmullie/scrapbook": "^1.4.7",
-                "mayflower/mo4-coding-standard": "^v9.0.0",
-                "phpstan/phpstan": "^1.10.44",
-                "phpunit/phpunit": "^8.5.8",
-                "psr/cache": "^1.0.1",
-                "psr/simple-cache": "^1.0.1",
-                "slevomat/coding-standard": "<8.16.0",
-                "symfony/yaml": "^5.1.7"
-            },
-            "suggest": {
-                "doctrine/cache": "Can directly be used for caching purpose",
-                "ext-yaml": "Necessary for using the Pecl YAML parser"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "DeviceDetector\\": ""
-                },
-                "exclude-from-classmap": [
-                    "Tests/"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "LGPL-3.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "The Matomo Team",
-                    "email": "hello@matomo.org",
-                    "homepage": "https://matomo.org/team/"
-                }
-            ],
-            "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
-            "homepage": "https://matomo.org",
-            "keywords": [
-                "devicedetection",
-                "parser",
-                "useragent"
-            ],
-            "support": {
-                "forum": "https://forum.matomo.org/",
-                "issues": "https://github.com/matomo-org/device-detector/issues",
-                "source": "https://github.com/matomo-org/matomo",
-                "wiki": "https://dev.matomo.org/"
-            },
-            "time": "2025-02-26T17:37:32+00:00"
-        },
-        {
-            "name": "maxmind-db/reader",
-            "version": "v1.12.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
-                "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/815939e006b7e68062b540ec9e86aaa8be2b6ce4",
-                "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=7.2"
-            },
-            "conflict": {
-                "ext-maxminddb": "<1.11.1 || >=2.0.0"
-            },
-            "require-dev": {
-                "friendsofphp/php-cs-fixer": "3.*",
-                "phpstan/phpstan": "*",
-                "phpunit/phpunit": ">=8.0.0,<10.0.0",
-                "squizlabs/php_codesniffer": "3.*"
-            },
-            "suggest": {
-                "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
-                "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
-                "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "MaxMind\\Db\\": "src/MaxMind/Db"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Gregory J. Oschwald",
-                    "email": "goschwald@maxmind.com",
-                    "homepage": "https://www.maxmind.com/"
-                }
-            ],
-            "description": "MaxMind DB Reader API",
-            "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
-            "keywords": [
-                "database",
-                "geoip",
-                "geoip2",
-                "geolocation",
-                "maxmind"
-            ],
-            "support": {
-                "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
-                "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.12.1"
-            },
-            "time": "2025-05-05T20:56:32+00:00"
-        },
-        {
-            "name": "maxmind/web-service-common",
-            "version": "v0.10.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/maxmind/web-service-common-php.git",
-                "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4",
-                "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4",
-                "shasum": ""
-            },
-            "require": {
-                "composer/ca-bundle": "^1.0.3",
-                "ext-curl": "*",
-                "ext-json": "*",
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "friendsofphp/php-cs-fixer": "3.*",
-                "phpstan/phpstan": "*",
-                "phpunit/phpunit": "^8.0 || ^9.0",
-                "squizlabs/php_codesniffer": "3.*"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "MaxMind\\Exception\\": "src/Exception",
-                    "MaxMind\\WebService\\": "src/WebService"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Gregory Oschwald",
-                    "email": "goschwald@maxmind.com"
-                }
-            ],
-            "description": "Internal MaxMind Web Service API",
-            "homepage": "https://github.com/maxmind/web-service-common-php",
-            "support": {
-                "issues": "https://github.com/maxmind/web-service-common-php/issues",
-                "source": "https://github.com/maxmind/web-service-common-php/tree/v0.10.0"
-            },
-            "time": "2024-11-14T23:14:52+00:00"
-        },
-        {
-            "name": "mck89/peast",
-            "version": "v1.16.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mck89/peast.git",
-                "reference": "645ec21b650bc2aced18285c85f220d22afc1430"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430",
-                "reference": "645ec21b650bc2aced18285c85f220d22afc1430",
-                "shasum": ""
-            },
-            "require": {
-                "ext-mbstring": "*",
-                "php": ">=5.4.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.16.3-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Peast\\": "lib/Peast/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "authors": [
-                {
-                    "name": "Marco Marchiò",
-                    "email": "marco.mm89@gmail.com"
-                }
-            ],
-            "description": "Peast is PHP library that generates AST for JavaScript code",
-            "support": {
-                "issues": "https://github.com/mck89/peast/issues",
-                "source": "https://github.com/mck89/peast/tree/v1.16.3"
-            },
-            "time": "2024-07-23T14:00:32+00:00"
-        },
-        {
-            "name": "mf2/mf2",
-            "version": "v0.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/microformats/php-mf2.git",
-                "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/microformats/php-mf2/zipball/ddc56de6be62ed4a21f569de9b80e17af678ca50",
-                "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.6.0"
-            },
-            "require-dev": {
-                "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
-                "mf2/tests": "dev-master#e9e2b905821ba0a5b59dab1a8eaf40634ce9cd49",
-                "phpcompatibility/php-compatibility": "^9.3",
-                "phpunit/phpunit": "^5.7",
-                "squizlabs/php_codesniffer": "^3.6.2"
-            },
-            "suggest": {
-                "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you",
-                "masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support."
-            },
-            "bin": [
-                "bin/fetch-mf2",
-                "bin/parse-mf2"
-            ],
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "Mf2/Parser.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "CC0-1.0"
-            ],
-            "authors": [
-                {
-                    "name": "Barnaby Walters",
-                    "homepage": "http://waterpigs.co.uk"
-                }
-            ],
-            "description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API",
-            "keywords": [
-                "html",
-                "microformats",
-                "microformats 2",
-                "parser",
-                "semantic"
-            ],
-            "support": {
-                "issues": "https://github.com/microformats/php-mf2/issues",
-                "source": "https://github.com/microformats/php-mf2/tree/v0.5.0"
-            },
-            "time": "2022-02-10T01:05:27+00:00"
-        },
-        {
-            "name": "mikehaertl/php-shellcommand",
-            "version": "1.7.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mikehaertl/php-shellcommand.git",
-                "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/e79ea528be155ffdec6f3bf1a4a46307bb49e545",
-                "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">= 5.3.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": ">4.0 <=9.4"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "mikehaertl\\shellcommand\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Michael Härtl",
-                    "email": "haertl.mike@gmail.com"
-                }
-            ],
-            "description": "An object oriented interface to shell commands",
-            "keywords": [
-                "shell"
-            ],
-            "support": {
-                "issues": "https://github.com/mikehaertl/php-shellcommand/issues",
-                "source": "https://github.com/mikehaertl/php-shellcommand/tree/1.7.0"
-            },
-            "time": "2023-04-19T08:25:22+00:00"
-        },
-        {
-            "name": "mikehaertl/php-tmpfile",
-            "version": "1.3.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mikehaertl/php-tmpfile.git",
-                "reference": "a5392bed91f67e2849a7cb24075d346468e1b1a8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mikehaertl/php-tmpfile/zipball/a5392bed91f67e2849a7cb24075d346468e1b1a8",
-                "reference": "a5392bed91f67e2849a7cb24075d346468e1b1a8",
-                "shasum": ""
-            },
-            "require-dev": {
-                "php": ">=5.3.0",
-                "phpunit/phpunit": ">4.0 <=9.4"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "mikehaertl\\tmp\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Michael Härtl",
-                    "email": "haertl.mike@gmail.com"
-                }
-            ],
-            "description": "A convenience class for temporary files",
-            "keywords": [
-                "files"
-            ],
-            "support": {
-                "issues": "https://github.com/mikehaertl/php-tmpfile/issues",
-                "source": "https://github.com/mikehaertl/php-tmpfile/tree/1.3.0"
-            },
-            "time": "2024-10-14T16:12:48+00:00"
-        },
-        {
-            "name": "mikehaertl/phpwkhtmltopdf",
-            "version": "2.5.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mikehaertl/phpwkhtmltopdf.git",
-                "reference": "17ee71341591415d942774eda2c98d8ba7ea9e90"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mikehaertl/phpwkhtmltopdf/zipball/17ee71341591415d942774eda2c98d8ba7ea9e90",
-                "reference": "17ee71341591415d942774eda2c98d8ba7ea9e90",
-                "shasum": ""
-            },
-            "require": {
-                "mikehaertl/php-shellcommand": "^1.5.0",
-                "mikehaertl/php-tmpfile": "^1.2.1",
-                "php": ">=5.0.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": ">4.0 <9.4"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "mikehaertl\\wkhtmlto\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Michael Haertl",
-                    "email": "haertl.mike@gmail.com"
-                }
-            ],
-            "description": "A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interface",
-            "homepage": "http://mikehaertl.github.com/phpwkhtmltopdf/",
-            "keywords": [
-                "pdf",
-                "wkhtmltoimage",
-                "wkhtmltopdf"
-            ],
-            "support": {
-                "issues": "https://github.com/mikehaertl/phpwkhtmltopdf/issues",
-                "source": "https://github.com/mikehaertl/phpwkhtmltopdf/tree/2.5.0"
-            },
-            "time": "2021-03-01T19:41:06+00:00"
-        },
-        {
-            "name": "mkalkbrenner/php-htmldiff-advanced",
-            "version": "0.0.8",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mkalkbrenner/php-htmldiff.git",
-                "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9",
-                "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9",
-                "shasum": ""
-            },
-            "require": {
-                "caxy/php-htmldiff": ">=0.0.6",
-                "php": ">=5.5.0"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/HtmlDiffAdvancedInterface.php",
-                    "src/HtmlDiffAdvanced.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GNU General Public License V2"
-            ],
-            "description": "An add-on for the php-htmldiff library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
-            "homepage": "https://github.com/mkalkbrenner/php-htmldiff",
-            "keywords": [
-                "diff",
-                "html"
-            ],
-            "support": {
-                "issues": "https://github.com/mkalkbrenner/php-htmldiff/issues",
-                "source": "https://github.com/mkalkbrenner/php-htmldiff/tree/master"
-            },
-            "time": "2016-07-25T17:07:32+00:00"
-        },
-        {
-            "name": "mpdf/mpdf",
-            "version": "v8.2.5",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mpdf/mpdf.git",
-                "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f",
-                "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f",
-                "shasum": ""
-            },
-            "require": {
-                "ext-gd": "*",
-                "ext-mbstring": "*",
-                "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
-                "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
-                "myclabs/deep-copy": "^1.7",
-                "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
-                "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
-                "psr/http-message": "^1.0 || ^2.0",
-                "psr/log": "^1.0 || ^2.0 || ^3.0",
-                "setasign/fpdi": "^2.1"
-            },
-            "require-dev": {
-                "mockery/mockery": "^1.3.0",
-                "mpdf/qrcode": "^1.1.0",
-                "squizlabs/php_codesniffer": "^3.5.0",
-                "tracy/tracy": "~2.5",
-                "yoast/phpunit-polyfills": "^1.0"
-            },
-            "suggest": {
-                "ext-bcmath": "Needed for generation of some types of barcodes",
-                "ext-xml": "Needed mainly for SVG manipulation",
-                "ext-zlib": "Needed for compression of embedded resources, such as fonts"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/functions.php"
-                ],
-                "psr-4": {
-                    "Mpdf\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GPL-2.0-only"
-            ],
-            "authors": [
-                {
-                    "name": "Matěj Humpál",
-                    "role": "Developer, maintainer"
-                },
-                {
-                    "name": "Ian Back",
-                    "role": "Developer (retired)"
-                }
-            ],
-            "description": "PHP library generating PDF files from UTF-8 encoded HTML",
-            "homepage": "https://mpdf.github.io",
-            "keywords": [
-                "pdf",
-                "php",
-                "utf-8"
-            ],
-            "support": {
-                "docs": "https://mpdf.github.io",
-                "issues": "https://github.com/mpdf/mpdf/issues",
-                "source": "https://github.com/mpdf/mpdf"
-            },
-            "funding": [
-                {
-                    "url": "https://www.paypal.me/mpdf",
-                    "type": "custom"
-                }
-            ],
-            "time": "2024-11-18T15:30:42+00:00"
-        },
-        {
-            "name": "mpdf/psr-http-message-shim",
-            "version": "v2.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mpdf/psr-http-message-shim.git",
-                "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
-                "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
-                "shasum": ""
-            },
-            "require": {
-                "psr/http-message": "^2.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Mpdf\\PsrHttpMessageShim\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Mark Dorison",
-                    "email": "mark@chromatichq.com"
-                },
-                {
-                    "name": "Kristofer Widholm",
-                    "email": "kristofer@chromatichq.com"
-                },
-                {
-                    "name": "Nigel Cunningham",
-                    "email": "nigel.cunningham@technocrat.com.au"
-                }
-            ],
-            "description": "Shim to allow support of different psr/message versions.",
-            "support": {
-                "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
-                "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
-            },
-            "time": "2023-10-02T14:34:03+00:00"
-        },
-        {
-            "name": "mpdf/psr-log-aware-trait",
-            "version": "v3.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mpdf/psr-log-aware-trait.git",
-                "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
-                "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
-                "shasum": ""
-            },
-            "require": {
-                "psr/log": "^3.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Mpdf\\PsrLogAwareTrait\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Mark Dorison",
-                    "email": "mark@chromatichq.com"
-                },
-                {
-                    "name": "Kristofer Widholm",
-                    "email": "kristofer@chromatichq.com"
-                }
-            ],
-            "description": "Trait to allow support of different psr/log versions.",
-            "support": {
-                "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
-                "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
-            },
-            "time": "2023-05-03T06:19:36+00:00"
-        },
-        {
-            "name": "mtownsend/xml-to-array",
-            "version": "2.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mtownsend5512/xml-to-array.git",
-                "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mtownsend5512/xml-to-array/zipball/0734720a8462dba36d90fb8b2723bf46af0091f4",
-                "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4",
-                "shasum": ""
-            },
-            "require": {
-                "php": "~7.0|~8.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^6.4"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/helpers.php"
-                ],
-                "psr-4": {
-                    "Mtownsend\\XmlToArray\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Mark Townsend",
-                    "email": "mtownsend5512@gmail.com",
-                    "role": "Developer"
-                }
-            ],
-            "description": "Easily convert valid xml to a php array.",
-            "keywords": [
-                "array",
-                "convert",
-                "laravel",
-                "xml"
-            ],
-            "support": {
-                "issues": "https://github.com/mtownsend5512/xml-to-array/issues",
-                "source": "https://github.com/mtownsend5512/xml-to-array/tree/2.0.0"
-            },
-            "time": "2021-02-27T22:39:18+00:00"
-        },
-        {
-            "name": "mustangostang/spyc",
-            "version": "0.6.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mustangostang/spyc.git",
-                "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
-                "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.3.1"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "4.3.*@dev"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "0.5.x-dev"
-                }
-            },
-            "autoload": {
-                "files": [
-                    "Spyc.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "mustangostang",
-                    "email": "vlad.andersen@gmail.com"
-                }
-            ],
-            "description": "A simple YAML loader/dumper class for PHP",
-            "homepage": "https://github.com/mustangostang/spyc/",
-            "keywords": [
-                "spyc",
-                "yaml",
-                "yml"
-            ],
-            "support": {
-                "issues": "https://github.com/mustangostang/spyc/issues",
-                "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
-            },
-            "time": "2019-09-10T13:16:29+00:00"
-        },
-        {
-            "name": "myclabs/deep-copy",
-            "version": "1.13.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/myclabs/DeepCopy.git",
-                "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
-                "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.1 || ^8.0"
-            },
-            "conflict": {
-                "doctrine/collections": "<1.6.8",
-                "doctrine/common": "<2.13.3 || >=3 <3.2.2"
-            },
-            "require-dev": {
-                "doctrine/collections": "^1.6.8",
-                "doctrine/common": "^2.13.3 || ^3.2.2",
-                "phpspec/prophecy": "^1.10",
-                "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/DeepCopy/deep_copy.php"
-                ],
-                "psr-4": {
-                    "DeepCopy\\": "src/DeepCopy/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "description": "Create deep copies (clones) of your objects",
-            "keywords": [
-                "clone",
-                "copy",
-                "duplicate",
-                "object",
-                "object graph"
-            ],
-            "support": {
-                "issues": "https://github.com/myclabs/DeepCopy/issues",
-                "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
-            },
-            "funding": [
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-04-29T12:36:36+00:00"
+            "time": "2019-07-25T07:03:26+00:00"
         },
         {
             "name": "nikic/php-parser",
-            "version": "v5.4.0",
+            "version": "v4.2.3",
             "source": {
                 "type": "git",
                 "url": "https://github.com/nikic/PHP-Parser.git",
-                "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
+                "reference": "e612609022e935f3d0337c1295176505b41188c8"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
-                "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
+                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e612609022e935f3d0337c1295176505b41188c8",
+                "reference": "e612609022e935f3d0337c1295176505b41188c8",
                 "shasum": ""
             },
             "require": {
-                "ext-ctype": "*",
-                "ext-json": "*",
                 "ext-tokenizer": "*",
-                "php": ">=7.4"
+                "php": ">=7.0"
             },
             "require-dev": {
-                "ircmaxell/php-yacc": "^0.0.7",
-                "phpunit/phpunit": "^9.0"
+                "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
             },
             "bin": [
                 "bin/php-parse"
@@ -21271,7 +8753,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "5.0-dev"
+                    "dev-master": "4.2-dev"
                 }
             },
             "autoload": {
@@ -21293,379 +8775,24 @@
                 "parser",
                 "php"
             ],
-            "support": {
-                "issues": "https://github.com/nikic/PHP-Parser/issues",
-                "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
-            },
-            "time": "2024-12-30T11:07:19+00:00"
-        },
-        {
-            "name": "p3k/http",
-            "version": "0.1.13",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/p3k-http.git",
-                "reference": "ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a",
-                "reference": "ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a",
-                "shasum": ""
-            },
-            "require": {
-                "indieweb/link-rel-parser": "0.1.*",
-                "mf2/mf2": ">=0.3.2"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "p3k\\": "src/p3k"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "https://aaronparecki.com"
-                }
-            ],
-            "description": "A simple wrapper API around the PHP curl functions",
-            "homepage": "https://github.com/aaronpk/p3k-http",
-            "support": {
-                "issues": "https://github.com/aaronpk/p3k-http/issues",
-                "source": "https://github.com/aaronpk/p3k-http/tree/0.1.13"
-            },
-            "time": "2024-10-20T19:46:46+00:00"
-        },
-        {
-            "name": "p3k/micropub",
-            "version": "0.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/p3k-micropub.git",
-                "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/p3k-micropub/zipball/9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d",
-                "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.6.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^5"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-0": {
-                    "p3k": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "https://aaronparecki.com"
-                }
-            ],
-            "description": "Utilities to help handle Micropub requests when building servers and clients",
-            "keywords": [
-                "indieweb",
-                "micropub",
-                "p3k"
-            ],
-            "support": {
-                "issues": "https://github.com/aaronpk/p3k-micropub/issues",
-                "source": "https://github.com/aaronpk/p3k-micropub/tree/master"
-            },
-            "time": "2018-04-16T14:05:38+00:00"
-        },
-        {
-            "name": "p3k/picofeed",
-            "version": "v0.1.40",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/picofeed.git",
-                "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/picofeed/zipball/356fd66d48779193b10ac28532cb4a4e11bb801c",
-                "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c",
-                "shasum": ""
-            },
-            "require": {
-                "ext-dom": "*",
-                "ext-iconv": "*",
-                "ext-libxml": "*",
-                "ext-simplexml": "*",
-                "ext-xml": "*",
-                "laminas/laminas-xml": "^1.2",
-                "php": ">=5.3.0"
-            },
-            "replace": {
-                "miniflux/picofeed": "0.1.35"
-            },
-            "require-dev": {
-                "phpdocumentor/reflection-docblock": "2.0.4",
-                "phpunit/phpunit": "4.8.26",
-                "symfony/yaml": "2.8.7"
-            },
-            "suggest": {
-                "ext-curl": "PicoFeed will use cURL if present"
-            },
-            "bin": [
-                "picofeed"
-            ],
-            "type": "library",
-            "autoload": {
-                "psr-0": {
-                    "PicoFeed": "lib/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Frédéric Guillot"
-                }
-            ],
-            "description": "Modern library to handle RSS/Atom feeds",
-            "homepage": "https://github.com/aaronpk/picoFeed",
-            "support": {
-                "issues": "https://github.com/aaronpk/picofeed/issues",
-                "source": "https://github.com/aaronpk/picofeed/tree/v0.1.40"
-            },
-            "time": "2020-04-25T17:48:36+00:00"
-        },
-        {
-            "name": "p3k/timezone",
-            "version": "0.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/p3k-timezone.git",
-                "reference": "68d3490d896f98cf0727dc937f0bb6b045050c83"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/p3k-timezone/zipball/68d3490d896f98cf0727dc937f0bb6b045050c83",
-                "reference": "68d3490d896f98cf0727dc937f0bb6b045050c83",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.4.0"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/p3k/Timezone.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "https://aaronparecki.com"
-                }
-            ],
-            "description": "Find the timezone of a given location",
-            "homepage": "https://github.com/aaronpk/p3k-timezone",
-            "keywords": [
-                "date",
-                "p3k",
-                "timezone"
-            ],
-            "support": {
-                "issues": "https://github.com/aaronpk/p3k-timezone/issues",
-                "source": "https://github.com/aaronpk/p3k-timezone/tree/0.1.0"
-            },
-            "time": "2017-01-12T17:30:08+00:00"
-        },
-        {
-            "name": "p3k/utils",
-            "version": "1.2.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/p3k-utils.git",
-                "reference": "8436f02ec02d916177a23250ae32b34ae5316942"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/8436f02ec02d916177a23250ae32b34ae5316942",
-                "reference": "8436f02ec02d916177a23250ae32b34ae5316942",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=5.5"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^4.8.13",
-                "predis/predis": "1.1.*"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "src/global.php",
-                    "src/url.php",
-                    "src/utils.php",
-                    "src/date.php",
-                    "src/cache.php",
-                    "src/geo.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "https://aaronparecki.com"
-                }
-            ],
-            "description": "Some helpful functions used by https://p3k.io projects",
-            "homepage": "https://github.com/aaronpk/p3k-utils",
-            "support": {
-                "issues": "https://github.com/aaronpk/p3k-utils/issues",
-                "source": "https://github.com/aaronpk/p3k-utils/tree/1.2.1"
-            },
-            "time": "2021-11-16T21:44:23+00:00"
-        },
-        {
-            "name": "p3k/websub",
-            "version": "0.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/p3k-websub.git",
-                "reference": "3e37fbb3e8865f159b8adaaab9569e5984bc8890"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/p3k-websub/zipball/3e37fbb3e8865f159b8adaaab9569e5984bc8890",
-                "reference": "3e37fbb3e8865f159b8adaaab9569e5984bc8890",
-                "shasum": ""
-            },
-            "require": {
-                "indieweb/link-rel-parser": "0.1.*",
-                "p3k/http": "0.1.*",
-                "p3k/utils": "1.*"
-            },
-            "require-dev": {
-                "predis/predis": "1.*"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "p3k\\WebSub\\": "src/p3k/WebSub"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Aaron Parecki",
-                    "homepage": "https://aaronparecki.com"
-                }
-            ],
-            "description": "A library for subscribing to and publishing WebSub feeds",
-            "homepage": "https://github.com/aaronpk/p3k-websub",
-            "keywords": [
-                "feed",
-                "indieweb",
-                "p3k",
-                "pubsub",
-                "pubsubhubbub",
-                "websub"
-            ],
-            "support": {
-                "issues": "https://github.com/aaronpk/p3k-websub/issues",
-                "source": "https://github.com/aaronpk/p3k-websub/tree/0.0.1"
-            },
-            "time": "2017-05-08T15:26:11+00:00"
-        },
-        {
-            "name": "p3k/xray",
-            "version": "v1.15.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/aaronpk/XRay.git",
-                "reference": "a4cda273d34c56317197511d0f4799f5f00465e9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/aaronpk/XRay/zipball/a4cda273d34c56317197511d0f4799f5f00465e9",
-                "reference": "a4cda273d34c56317197511d0f4799f5f00465e9",
-                "shasum": ""
-            },
-            "require": {
-                "cebe/markdown": "^1.1.0",
-                "ezyang/htmlpurifier": "^4.10",
-                "indieweb/link-rel-parser": "^0.1.0",
-                "masterminds/html5": "^2.3",
-                "mf2/mf2": "^0.4||^0.5",
-                "p3k/http": "^0.1.0",
-                "p3k/picofeed": "^0.1.0",
-                "p3k/timezone": "^0.1.0"
-            },
-            "require-dev": {
-                "league/plates": "^3.0",
-                "league/route": "^1.0",
-                "phpunit/phpunit": "^8.0.0|^9.0.0"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "lib/helpers.php",
-                    "lib/XRay.php"
-                ],
-                "psr-4": {
-                    "p3k\\XRay\\": "lib/XRay"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "description": "X-Ray returns structured data from any URL",
-            "homepage": "https://github.com/aaronpk/XRay",
-            "support": {
-                "issues": "https://github.com/aaronpk/XRay/issues",
-                "source": "https://github.com/aaronpk/XRay/tree/v1.15.1"
-            },
-            "time": "2024-08-31T16:21:43+00:00"
+            "time": "2019-08-12T20:17:41+00:00"
         },
         {
             "name": "paragonie/random_compat",
-            "version": "v9.99.100",
+            "version": "v9.99.99",
             "source": {
                 "type": "git",
                 "url": "https://github.com/paragonie/random_compat.git",
-                "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
+                "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
-                "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
+                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
+                "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
                 "shasum": ""
             },
             "require": {
-                "php": ">= 7"
+                "php": "^7"
             },
             "require-dev": {
                 "phpunit/phpunit": "4.*|5.*",
@@ -21693,25 +8820,20 @@
                 "pseudorandom",
                 "random"
             ],
-            "support": {
-                "email": "info@paragonie.com",
-                "issues": "https://github.com/paragonie/random_compat/issues",
-                "source": "https://github.com/paragonie/random_compat"
-            },
-            "time": "2020-10-15T08:29:30+00:00"
+            "time": "2018-07-02T15:55:56+00:00"
         },
         {
             "name": "pear/archive_tar",
-            "version": "1.5.0",
+            "version": "1.4.7",
             "source": {
                 "type": "git",
                 "url": "https://github.com/pear/Archive_Tar.git",
-                "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
+                "reference": "7e48add6f8edc3027dd98ad15964b1a28fd0c845"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
-                "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
+                "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/7e48add6f8edc3027dd98ad15964b1a28fd0c845",
+                "reference": "7e48add6f8edc3027dd98ad15964b1a28fd0c845",
                 "shasum": ""
             },
             "require": {
@@ -21742,7 +8864,7 @@
                 "./"
             ],
             "license": [
-                "BSD-2-Clause"
+                "BSD-3-Clause"
             ],
             "authors": [
                 {
@@ -21764,24 +8886,20 @@
                 "archive",
                 "tar"
             ],
-            "support": {
-                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
-                "source": "https://github.com/pear/Archive_Tar"
-            },
-            "time": "2024-03-16T16:21:40+00:00"
+            "time": "2019-04-08T13:15:55+00:00"
         },
         {
             "name": "pear/console_getopt",
-            "version": "v1.4.3",
+            "version": "v1.4.2",
             "source": {
                 "type": "git",
                 "url": "https://github.com/pear/Console_Getopt.git",
-                "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
+                "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
-                "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
+                "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
+                "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
                 "shasum": ""
             },
             "type": "library",
@@ -21798,6 +8916,11 @@
                 "BSD-2-Clause"
             ],
             "authors": [
+                {
+                    "name": "Greg Beaver",
+                    "email": "cellog@php.net",
+                    "role": "Helper"
+                },
                 {
                     "name": "Andrei Zmievski",
                     "email": "andrei@php.net",
@@ -21807,47 +8930,37 @@
                     "name": "Stig Bakken",
                     "email": "stig@php.net",
                     "role": "Developer"
-                },
-                {
-                    "name": "Greg Beaver",
-                    "email": "cellog@php.net",
-                    "role": "Helper"
                 }
             ],
             "description": "More info available on: http://pear.php.net/package/Console_Getopt",
-            "support": {
-                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
-                "source": "https://github.com/pear/Console_Getopt"
-            },
-            "time": "2019-11-20T18:27:48+00:00"
+            "time": "2019-02-06T16:52:33+00:00"
         },
         {
             "name": "pear/pear-core-minimal",
-            "version": "v1.10.16",
+            "version": "v1.10.9",
             "source": {
                 "type": "git",
                 "url": "https://github.com/pear/pear-core-minimal.git",
-                "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
+                "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
-                "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
+                "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f",
+                "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f",
                 "shasum": ""
             },
             "require": {
                 "pear/console_getopt": "~1.4",
-                "pear/pear_exception": "~1.0",
-                "php": ">=5.4"
+                "pear/pear_exception": "~1.0"
             },
             "replace": {
                 "rsky/pear-core-min": "self.version"
             },
             "type": "library",
             "autoload": {
-                "classmap": [
-                    "src/"
-                ]
+                "psr-0": {
+                    "": "src/"
+                }
             },
             "notification-url": "https://packagist.org/downloads/",
             "include-path": [
@@ -21864,31 +8977,27 @@
                 }
             ],
             "description": "Minimal set of PEAR core files to be used as composer dependency",
-            "support": {
-                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
-                "source": "https://github.com/pear/pear-core-minimal"
-            },
-            "time": "2024-11-24T22:27:58+00:00"
+            "time": "2019-03-13T18:15:44+00:00"
         },
         {
             "name": "pear/pear_exception",
-            "version": "v1.0.2",
+            "version": "v1.0.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/pear/PEAR_Exception.git",
-                "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
+                "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
-                "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
+                "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
+                "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.2.0"
+                "php": ">=4.4.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "<9"
+                "phpunit/phpunit": "*"
             },
             "type": "class",
             "extra": {
@@ -21897,9 +9006,9 @@
                 }
             },
             "autoload": {
-                "classmap": [
-                    "PEAR/"
-                ]
+                "psr-0": {
+                    "PEAR": ""
+                }
             },
             "notification-url": "https://packagist.org/downloads/",
             "include-path": [
@@ -21923,297 +9032,24 @@
             "keywords": [
                 "exception"
             ],
-            "support": {
-                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
-                "source": "https://github.com/pear/PEAR_Exception"
-            },
-            "time": "2021-03-21T15:43:46+00:00"
+            "time": "2015-02-10T20:07:52+00:00"
         },
         {
-            "name": "phootwork/collection",
-            "version": "v3.2.3",
+            "name": "psr/container",
+            "version": "1.0.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/phootwork/collection.git",
-                "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
+                "url": "https://github.com/php-fig/container.git",
+                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
-                "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
+                "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
                 "shasum": ""
             },
             "require": {
-                "phootwork/lang": "^3.0",
-                "php": ">=8.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "phootwork\\collection\\": ""
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Thomas Gossmann",
-                    "homepage": "http://gos.si"
-                }
-            ],
-            "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
-            "homepage": "https://phootwork.github.io/collection/",
-            "keywords": [
-                "Array object",
-                "Text object",
-                "collection",
-                "collections",
-                "json",
-                "list",
-                "map",
-                "queue",
-                "set",
-                "stack",
-                "xml"
-            ],
-            "support": {
-                "issues": "https://github.com/phootwork/phootwork/issues",
-                "source": "https://github.com/phootwork/collection/tree/v3.2.3"
-            },
-            "time": "2022-08-27T12:51:24+00:00"
-        },
-        {
-            "name": "phootwork/lang",
-            "version": "v3.2.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/phootwork/lang.git",
-                "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
-                "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.0",
-                "symfony/polyfill-mbstring": "^1.12",
-                "symfony/polyfill-php81": "^1.22"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "phootwork\\lang\\": ""
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Thomas Gossmann",
-                    "homepage": "http://gos.si"
-                }
-            ],
-            "description": "Missing PHP language constructs",
-            "homepage": "https://phootwork.github.io/lang/",
-            "keywords": [
-                "array",
-                "comparator",
-                "comparison",
-                "string"
-            ],
-            "support": {
-                "issues": "https://github.com/phootwork/phootwork/issues",
-                "source": "https://github.com/phootwork/lang/tree/v3.2.3"
-            },
-            "time": "2024-10-03T13:43:19+00:00"
-        },
-        {
-            "name": "phpoption/phpoption",
-            "version": "1.9.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/schmittjoh/php-option.git",
-                "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
-                "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.2.5 || ^8.0"
-            },
-            "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.8.2",
-                "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
-            },
-            "type": "library",
-            "extra": {
-                "bamarni-bin": {
-                    "bin-links": true,
-                    "forward-command": false
-                },
-                "branch-alias": {
-                    "dev-master": "1.9-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "PhpOption\\": "src/PhpOption/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "Apache-2.0"
-            ],
-            "authors": [
-                {
-                    "name": "Johannes M. Schmitt",
-                    "email": "schmittjoh@gmail.com",
-                    "homepage": "https://github.com/schmittjoh"
-                },
-                {
-                    "name": "Graham Campbell",
-                    "email": "hello@gjcampbell.co.uk",
-                    "homepage": "https://github.com/GrahamCampbell"
-                }
-            ],
-            "description": "Option Type for PHP",
-            "keywords": [
-                "language",
-                "option",
-                "php",
-                "type"
-            ],
-            "support": {
-                "issues": "https://github.com/schmittjoh/php-option/issues",
-                "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/GrahamCampbell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2024-07-20T21:41:07+00:00"
-        },
-        {
-            "name": "phpowermove/docblock",
-            "version": "v4.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/phpowermove/docblock.git",
-                "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
-                "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
-                "shasum": ""
-            },
-            "require": {
-                "phootwork/collection": "^3.0",
-                "phootwork/lang": "^3.0",
-                "php": ">=8.0"
-            },
-            "require-dev": {
-                "phootwork/php-cs-fixer-config": "^0.4",
-                "phpunit/phpunit": "^9.0",
-                "psalm/phar": "^4.3"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "phpowermove\\docblock\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Thomas Gossmann",
-                    "homepage": "http://gos.si"
-                }
-            ],
-            "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
-            "keywords": [
-                "docblock",
-                "generator",
-                "parser"
-            ],
-            "support": {
-                "issues": "https://github.com/phpowermove/docblock/issues",
-                "source": "https://github.com/phpowermove/docblock/tree/v4.0"
-            },
-            "time": "2021-09-22T16:57:06+00:00"
-        },
-        {
-            "name": "politsin/jquery-ui-touch-punch",
-            "version": "1.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
-                "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
-                "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
-                "shasum": ""
-            },
-            "type": "drupal-library",
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Dave Furfero",
-                    "email": "furf@furf.com"
-                }
-            ],
-            "description": "Extension to jQuery UI for mobile touch event support.",
-            "homepage": "http://touchpunch.furf.com/",
-            "keywords": [
-                "gestures",
-                "mobile",
-                "touch"
-            ],
-            "support": {
-                "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
-                "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
-            },
-            "time": "2020-12-15T10:26:18+00:00"
-        },
-        {
-            "name": "psr/cache",
-            "version": "3.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/cache.git",
-                "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
-                "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.0.0"
+                "php": ">=5.3.0"
             },
             "type": "library",
             "extra": {
@@ -22221,103 +9057,6 @@
                     "dev-master": "1.0.x-dev"
                 }
             },
-            "autoload": {
-                "psr-4": {
-                    "Psr\\Cache\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
-                }
-            ],
-            "description": "Common interface for caching libraries",
-            "keywords": [
-                "cache",
-                "psr",
-                "psr-6"
-            ],
-            "support": {
-                "source": "https://github.com/php-fig/cache/tree/3.0.0"
-            },
-            "time": "2021-02-03T23:26:27+00:00"
-        },
-        {
-            "name": "psr/clock",
-            "version": "1.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/clock.git",
-                "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
-                "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.0 || ^8.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Psr\\Clock\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
-                }
-            ],
-            "description": "Common interface for reading the clock.",
-            "homepage": "https://github.com/php-fig/clock",
-            "keywords": [
-                "clock",
-                "now",
-                "psr",
-                "psr-20",
-                "time"
-            ],
-            "support": {
-                "issues": "https://github.com/php-fig/clock/issues",
-                "source": "https://github.com/php-fig/clock/tree/1.0.0"
-            },
-            "time": "2022-11-25T14:36:26+00:00"
-        },
-        {
-            "name": "psr/container",
-            "version": "2.0.2",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/container.git",
-                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
-                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=7.4.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "2.0.x-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Psr\\Container\\": "src/"
@@ -22330,7 +9069,7 @@
             "authors": [
                 {
                     "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
+                    "homepage": "http://www.php-fig.org/"
                 }
             ],
             "description": "Common Container Interface (PHP FIG PSR-11)",
@@ -22342,28 +9081,24 @@
                 "container-interop",
                 "psr"
             ],
-            "support": {
-                "issues": "https://github.com/php-fig/container/issues",
-                "source": "https://github.com/php-fig/container/tree/2.0.2"
-            },
-            "time": "2021-11-05T16:47:00+00:00"
+            "time": "2017-02-14T16:28:37+00:00"
         },
         {
-            "name": "psr/event-dispatcher",
-            "version": "1.0.0",
+            "name": "psr/http-message",
+            "version": "1.0.1",
             "source": {
                 "type": "git",
-                "url": "https://github.com/php-fig/event-dispatcher.git",
-                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
+                "url": "https://github.com/php-fig/http-message.git",
+                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
-                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
+                "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
+                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2.0"
+                "php": ">=5.3.0"
             },
             "type": "library",
             "extra": {
@@ -22373,7 +9108,7 @@
             },
             "autoload": {
                 "psr-4": {
-                    "Psr\\EventDispatcher\\": "src/"
+                    "Psr\\Http\\Message\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -22386,163 +9121,6 @@
                     "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/http-client",
-            "version": "1.0.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/http-client.git",
-                "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
-                "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.0 || ^8.0",
-                "psr/http-message": "^1.0 || ^2.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.0.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Psr\\Http\\Client\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
-                }
-            ],
-            "description": "Common interface for HTTP clients",
-            "homepage": "https://github.com/php-fig/http-client",
-            "keywords": [
-                "http",
-                "http-client",
-                "psr",
-                "psr-18"
-            ],
-            "support": {
-                "source": "https://github.com/php-fig/http-client"
-            },
-            "time": "2023-09-23T14:17:50+00:00"
-        },
-        {
-            "name": "psr/http-factory",
-            "version": "1.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/http-factory.git",
-                "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
-                "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=7.1",
-                "psr/http-message": "^1.0 || ^2.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.0.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Psr\\Http\\Message\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
-                }
-            ],
-            "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
-            "keywords": [
-                "factory",
-                "http",
-                "message",
-                "psr",
-                "psr-17",
-                "psr-7",
-                "request",
-                "response"
-            ],
-            "support": {
-                "source": "https://github.com/php-fig/http-factory"
-            },
-            "time": "2024-04-15T12:06:14+00:00"
-        },
-        {
-            "name": "psr/http-message",
-            "version": "2.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/http-message.git",
-                "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
-                "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.2 || ^8.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "2.0.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Psr\\Http\\Message\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
-                }
-            ],
             "description": "Common interface for HTTP messages",
             "homepage": "https://github.com/php-fig/http-message",
             "keywords": [
@@ -22553,37 +9131,34 @@
                 "request",
                 "response"
             ],
-            "support": {
-                "source": "https://github.com/php-fig/http-message/tree/2.0"
-            },
-            "time": "2023-04-04T09:54:51+00:00"
+            "time": "2016-08-06T14:39:51+00:00"
         },
         {
             "name": "psr/log",
-            "version": "3.0.2",
+            "version": "1.1.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/php-fig/log.git",
-                "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
+                "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
-                "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
+                "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
+                "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.0.0"
+                "php": ">=5.3.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "3.x-dev"
+                    "dev-master": "1.0.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Psr\\Log\\": "src"
+                    "Psr\\Log\\": "Psr/Log/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -22593,7 +9168,7 @@
             "authors": [
                 {
                     "name": "PHP-FIG",
-                    "homepage": "https://www.php-fig.org/"
+                    "homepage": "http://www.php-fig.org/"
                 }
             ],
             "description": "Common interface for logging libraries",
@@ -22603,55 +9178,51 @@
                 "psr",
                 "psr-3"
             ],
-            "support": {
-                "source": "https://github.com/php-fig/log/tree/3.0.2"
-            },
-            "time": "2024-09-11T13:17:53+00:00"
+            "time": "2018-11-20T15:27:04+00:00"
         },
         {
             "name": "psy/psysh",
-            "version": "v0.12.8",
+            "version": "v0.9.9",
             "source": {
                 "type": "git",
                 "url": "https://github.com/bobthecow/psysh.git",
-                "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
+                "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
-                "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
+                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
+                "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
                 "shasum": ""
             },
             "require": {
+                "dnoegel/php-xdg-base-dir": "0.1",
                 "ext-json": "*",
                 "ext-tokenizer": "*",
-                "nikic/php-parser": "^5.0 || ^4.0",
-                "php": "^8.0 || ^7.4",
-                "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
-                "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
-            },
-            "conflict": {
-                "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
+                "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
+                "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
+                "php": ">=5.4.0",
+                "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
+                "symfony/var-dumper": "~2.7|~3.0|~4.0"
             },
             "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.2"
+                "bamarni/composer-bin-plugin": "^1.2",
+                "hoa/console": "~2.15|~3.16",
+                "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
             },
             "suggest": {
                 "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
                 "ext-pdo-sqlite": "The doc command requires SQLite to work.",
-                "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
+                "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+                "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
+                "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
             },
             "bin": [
                 "bin/psysh"
             ],
             "type": "library",
             "extra": {
-                "bamarni-bin": {
-                    "bin-links": false,
-                    "forward-command": false
-                },
                 "branch-alias": {
-                    "dev-main": "0.12.x-dev"
+                    "dev-develop": "0.9.x-dev"
                 }
             },
             "autoload": {
@@ -22681,11 +9252,7 @@
                 "interactive",
                 "shell"
             ],
-            "support": {
-                "issues": "https://github.com/bobthecow/psysh/issues",
-                "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
-            },
-            "time": "2025-03-16T03:05:19+00:00"
+            "time": "2018-10-13T15:16:03+00:00"
         },
         {
             "name": "ralouphie/getallheaders",
@@ -22725,45 +9292,39 @@
                 }
             ],
             "description": "A polyfill for getallheaders.",
-            "support": {
-                "issues": "https://github.com/ralouphie/getallheaders/issues",
-                "source": "https://github.com/ralouphie/getallheaders/tree/develop"
-            },
             "time": "2019-03-08T08:55:37+00:00"
         },
         {
-            "name": "sabberworm/php-css-parser",
-            "version": "v8.8.0",
+            "name": "stack/builder",
+            "version": "v1.0.5",
             "source": {
                 "type": "git",
-                "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
-                "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740"
+                "url": "https://github.com/stackphp/builder.git",
+                "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/3de493bdddfd1f051249af725c7e0d2c38fed740",
-                "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740",
+                "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
+                "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
                 "shasum": ""
             },
             "require": {
-                "ext-iconv": "*",
-                "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
+                "php": ">=5.3.0",
+                "symfony/http-foundation": "~2.1|~3.0|~4.0",
+                "symfony/http-kernel": "~2.1|~3.0|~4.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41"
-            },
-            "suggest": {
-                "ext-mbstring": "for parsing UTF-8 CSS"
+                "silex/silex": "~1.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "9.0.x-dev"
+                    "dev-master": "1.0-dev"
                 }
             },
             "autoload": {
-                "psr-4": {
-                    "Sabberworm\\CSS\\": "src/"
+                "psr-0": {
+                    "Stack": "src"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -22772,272 +9333,177 @@
             ],
             "authors": [
                 {
-                    "name": "Raphael Schweikert"
-                },
-                {
-                    "name": "Oliver Klee",
-                    "email": "github@oliverklee.de"
-                },
-                {
-                    "name": "Jake Hotson",
-                    "email": "jake.github@qzdesign.co.uk"
+                    "name": "Igor Wiedler",
+                    "email": "igor@wiedler.ch"
                 }
             ],
-            "description": "Parser for CSS Files written in PHP",
-            "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
+            "description": "Builder for stack middlewares based on HttpKernelInterface.",
             "keywords": [
-                "css",
-                "parser",
-                "stylesheet"
+                "stack"
             ],
-            "support": {
-                "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
-                "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.8.0"
-            },
-            "time": "2025-03-23T17:59:05+00:00"
+            "time": "2017-11-18T14:57:29+00:00"
         },
         {
-            "name": "sebastian/diff",
-            "version": "4.0.6",
+            "name": "symfony-cmf/routing",
+            "version": "1.4.1",
             "source": {
                 "type": "git",
-                "url": "https://github.com/sebastianbergmann/diff.git",
-                "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
+                "url": "https://github.com/symfony-cmf/routing.git",
+                "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
-                "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
+                "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
+                "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.3"
+                "php": "^5.3.9|^7.0",
+                "psr/log": "1.*",
+                "symfony/http-kernel": "^2.2|3.*",
+                "symfony/routing": "^2.2|3.*"
             },
             "require-dev": {
-                "phpunit/phpunit": "^9.3",
-                "symfony/process": "^4.2 || ^5"
+                "friendsofsymfony/jsrouting-bundle": "^1.1",
+                "symfony-cmf/testing": "^1.3",
+                "symfony/config": "^2.2|3.*",
+                "symfony/dependency-injection": "^2.0.5|3.*",
+                "symfony/event-dispatcher": "^2.1|3.*"
+            },
+            "suggest": {
+                "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "4.0-dev"
+                    "dev-master": "1.4-dev"
                 }
             },
             "autoload": {
-                "classmap": [
-                    "src/"
+                "psr-4": {
+                    "Symfony\\Cmf\\Component\\Routing\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Symfony CMF Community",
+                    "homepage": "https://github.com/symfony-cmf/Routing/contributors"
+                }
+            ],
+            "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
+            "homepage": "http://cmf.symfony.com",
+            "keywords": [
+                "database",
+                "routing"
+            ],
+            "time": "2017-05-09T08:10:41+00:00"
+        },
+        {
+            "name": "symfony/class-loader",
+            "version": "v3.4.31",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/class-loader.git",
+                "reference": "e212b06996819a2bce026a63da03b7182d05a690"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
+                "reference": "e212b06996819a2bce026a63da03b7182d05a690",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8"
+            },
+            "require-dev": {
+                "symfony/finder": "~2.8|~3.0|~4.0",
+                "symfony/polyfill-apcu": "~1.1"
+            },
+            "suggest": {
+                "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\ClassLoader\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
                 ]
             },
             "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",
-                "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/sebastianbergmann",
-                    "type": "github"
-                }
-            ],
-            "time": "2024-03-02T06:30:58+00:00"
-        },
-        {
-            "name": "setasign/fpdi",
-            "version": "v2.6.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/Setasign/FPDI.git",
-                "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/Setasign/FPDI/zipball/67c31f5e50c93c20579ca9e23035d8c540b51941",
-                "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941",
-                "shasum": ""
-            },
-            "require": {
-                "ext-zlib": "*",
-                "php": "^7.1 || ^8.0"
-            },
-            "conflict": {
-                "setasign/tfpdf": "<1.31"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^7",
-                "setasign/fpdf": "~1.8.6",
-                "setasign/tfpdf": "~1.33",
-                "squizlabs/php_codesniffer": "^3.5",
-                "tecnickcom/tcpdf": "^6.2"
-            },
-            "suggest": {
-                "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "setasign\\Fpdi\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
             "authors": [
                 {
-                    "name": "Jan Slabon",
-                    "email": "jan.slabon@setasign.com",
-                    "homepage": "https://www.setasign.com"
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
                 },
                 {
-                    "name": "Maximilian Kresse",
-                    "email": "maximilian.kresse@setasign.com",
-                    "homepage": "https://www.setasign.com"
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
-            "homepage": "https://www.setasign.com/fpdi",
-            "keywords": [
-                "fpdf",
-                "fpdi",
-                "pdf"
-            ],
-            "support": {
-                "issues": "https://github.com/Setasign/FPDI/issues",
-                "source": "https://github.com/Setasign/FPDI/tree/v2.6.3"
-            },
-            "funding": [
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-02-05T13:22:35+00:00"
+            "description": "Symfony ClassLoader Component",
+            "homepage": "https://symfony.com",
+            "time": "2019-08-20T13:31:17+00:00"
         },
         {
-            "name": "simshaun/recurr",
-            "version": "v5.0.3",
+            "name": "symfony/console",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
-                "url": "https://github.com/simshaun/recurr.git",
-                "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1"
+                "url": "https://github.com/symfony/console.git",
+                "reference": "4510f04e70344d70952566e4262a0b11df39cb10"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/simshaun/recurr/zipball/7b136768d64f257065e38a804ee6d2f9af6ba6d1",
-                "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1",
+                "url": "https://api.github.com/repos/symfony/console/zipball/4510f04e70344d70952566e4262a0b11df39cb10",
+                "reference": "4510f04e70344d70952566e4262a0b11df39cb10",
                 "shasum": ""
             },
             "require": {
-                "doctrine/collections": "~1.6||^2.0",
-                "php": "^7.2||^8.0"
+                "php": "^5.5.9|>=7.0.8",
+                "symfony/debug": "~2.8|~3.0|~4.0",
+                "symfony/polyfill-mbstring": "~1.0"
+            },
+            "conflict": {
+                "symfony/dependency-injection": "<3.4",
+                "symfony/process": "<3.3"
+            },
+            "provide": {
+                "psr/log-implementation": "1.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^8.5.16",
-                "symfony/yaml": "^5.3"
+                "psr/log": "~1.0",
+                "symfony/config": "~3.3|~4.0",
+                "symfony/dependency-injection": "~3.4|~4.0",
+                "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+                "symfony/lock": "~3.4|~4.0",
+                "symfony/process": "~3.3|~4.0"
+            },
+            "suggest": {
+                "psr/log": "For using the console logger",
+                "symfony/event-dispatcher": "",
+                "symfony/lock": "",
+                "symfony/process": ""
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "0.x-dev"
+                    "dev-master": "3.4-dev"
                 }
             },
-            "autoload": {
-                "psr-4": {
-                    "Recurr\\": "src/Recurr/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Shaun Simmons",
-                    "email": "shaun@shaun.pub",
-                    "homepage": "https://shaun.pub"
-                }
-            ],
-            "description": "PHP library for working with recurrence rules",
-            "homepage": "https://github.com/simshaun/recurr",
-            "keywords": [
-                "dates",
-                "events",
-                "recurrence",
-                "recurring",
-                "rrule"
-            ],
-            "support": {
-                "issues": "https://github.com/simshaun/recurr/issues",
-                "source": "https://github.com/simshaun/recurr/tree/v5.0.3"
-            },
-            "time": "2024-12-12T15:39:24+00:00"
-        },
-        {
-            "name": "symfony/console",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/console.git",
-                "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
-                "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-mbstring": "~1.0",
-                "symfony/service-contracts": "^2.5|^3",
-                "symfony/string": "^5.4|^6.0|^7.0"
-            },
-            "conflict": {
-                "symfony/dependency-injection": "<5.4",
-                "symfony/dotenv": "<5.4",
-                "symfony/event-dispatcher": "<5.4",
-                "symfony/lock": "<5.4",
-                "symfony/process": "<5.4"
-            },
-            "provide": {
-                "psr/log-implementation": "1.0|2.0|3.0"
-            },
-            "require-dev": {
-                "psr/log": "^1|^2|^3",
-                "symfony/config": "^5.4|^6.0|^7.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
-                "symfony/http-foundation": "^6.4|^7.0",
-                "symfony/http-kernel": "^6.4|^7.0",
-                "symfony/lock": "^5.4|^6.0|^7.0",
-                "symfony/messenger": "^5.4|^6.0|^7.0",
-                "symfony/process": "^5.4|^6.0|^7.0",
-                "symfony/stopwatch": "^5.4|^6.0|^7.0",
-                "symfony/var-dumper": "^5.4|^6.0|^7.0"
-            },
-            "type": "library",
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Console\\": ""
@@ -23060,54 +9526,43 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Eases the creation of beautiful and testable command line interfaces",
+            "description": "Symfony Console Component",
             "homepage": "https://symfony.com",
-            "keywords": [
-                "cli",
-                "command-line",
-                "console",
-                "terminal"
-            ],
-            "support": {
-                "source": "https://github.com/symfony/console/tree/v6.4.21"
-            },
-            "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": "2025-04-07T15:42:41+00:00"
+            "time": "2019-08-26T07:52:58+00:00"
         },
         {
-            "name": "symfony/css-selector",
-            "version": "v6.4.13",
+            "name": "symfony/debug",
+            "version": "v4.3.4",
             "source": {
                 "type": "git",
-                "url": "https://github.com/symfony/css-selector.git",
-                "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e"
+                "url": "https://github.com/symfony/debug.git",
+                "reference": "afcdea44a2e399c1e4b52246ec8d54c715393ced"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e",
-                "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e",
+                "url": "https://api.github.com/repos/symfony/debug/zipball/afcdea44a2e399c1e4b52246ec8d54c715393ced",
+                "reference": "afcdea44a2e399c1e4b52246ec8d54c715393ced",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1"
+                "php": "^7.1.3",
+                "psr/log": "~1.0"
+            },
+            "conflict": {
+                "symfony/http-kernel": "<3.4"
+            },
+            "require-dev": {
+                "symfony/http-kernel": "~3.4|~4.0"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.3-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
-                    "Symfony\\Component\\CssSelector\\": ""
+                    "Symfony\\Component\\Debug\\": ""
                 },
                 "exclude-from-classmap": [
                     "/Tests/"
@@ -23122,74 +9577,60 @@
                     "name": "Fabien Potencier",
                     "email": "fabien@symfony.com"
                 },
-                {
-                    "name": "Jean-François Simon",
-                    "email": "jeanfrancois.simon@sensiolabs.com"
-                },
                 {
                     "name": "Symfony Community",
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Converts CSS selectors to XPath expressions",
+            "description": "Symfony Debug Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/css-selector/tree/v6.4.13"
-            },
-            "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:18:03+00:00"
+            "time": "2019-08-20T14:27:59+00:00"
         },
         {
             "name": "symfony/dependency-injection",
-            "version": "v6.4.20",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/dependency-injection.git",
-                "reference": "c49796a9184a532843e78e50df9e55708b92543a"
+                "reference": "2709bc2978ceb90f5180181f777f8a09125f2d89"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c49796a9184a532843e78e50df9e55708b92543a",
-                "reference": "c49796a9184a532843e78e50df9e55708b92543a",
+                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2709bc2978ceb90f5180181f777f8a09125f2d89",
+                "reference": "2709bc2978ceb90f5180181f777f8a09125f2d89",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "psr/container": "^1.1|^2.0",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/service-contracts": "^2.5|^3.0",
-                "symfony/var-exporter": "^6.4.20|^7.2.5"
+                "php": "^5.5.9|>=7.0.8",
+                "psr/container": "^1.0"
             },
             "conflict": {
-                "ext-psr": "<1.1|>=2",
-                "symfony/config": "<6.1",
-                "symfony/finder": "<5.4",
-                "symfony/proxy-manager-bridge": "<6.3",
-                "symfony/yaml": "<5.4"
+                "symfony/config": "<3.3.7",
+                "symfony/finder": "<3.3",
+                "symfony/proxy-manager-bridge": "<3.4",
+                "symfony/yaml": "<3.4"
             },
             "provide": {
-                "psr/container-implementation": "1.1|2.0",
-                "symfony/service-implementation": "1.1|2.0|3.0"
+                "psr/container-implementation": "1.0"
             },
             "require-dev": {
-                "symfony/config": "^6.1|^7.0",
-                "symfony/expression-language": "^5.4|^6.0|^7.0",
-                "symfony/yaml": "^5.4|^6.0|^7.0"
+                "symfony/config": "~3.3|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/yaml": "~3.4|~4.0"
+            },
+            "suggest": {
+                "symfony/config": "",
+                "symfony/expression-language": "For using expressions in service container configuration",
+                "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
+                "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
+                "symfony/yaml": ""
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\DependencyInjection\\": ""
@@ -23212,273 +9653,47 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Allows you to standardize and centralize the way objects are constructed in your application",
+            "description": "Symfony DependencyInjection Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/dependency-injection/tree/v6.4.20"
-            },
-            "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": "2025-03-13T09:55:08+00:00"
-        },
-        {
-            "name": "symfony/deprecation-contracts",
-            "version": "v3.5.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/deprecation-contracts.git",
-                "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
-                "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1"
-            },
-            "type": "library",
-            "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/contracts",
-                    "name": "symfony/contracts"
-                },
-                "branch-alias": {
-                    "dev-main": "3.5-dev"
-                }
-            },
-            "autoload": {
-                "files": [
-                    "function.php"
-                ]
-            },
-            "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": "A generic function and convention to trigger deprecation notices",
-            "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
-            },
-            "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:20:29+00:00"
-        },
-        {
-            "name": "symfony/dom-crawler",
-            "version": "v6.4.19",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/dom-crawler.git",
-                "reference": "19073e3e0bb50cbc1cb286077069b3107085206f"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19073e3e0bb50cbc1cb286077069b3107085206f",
-                "reference": "19073e3e0bb50cbc1cb286077069b3107085206f",
-                "shasum": ""
-            },
-            "require": {
-                "masterminds/html5": "^2.6",
-                "php": ">=8.1",
-                "symfony/polyfill-ctype": "~1.8",
-                "symfony/polyfill-mbstring": "~1.0"
-            },
-            "require-dev": {
-                "symfony/css-selector": "^5.4|^6.0|^7.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\DomCrawler\\": ""
-                },
-                "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 DOM navigation for HTML and XML documents",
-            "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/dom-crawler/tree/v6.4.19"
-            },
-            "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": "2025-02-14T17:58:34+00:00"
-        },
-        {
-            "name": "symfony/error-handler",
-            "version": "v6.4.20",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/error-handler.git",
-                "reference": "aa3bcf4f7674719df078e61cc8062e5b7f752031"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/error-handler/zipball/aa3bcf4f7674719df078e61cc8062e5b7f752031",
-                "reference": "aa3bcf4f7674719df078e61cc8062e5b7f752031",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "psr/log": "^1|^2|^3",
-                "symfony/var-dumper": "^5.4|^6.0|^7.0"
-            },
-            "conflict": {
-                "symfony/deprecation-contracts": "<2.5",
-                "symfony/http-kernel": "<6.4"
-            },
-            "require-dev": {
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/http-kernel": "^6.4|^7.0",
-                "symfony/serializer": "^5.4|^6.0|^7.0"
-            },
-            "bin": [
-                "Resources/bin/patch-type-declarations"
-            ],
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\ErrorHandler\\": ""
-                },
-                "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 to manage errors and ease debugging PHP code",
-            "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/error-handler/tree/v6.4.20"
-            },
-            "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": "2025-03-01T13:00:38+00:00"
+            "time": "2019-08-26T16:07:57+00:00"
         },
         {
             "name": "symfony/event-dispatcher",
-            "version": "v6.4.13",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/event-dispatcher.git",
-                "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
+                "reference": "3e922c4c3430b9de624e8a285dada5e61e230959"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
-                "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3e922c4c3430b9de624e8a285dada5e61e230959",
+                "reference": "3e922c4c3430b9de624e8a285dada5e61e230959",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/event-dispatcher-contracts": "^2.5|^3"
+                "php": "^5.5.9|>=7.0.8"
             },
             "conflict": {
-                "symfony/dependency-injection": "<5.4",
-                "symfony/service-contracts": "<2.5"
-            },
-            "provide": {
-                "psr/event-dispatcher-implementation": "1.0",
-                "symfony/event-dispatcher-implementation": "2.0|3.0"
+                "symfony/dependency-injection": "<3.3"
             },
             "require-dev": {
-                "psr/log": "^1|^2|^3",
-                "symfony/config": "^5.4|^6.0|^7.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/error-handler": "^5.4|^6.0|^7.0",
-                "symfony/expression-language": "^5.4|^6.0|^7.0",
-                "symfony/http-foundation": "^5.4|^6.0|^7.0",
-                "symfony/service-contracts": "^2.5|^3",
-                "symfony/stopwatch": "^5.4|^6.0|^7.0"
+                "psr/log": "~1.0",
+                "symfony/config": "~2.8|~3.0|~4.0",
+                "symfony/dependency-injection": "~3.3|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/stopwatch": "~2.8|~3.0|~4.0"
+            },
+            "suggest": {
+                "symfony/dependency-injection": "",
+                "symfony/http-kernel": ""
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\EventDispatcher\\": ""
@@ -23501,126 +9716,34 @@
                     "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",
+            "description": "Symfony EventDispatcher Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
-            },
-            "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:18:03+00:00"
-        },
-        {
-            "name": "symfony/event-dispatcher-contracts",
-            "version": "v3.5.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
-                "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
-                "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
-                "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.5-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.5.1"
-            },
-            "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:20:29+00:00"
+            "time": "2019-08-23T08:05:57+00:00"
         },
         {
             "name": "symfony/filesystem",
-            "version": "v6.4.13",
+            "version": "v4.3.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/filesystem.git",
-                "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
+                "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
-                "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
+                "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263",
+                "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/polyfill-ctype": "~1.8",
-                "symfony/polyfill-mbstring": "~1.8"
-            },
-            "require-dev": {
-                "symfony/process": "^5.4|^6.4|^7.0"
+                "php": "^7.1.3",
+                "symfony/polyfill-ctype": "~1.8"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.3-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Filesystem\\": ""
@@ -23643,48 +9766,33 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Provides basic utilities for the filesystem",
+            "description": "Symfony Filesystem Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
-            },
-            "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-10-25T15:07:50+00:00"
+            "time": "2019-08-20T14:07:54+00:00"
         },
         {
             "name": "symfony/finder",
-            "version": "v6.4.17",
+            "version": "v4.3.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/finder.git",
-                "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
+                "reference": "86c1c929f0a4b24812e1eb109262fc3372c8e9f2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
-                "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
+                "url": "https://api.github.com/repos/symfony/finder/zipball/86c1c929f0a4b24812e1eb109262fc3372c8e9f2",
+                "reference": "86c1c929f0a4b24812e1eb109262fc3372c8e9f2",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1"
-            },
-            "require-dev": {
-                "symfony/filesystem": "^6.0|^7.0"
+                "php": "^7.1.3"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.3-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Finder\\": ""
@@ -23707,61 +9815,38 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Finds files and directories via an intuitive fluent interface",
+            "description": "Symfony Finder Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/finder/tree/v6.4.17"
-            },
-            "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-12-29T13:51:37+00:00"
+            "time": "2019-08-14T12:26:46+00:00"
         },
         {
             "name": "symfony/http-foundation",
-            "version": "v6.4.21",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/http-foundation.git",
-                "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
+                "reference": "b3d57a1c325f39f703b249bed7998ce8c64236b4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
-                "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b3d57a1c325f39f703b249bed7998ce8c64236b4",
+                "reference": "b3d57a1c325f39f703b249bed7998ce8c64236b4",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
+                "php": "^5.5.9|>=7.0.8",
                 "symfony/polyfill-mbstring": "~1.1",
-                "symfony/polyfill-php83": "^1.27"
-            },
-            "conflict": {
-                "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
+                "symfony/polyfill-php70": "~1.6"
             },
             "require-dev": {
-                "doctrine/dbal": "^2.13.1|^3|^4",
-                "predis/predis": "^1.1|^2.0",
-                "symfony/cache": "^6.4.12|^7.1.5",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/expression-language": "^5.4|^6.0|^7.0",
-                "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
-                "symfony/mime": "^5.4|^6.0|^7.0",
-                "symfony/rate-limiter": "^5.4|^6.0|^7.0"
+                "symfony/expression-language": "~2.8|~3.0|~4.0"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\HttpFoundation\\": ""
@@ -23784,98 +9869,73 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Defines an object-oriented layer for the HTTP specification",
+            "description": "Symfony HttpFoundation Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
-            },
-            "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": "2025-04-27T13:27:38+00:00"
+            "time": "2019-08-26T07:50:50+00:00"
         },
         {
             "name": "symfony/http-kernel",
-            "version": "v6.4.21",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/http-kernel.git",
-                "reference": "983ca05eec6623920d24ec0f1005f487d3734a0c"
+                "reference": "f6d35bb306b26812df007525f5757a8b0e95857e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/983ca05eec6623920d24ec0f1005f487d3734a0c",
-                "reference": "983ca05eec6623920d24ec0f1005f487d3734a0c",
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6d35bb306b26812df007525f5757a8b0e95857e",
+                "reference": "f6d35bb306b26812df007525f5757a8b0e95857e",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "psr/log": "^1|^2|^3",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/error-handler": "^6.4|^7.0",
-                "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
-                "symfony/http-foundation": "^6.4|^7.0",
-                "symfony/polyfill-ctype": "^1.8"
+                "php": "^5.5.9|>=7.0.8",
+                "psr/log": "~1.0",
+                "symfony/debug": "^3.3.3|~4.0",
+                "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+                "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
+                "symfony/polyfill-ctype": "~1.8"
             },
             "conflict": {
-                "symfony/browser-kit": "<5.4",
-                "symfony/cache": "<5.4",
-                "symfony/config": "<6.1",
-                "symfony/console": "<5.4",
-                "symfony/dependency-injection": "<6.4",
-                "symfony/doctrine-bridge": "<5.4",
-                "symfony/form": "<5.4",
-                "symfony/http-client": "<5.4",
-                "symfony/http-client-contracts": "<2.5",
-                "symfony/mailer": "<5.4",
-                "symfony/messenger": "<5.4",
-                "symfony/translation": "<5.4",
-                "symfony/translation-contracts": "<2.5",
-                "symfony/twig-bridge": "<5.4",
-                "symfony/validator": "<6.4",
-                "symfony/var-dumper": "<6.3",
-                "twig/twig": "<2.13"
+                "symfony/config": "<2.8",
+                "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
+                "symfony/var-dumper": "<3.3",
+                "twig/twig": "<1.34|<2.4,>=2"
             },
             "provide": {
-                "psr/log-implementation": "1.0|2.0|3.0"
+                "psr/log-implementation": "1.0"
             },
             "require-dev": {
-                "psr/cache": "^1.0|^2.0|^3.0",
-                "symfony/browser-kit": "^5.4|^6.0|^7.0",
-                "symfony/clock": "^6.2|^7.0",
-                "symfony/config": "^6.1|^7.0",
-                "symfony/console": "^5.4|^6.0|^7.0",
-                "symfony/css-selector": "^5.4|^6.0|^7.0",
-                "symfony/dependency-injection": "^6.4|^7.0",
-                "symfony/dom-crawler": "^5.4|^6.0|^7.0",
-                "symfony/expression-language": "^5.4|^6.0|^7.0",
-                "symfony/finder": "^5.4|^6.0|^7.0",
-                "symfony/http-client-contracts": "^2.5|^3",
-                "symfony/process": "^5.4|^6.0|^7.0",
-                "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
-                "symfony/routing": "^5.4|^6.0|^7.0",
-                "symfony/serializer": "^6.4.4|^7.0.4",
-                "symfony/stopwatch": "^5.4|^6.0|^7.0",
-                "symfony/translation": "^5.4|^6.0|^7.0",
-                "symfony/translation-contracts": "^2.5|^3",
-                "symfony/uid": "^5.4|^6.0|^7.0",
-                "symfony/validator": "^6.4|^7.0",
-                "symfony/var-dumper": "^5.4|^6.4|^7.0",
-                "symfony/var-exporter": "^6.2|^7.0",
-                "twig/twig": "^2.13|^3.0.4"
+                "psr/cache": "~1.0",
+                "symfony/browser-kit": "~2.8|~3.0|~4.0",
+                "symfony/class-loader": "~2.8|~3.0",
+                "symfony/config": "~2.8|~3.0|~4.0",
+                "symfony/console": "~2.8|~3.0|~4.0",
+                "symfony/css-selector": "~2.8|~3.0|~4.0",
+                "symfony/dependency-injection": "^3.4.10|^4.0.10",
+                "symfony/dom-crawler": "~2.8|~3.0|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/finder": "~2.8|~3.0|~4.0",
+                "symfony/process": "~2.8|~3.0|~4.0",
+                "symfony/routing": "~3.4|~4.0",
+                "symfony/stopwatch": "~2.8|~3.0|~4.0",
+                "symfony/templating": "~2.8|~3.0|~4.0",
+                "symfony/translation": "~2.8|~3.0|~4.0",
+                "symfony/var-dumper": "~3.3|~4.0"
+            },
+            "suggest": {
+                "symfony/browser-kit": "",
+                "symfony/config": "",
+                "symfony/console": "",
+                "symfony/dependency-injection": "",
+                "symfony/finder": "",
+                "symfony/var-dumper": ""
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\HttpKernel\\": ""
@@ -23898,229 +9958,43 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Provides a structured process for converting a Request into a Response",
+            "description": "Symfony HttpKernel Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/http-kernel/tree/v6.4.21"
-            },
-            "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": "2025-05-02T08:46:38+00:00"
-        },
-        {
-            "name": "symfony/mailer",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/mailer.git",
-                "reference": "ada2809ccd4ec27aba9fc344e3efdaec624c6438"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/mailer/zipball/ada2809ccd4ec27aba9fc344e3efdaec624c6438",
-                "reference": "ada2809ccd4ec27aba9fc344e3efdaec624c6438",
-                "shasum": ""
-            },
-            "require": {
-                "egulias/email-validator": "^2.1.10|^3|^4",
-                "php": ">=8.1",
-                "psr/event-dispatcher": "^1",
-                "psr/log": "^1|^2|^3",
-                "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
-                "symfony/mime": "^6.2|^7.0",
-                "symfony/service-contracts": "^2.5|^3"
-            },
-            "conflict": {
-                "symfony/http-client-contracts": "<2.5",
-                "symfony/http-kernel": "<5.4",
-                "symfony/messenger": "<6.2",
-                "symfony/mime": "<6.2",
-                "symfony/twig-bridge": "<6.2.1"
-            },
-            "require-dev": {
-                "symfony/console": "^5.4|^6.0|^7.0",
-                "symfony/http-client": "^5.4|^6.0|^7.0",
-                "symfony/messenger": "^6.2|^7.0",
-                "symfony/twig-bridge": "^6.2|^7.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\Mailer\\": ""
-                },
-                "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": "Helps sending emails",
-            "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/mailer/tree/v6.4.21"
-            },
-            "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": "2025-04-26T23:47:35+00:00"
-        },
-        {
-            "name": "symfony/mime",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/mime.git",
-                "reference": "fec8aa5231f3904754955fad33c2db50594d22d1"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1",
-                "reference": "fec8aa5231f3904754955fad33c2db50594d22d1",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-intl-idn": "^1.10",
-                "symfony/polyfill-mbstring": "^1.0"
-            },
-            "conflict": {
-                "egulias/email-validator": "~3.0.0",
-                "phpdocumentor/reflection-docblock": "<3.2.2",
-                "phpdocumentor/type-resolver": "<1.4.0",
-                "symfony/mailer": "<5.4",
-                "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
-            },
-            "require-dev": {
-                "egulias/email-validator": "^2.1.10|^3.1|^4",
-                "league/html-to-markdown": "^5.0",
-                "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/process": "^5.4|^6.4|^7.0",
-                "symfony/property-access": "^5.4|^6.0|^7.0",
-                "symfony/property-info": "^5.4|^6.0|^7.0",
-                "symfony/serializer": "^6.4.3|^7.0.3"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\Mime\\": ""
-                },
-                "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": "Allows manipulating MIME messages",
-            "homepage": "https://symfony.com",
-            "keywords": [
-                "mime",
-                "mime-type"
-            ],
-            "support": {
-                "source": "https://github.com/symfony/mime/tree/v6.4.21"
-            },
-            "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": "2025-04-27T13:27:38+00:00"
+            "time": "2019-08-26T16:36:29+00:00"
         },
         {
             "name": "symfony/polyfill-ctype",
-            "version": "v1.31.0",
+            "version": "v1.12.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-ctype.git",
-                "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
+                "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
-                "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
+                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
+                "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2"
-            },
-            "provide": {
-                "ext-ctype": "*"
+                "php": ">=5.3.3"
             },
             "suggest": {
                 "ext-ctype": "For best performance"
             },
             "type": "library",
             "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/polyfill",
-                    "name": "symfony/polyfill"
+                "branch-alias": {
+                    "dev-master": "1.12-dev"
                 }
             },
             "autoload": {
-                "files": [
-                    "bootstrap.php"
-                ],
                 "psr-4": {
                     "Symfony\\Polyfill\\Ctype\\": ""
-                }
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
@@ -24144,62 +10018,41 @@
                 "polyfill",
                 "portable"
             ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.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-09T11:45:10+00:00"
+            "time": "2019-08-06T08:03:45+00:00"
         },
         {
             "name": "symfony/polyfill-iconv",
-            "version": "v1.31.0",
+            "version": "v1.12.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-iconv.git",
-                "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
+                "reference": "685968b11e61a347c18bf25db32effa478be610f"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
-                "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
+                "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
+                "reference": "685968b11e61a347c18bf25db32effa478be610f",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2"
-            },
-            "provide": {
-                "ext-iconv": "*"
+                "php": ">=5.3.3"
             },
             "suggest": {
                 "ext-iconv": "For best performance"
             },
             "type": "library",
             "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/polyfill",
-                    "name": "symfony/polyfill"
+                "branch-alias": {
+                    "dev-master": "1.12-dev"
                 }
             },
             "autoload": {
-                "files": [
-                    "bootstrap.php"
-                ],
                 "psr-4": {
                     "Symfony\\Polyfill\\Iconv\\": ""
-                }
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
@@ -24224,304 +10077,41 @@
                 "portable",
                 "shim"
             ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.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-09T11:45:10+00:00"
-        },
-        {
-            "name": "symfony/polyfill-intl-grapheme",
-            "version": "v1.31.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
-                "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
-                "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
-                "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.31.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-09T11:45:10+00:00"
-        },
-        {
-            "name": "symfony/polyfill-intl-idn",
-            "version": "v1.31.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/polyfill-intl-idn.git",
-                "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
-                "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=7.2",
-                "symfony/polyfill-intl-normalizer": "^1.10"
-            },
-            "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\\Idn\\": ""
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Laurent Bassin",
-                    "email": "laurent@bassin.info"
-                },
-                {
-                    "name": "Trevor Rowbotham",
-                    "email": "trevor.rowbotham@pm.me"
-                },
-                {
-                    "name": "Symfony Community",
-                    "homepage": "https://symfony.com/contributors"
-                }
-            ],
-            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
-            "homepage": "https://symfony.com",
-            "keywords": [
-                "compatibility",
-                "idn",
-                "intl",
-                "polyfill",
-                "portable",
-                "shim"
-            ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.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-09T11:45:10+00:00"
-        },
-        {
-            "name": "symfony/polyfill-intl-normalizer",
-            "version": "v1.31.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.31.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-09T11:45:10+00:00"
+            "time": "2019-08-06T08:03:45+00:00"
         },
         {
             "name": "symfony/polyfill-mbstring",
-            "version": "v1.31.0",
+            "version": "v1.12.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-mbstring.git",
-                "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
+                "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
-                "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
+                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
+                "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2"
-            },
-            "provide": {
-                "ext-mbstring": "*"
+                "php": ">=5.3.3"
             },
             "suggest": {
                 "ext-mbstring": "For best performance"
             },
             "type": "library",
             "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/polyfill",
-                    "name": "symfony/polyfill"
+                "branch-alias": {
+                    "dev-master": "1.12-dev"
                 }
             },
             "autoload": {
-                "files": [
-                    "bootstrap.php"
-                ],
                 "psr-4": {
                     "Symfony\\Polyfill\\Mbstring\\": ""
-                }
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
@@ -24546,136 +10136,39 @@
                 "portable",
                 "shim"
             ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.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-09T11:45:10+00:00"
+            "time": "2019-08-06T08:03:45+00:00"
         },
         {
-            "name": "symfony/polyfill-php80",
-            "version": "v1.32.0",
+            "name": "symfony/polyfill-php70",
+            "version": "v1.12.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/symfony/polyfill-php80.git",
-                "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
+                "url": "https://github.com/symfony/polyfill-php70.git",
+                "reference": "54b4c428a0054e254223797d2713c31e08610831"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
-                "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
+                "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
+                "reference": "54b4c428a0054e254223797d2713c31e08610831",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2"
+                "paragonie/random_compat": "~1.0|~2.0|~9.99",
+                "php": ">=5.3.3"
             },
             "type": "library",
             "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/polyfill",
-                    "name": "symfony/polyfill"
+                "branch-alias": {
+                    "dev-master": "1.12-dev"
                 }
             },
             "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php70\\": ""
+                },
                 "files": [
                     "bootstrap.php"
                 ],
-                "psr-4": {
-                    "Symfony\\Polyfill\\Php80\\": ""
-                },
-                "classmap": [
-                    "Resources/stubs"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Ion Bazan",
-                    "email": "ion.bazan@gmail.com"
-                },
-                {
-                    "name": "Nicolas Grekas",
-                    "email": "p@tchwork.com"
-                },
-                {
-                    "name": "Symfony Community",
-                    "homepage": "https://symfony.com/contributors"
-                }
-            ],
-            "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
-            "homepage": "https://symfony.com",
-            "keywords": [
-                "compatibility",
-                "polyfill",
-                "portable",
-                "shim"
-            ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.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": "2025-01-02T08:10:11+00:00"
-        },
-        {
-            "name": "symfony/polyfill-php81",
-            "version": "v1.32.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"
                 ]
@@ -24694,7 +10187,7 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+            "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
             "homepage": "https://symfony.com",
             "keywords": [
                 "compatibility",
@@ -24702,58 +10195,37 @@
                 "portable",
                 "shim"
             ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.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-09T11:45:10+00:00"
+            "time": "2019-08-06T08:03:45+00:00"
         },
         {
-            "name": "symfony/polyfill-php83",
-            "version": "v1.31.0",
+            "name": "symfony/polyfill-php72",
+            "version": "v1.12.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/symfony/polyfill-php83.git",
-                "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
+                "url": "https://github.com/symfony/polyfill-php72.git",
+                "reference": "04ce3335667451138df4307d6a9b61565560199e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
-                "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
+                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e",
+                "reference": "04ce3335667451138df4307d6a9b61565560199e",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2"
+                "php": ">=5.3.3"
             },
             "type": "library",
             "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/polyfill",
-                    "name": "symfony/polyfill"
+                "branch-alias": {
+                    "dev-master": "1.12-dev"
                 }
             },
             "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php72\\": ""
+                },
                 "files": [
                     "bootstrap.php"
-                ],
-                "psr-4": {
-                    "Symfony\\Polyfill\\Php83\\": ""
-                },
-                "classmap": [
-                    "Resources/stubs"
                 ]
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -24770,7 +10242,7 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+            "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
             "homepage": "https://symfony.com",
             "keywords": [
                 "compatibility",
@@ -24778,119 +10250,31 @@
                 "portable",
                 "shim"
             ],
-            "support": {
-                "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.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-09T11:45:10+00:00"
-        },
-        {
-            "name": "symfony/polyfill-php84",
-            "version": "v1.32.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/polyfill-php84.git",
-                "reference": "000df7860439609837bbe28670b0be15783b7fbf"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
-                "reference": "000df7860439609837bbe28670b0be15783b7fbf",
-                "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.32.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": "2025-02-20T12:04:08+00:00"
+            "time": "2019-08-06T08:03:45+00:00"
         },
         {
             "name": "symfony/process",
-            "version": "v6.4.20",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/process.git",
-                "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
+                "reference": "d822cb654000a95b7855362c0d5b127f6a6d8baa"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
-                "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
+                "url": "https://api.github.com/repos/symfony/process/zipball/d822cb654000a95b7855362c0d5b127f6a6d8baa",
+                "reference": "d822cb654000a95b7855362c0d5b127f6a6d8baa",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1"
+                "php": "^5.5.9|>=7.0.8"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Process\\": ""
@@ -24913,61 +10297,43 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Executes commands in sub-processes",
+            "description": "Symfony Process Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/process/tree/v6.4.20"
-            },
-            "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": "2025-03-10T17:11:00+00:00"
+            "time": "2019-08-26T07:52:58+00:00"
         },
         {
             "name": "symfony/psr-http-message-bridge",
-            "version": "v6.4.13",
+            "version": "v1.2.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/psr-http-message-bridge.git",
-                "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec"
+                "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9cf83326a1074f83a738fc5320945abf7fb7fec",
-                "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec",
+                "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
+                "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "psr/http-message": "^1.0|^2.0",
-                "symfony/http-foundation": "^5.4|^6.0|^7.0"
-            },
-            "conflict": {
-                "php-http/discovery": "<1.15",
-                "symfony/http-kernel": "<6.2"
+                "php": "^7.1",
+                "psr/http-message": "^1.0",
+                "symfony/http-foundation": "^3.4 || ^4.0"
             },
             "require-dev": {
                 "nyholm/psr7": "^1.1",
-                "php-http/discovery": "^1.15",
-                "psr/log": "^1.1.4|^2|^3",
-                "symfony/browser-kit": "^5.4|^6.0|^7.0",
-                "symfony/config": "^5.4|^6.0|^7.0",
-                "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
-                "symfony/framework-bundle": "^6.2|^7.0",
-                "symfony/http-kernel": "^6.2|^7.0"
+                "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
+                "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
+            },
+            "suggest": {
+                "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
             },
             "type": "symfony-bridge",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.2-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Bridge\\PsrHttpMessage\\": ""
@@ -24982,75 +10348,68 @@
             ],
             "authors": [
                 {
-                    "name": "Fabien Potencier",
-                    "email": "fabien@symfony.com"
+                    "name": "Symfony Community",
+                    "homepage": "http://symfony.com/contributors"
                 },
                 {
-                    "name": "Symfony Community",
-                    "homepage": "https://symfony.com/contributors"
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
                 }
             ],
             "description": "PSR HTTP message bridge",
-            "homepage": "https://symfony.com",
+            "homepage": "http://symfony.com",
             "keywords": [
                 "http",
                 "http-message",
                 "psr-17",
                 "psr-7"
             ],
-            "support": {
-                "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.13"
-            },
-            "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:18:03+00:00"
+            "time": "2019-03-11T18:22:33+00:00"
         },
         {
             "name": "symfony/routing",
-            "version": "v6.4.18",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/routing.git",
-                "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68"
+                "reference": "8b0faa681c4ee14701e76a7056fef15ac5384163"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/routing/zipball/e9bfc94953019089acdfb9be51c1b9142c4afa68",
-                "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68",
+                "url": "https://api.github.com/repos/symfony/routing/zipball/8b0faa681c4ee14701e76a7056fef15ac5384163",
+                "reference": "8b0faa681c4ee14701e76a7056fef15ac5384163",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3"
+                "php": "^5.5.9|>=7.0.8"
             },
             "conflict": {
-                "doctrine/annotations": "<1.12",
-                "symfony/config": "<6.2",
-                "symfony/dependency-injection": "<5.4",
-                "symfony/yaml": "<5.4"
+                "symfony/config": "<3.3.1",
+                "symfony/dependency-injection": "<3.3",
+                "symfony/yaml": "<3.4"
             },
             "require-dev": {
-                "doctrine/annotations": "^1.12|^2",
-                "psr/log": "^1|^2|^3",
-                "symfony/config": "^6.2|^7.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/expression-language": "^5.4|^6.0|^7.0",
-                "symfony/http-foundation": "^5.4|^6.0|^7.0",
-                "symfony/yaml": "^5.4|^6.0|^7.0"
+                "doctrine/annotations": "~1.0",
+                "psr/log": "~1.0",
+                "symfony/config": "^3.3.1|~4.0",
+                "symfony/dependency-injection": "~3.3|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/http-foundation": "~2.8|~3.0|~4.0",
+                "symfony/yaml": "~3.4|~4.0"
+            },
+            "suggest": {
+                "doctrine/annotations": "For using the annotation loader",
+                "symfony/config": "For using the all-in-one router or any loader",
+                "symfony/expression-language": "For using expression matching",
+                "symfony/http-foundation": "For using a Symfony Request object",
+                "symfony/yaml": "For using the YAML loader"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Routing\\": ""
@@ -25073,7 +10432,7 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Maps an HTTP request to a set of configuration variables",
+            "description": "Symfony Routing Component",
             "homepage": "https://symfony.com",
             "keywords": [
                 "router",
@@ -25081,80 +10440,61 @@
                 "uri",
                 "url"
             ],
-            "support": {
-                "source": "https://github.com/symfony/routing/tree/v6.4.18"
-            },
-            "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": "2025-01-09T08:51:02+00:00"
+            "time": "2019-08-26T07:50:50+00:00"
         },
         {
             "name": "symfony/serializer",
-            "version": "v6.4.21",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/serializer.git",
-                "reference": "c45f8f7763afb11e85772c0c1debb8f272c17f51"
+                "reference": "758c3cb8cd4a949ee76ee457450abdc80ea82aa1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/serializer/zipball/c45f8f7763afb11e85772c0c1debb8f272c17f51",
-                "reference": "c45f8f7763afb11e85772c0c1debb8f272c17f51",
+                "url": "https://api.github.com/repos/symfony/serializer/zipball/758c3cb8cd4a949ee76ee457450abdc80ea82aa1",
+                "reference": "758c3cb8cd4a949ee76ee457450abdc80ea82aa1",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
+                "php": "^5.5.9|>=7.0.8",
                 "symfony/polyfill-ctype": "~1.8"
             },
             "conflict": {
-                "doctrine/annotations": "<1.12",
-                "phpdocumentor/reflection-docblock": "<3.2.2",
-                "phpdocumentor/type-resolver": "<1.4.0",
-                "symfony/dependency-injection": "<5.4",
-                "symfony/property-access": "<5.4",
-                "symfony/property-info": "<5.4.24|>=6,<6.2.11",
-                "symfony/uid": "<5.4",
-                "symfony/validator": "<6.4",
-                "symfony/yaml": "<5.4"
+                "phpdocumentor/type-resolver": "<0.2.1",
+                "symfony/dependency-injection": "<3.2",
+                "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
+                "symfony/property-info": "<3.1",
+                "symfony/yaml": "<3.4"
             },
             "require-dev": {
-                "doctrine/annotations": "^1.12|^2",
-                "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
-                "seld/jsonlint": "^1.10",
-                "symfony/cache": "^5.4|^6.0|^7.0",
-                "symfony/config": "^5.4|^6.0|^7.0",
-                "symfony/console": "^5.4|^6.0|^7.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/error-handler": "^5.4|^6.0|^7.0",
-                "symfony/filesystem": "^5.4|^6.0|^7.0",
-                "symfony/form": "^5.4|^6.0|^7.0",
-                "symfony/http-foundation": "^5.4|^6.0|^7.0",
-                "symfony/http-kernel": "^5.4|^6.0|^7.0",
-                "symfony/messenger": "^5.4|^6.0|^7.0",
-                "symfony/mime": "^5.4|^6.0|^7.0",
-                "symfony/property-access": "^5.4.26|^6.3|^7.0",
-                "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
-                "symfony/translation-contracts": "^2.5|^3",
-                "symfony/uid": "^5.4|^6.0|^7.0",
-                "symfony/validator": "^6.4|^7.0",
-                "symfony/var-dumper": "^5.4|^6.0|^7.0",
-                "symfony/var-exporter": "^5.4|^6.0|^7.0",
-                "symfony/yaml": "^5.4|^6.0|^7.0"
+                "doctrine/annotations": "~1.0",
+                "doctrine/cache": "~1.0",
+                "phpdocumentor/reflection-docblock": "^3.0|^4.0",
+                "symfony/cache": "~3.1|~4.0",
+                "symfony/config": "~2.8|~3.0|~4.0",
+                "symfony/dependency-injection": "~3.2|~4.0",
+                "symfony/http-foundation": "~2.8|~3.0|~4.0",
+                "symfony/property-access": "~2.8|~3.0|~4.0",
+                "symfony/property-info": "^3.4.13|~4.0",
+                "symfony/yaml": "~3.4|~4.0"
+            },
+            "suggest": {
+                "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
+                "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
+                "psr/cache-implementation": "For using the metadata cache.",
+                "symfony/config": "For using the XML mapping loader.",
+                "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
+                "symfony/property-access": "For using the ObjectNormalizer.",
+                "symfony/property-info": "To deserialize relations.",
+                "symfony/yaml": "For using the default YAML mapping loader."
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Serializer\\": ""
@@ -25177,334 +10517,60 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
+            "description": "Symfony Serializer Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/serializer/tree/v6.4.21"
-            },
-            "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": "2025-04-27T13:27:38+00:00"
+            "time": "2019-08-26T07:52:58+00:00"
         },
         {
-            "name": "symfony/service-contracts",
-            "version": "v3.5.1",
+            "name": "symfony/translation",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
-                "url": "https://github.com/symfony/service-contracts.git",
-                "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
+                "url": "https://github.com/symfony/translation.git",
+                "reference": "49a884e9ac297f99c56052bad30b2af89f716ee1"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
-                "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
+                "url": "https://api.github.com/repos/symfony/translation/zipball/49a884e9ac297f99c56052bad30b2af89f716ee1",
+                "reference": "49a884e9ac297f99c56052bad30b2af89f716ee1",
                 "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.5-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.5.1"
-            },
-            "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:20:29+00:00"
-        },
-        {
-            "name": "symfony/string",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/string.git",
-                "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
-                "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/polyfill-ctype": "~1.8",
-                "symfony/polyfill-intl-grapheme": "~1.0",
-                "symfony/polyfill-intl-normalizer": "~1.0",
+                "php": "^5.5.9|>=7.0.8",
                 "symfony/polyfill-mbstring": "~1.0"
             },
             "conflict": {
-                "symfony/translation-contracts": "<2.5"
+                "symfony/config": "<2.8",
+                "symfony/dependency-injection": "<3.4",
+                "symfony/yaml": "<3.4"
             },
             "require-dev": {
-                "symfony/error-handler": "^5.4|^6.0|^7.0",
-                "symfony/http-client": "^5.4|^6.0|^7.0",
-                "symfony/intl": "^6.2|^7.0",
-                "symfony/translation-contracts": "^2.5|^3.0",
-                "symfony/var-exporter": "^5.4|^6.0|^7.0"
+                "psr/log": "~1.0",
+                "symfony/config": "~2.8|~3.0|~4.0",
+                "symfony/dependency-injection": "~3.4|~4.0",
+                "symfony/finder": "~2.8|~3.0|~4.0",
+                "symfony/http-kernel": "~3.4|~4.0",
+                "symfony/intl": "^2.8.18|^3.2.5|~4.0",
+                "symfony/var-dumper": "~3.4|~4.0",
+                "symfony/yaml": "~3.4|~4.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/v6.4.21"
-            },
-            "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": "2025-04-18T15:23:29+00:00"
-        },
-        {
-            "name": "symfony/translation-contracts",
-            "version": "v3.5.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/translation-contracts.git",
-                "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
-                "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1"
+            "suggest": {
+                "psr/log-implementation": "To use logging capability in translator",
+                "symfony/config": "",
+                "symfony/yaml": ""
             },
             "type": "library",
             "extra": {
-                "thanks": {
-                    "url": "https://github.com/symfony/contracts",
-                    "name": "symfony/contracts"
-                },
                 "branch-alias": {
-                    "dev-main": "3.5-dev"
+                    "dev-master": "3.4-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Symfony\\Contracts\\Translation\\": ""
+                    "Symfony\\Component\\Translation\\": ""
                 },
                 "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 translation",
-            "homepage": "https://symfony.com",
-            "keywords": [
-                "abstractions",
-                "contracts",
-                "decoupling",
-                "interfaces",
-                "interoperability",
-                "standards"
-            ],
-            "support": {
-                "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
-            },
-            "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:20:29+00:00"
-        },
-        {
-            "name": "symfony/validator",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/validator.git",
-                "reference": "47610116f476595b90c368ff2a22514050712785"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/validator/zipball/47610116f476595b90c368ff2a22514050712785",
-                "reference": "47610116f476595b90c368ff2a22514050712785",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-ctype": "~1.8",
-                "symfony/polyfill-mbstring": "~1.0",
-                "symfony/polyfill-php83": "^1.27",
-                "symfony/translation-contracts": "^2.5|^3"
-            },
-            "conflict": {
-                "doctrine/annotations": "<1.13",
-                "doctrine/lexer": "<1.1",
-                "symfony/dependency-injection": "<5.4",
-                "symfony/expression-language": "<5.4",
-                "symfony/http-kernel": "<5.4",
-                "symfony/intl": "<5.4",
-                "symfony/property-info": "<5.4",
-                "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
-                "symfony/yaml": "<5.4"
-            },
-            "require-dev": {
-                "doctrine/annotations": "^1.13|^2",
-                "egulias/email-validator": "^2.1.10|^3|^4",
-                "symfony/cache": "^5.4|^6.0|^7.0",
-                "symfony/config": "^5.4|^6.0|^7.0",
-                "symfony/console": "^5.4|^6.0|^7.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/expression-language": "^5.4|^6.0|^7.0",
-                "symfony/finder": "^5.4|^6.0|^7.0",
-                "symfony/http-client": "^5.4|^6.0|^7.0",
-                "symfony/http-foundation": "^5.4|^6.0|^7.0",
-                "symfony/http-kernel": "^5.4|^6.0|^7.0",
-                "symfony/intl": "^5.4|^6.0|^7.0",
-                "symfony/mime": "^5.4|^6.0|^7.0",
-                "symfony/property-access": "^5.4|^6.0|^7.0",
-                "symfony/property-info": "^5.4|^6.0|^7.0",
-                "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
-                "symfony/yaml": "^5.4|^6.0|^7.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\Validator\\": ""
-                },
-                "exclude-from-classmap": [
-                    "/Tests/",
-                    "/Resources/bin/"
+                    "/Tests/"
                 ]
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -25521,62 +10587,139 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Provides tools to validate values",
+            "description": "Symfony Translation Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/validator/tree/v6.4.21"
-            },
-            "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": "2025-04-30T18:50:04+00:00"
+            "time": "2019-08-26T07:52:58+00:00"
         },
         {
-            "name": "symfony/var-dumper",
-            "version": "v6.4.21",
+            "name": "symfony/validator",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
-                "url": "https://github.com/symfony/var-dumper.git",
-                "reference": "22560f80c0c5cd58cc0bcaf73455ffd81eb380d5"
+                "url": "https://github.com/symfony/validator.git",
+                "reference": "4dde4e74331ffa897c31e4423d02ae08d56f7784"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/22560f80c0c5cd58cc0bcaf73455ffd81eb380d5",
-                "reference": "22560f80c0c5cd58cc0bcaf73455ffd81eb380d5",
+                "url": "https://api.github.com/repos/symfony/validator/zipball/4dde4e74331ffa897c31e4423d02ae08d56f7784",
+                "reference": "4dde4e74331ffa897c31e4423d02ae08d56f7784",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-mbstring": "~1.0"
+                "php": "^5.5.9|>=7.0.8",
+                "symfony/polyfill-ctype": "~1.8",
+                "symfony/polyfill-mbstring": "~1.0",
+                "symfony/translation": "~2.8|~3.0|~4.0"
             },
             "conflict": {
-                "symfony/console": "<5.4"
+                "doctrine/lexer": "<1.0.2",
+                "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+                "symfony/dependency-injection": "<3.3",
+                "symfony/http-kernel": "<3.3.5",
+                "symfony/yaml": "<3.4"
+            },
+            "require-dev": {
+                "doctrine/annotations": "~1.7",
+                "doctrine/cache": "~1.0",
+                "egulias/email-validator": "^2.1.10",
+                "symfony/cache": "~3.1|~4.0",
+                "symfony/config": "~2.8|~3.0|~4.0",
+                "symfony/dependency-injection": "~3.3|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/http-foundation": "~2.8|~3.0|~4.0",
+                "symfony/http-kernel": "^3.3.5|~4.0",
+                "symfony/intl": "^2.8.18|^3.2.5|~4.0",
+                "symfony/property-access": "~2.8|~3.0|~4.0",
+                "symfony/var-dumper": "~3.3|~4.0",
+                "symfony/yaml": "~3.4|~4.0"
+            },
+            "suggest": {
+                "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
+                "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
+                "egulias/email-validator": "Strict (RFC compliant) email validation",
+                "psr/cache-implementation": "For using the metadata cache.",
+                "symfony/config": "",
+                "symfony/expression-language": "For using the Expression validator",
+                "symfony/http-foundation": "",
+                "symfony/intl": "",
+                "symfony/property-access": "For accessing properties within comparison constraints",
+                "symfony/yaml": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Validator\\": ""
+                },
+                "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": "Symfony Validator Component",
+            "homepage": "https://symfony.com",
+            "time": "2019-08-26T07:52:58+00:00"
+        },
+        {
+            "name": "symfony/var-dumper",
+            "version": "v4.3.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/var-dumper.git",
+                "reference": "641043e0f3e615990a0f29479f9c117e8a6698c6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/641043e0f3e615990a0f29479f9c117e8a6698c6",
+                "reference": "641043e0f3e615990a0f29479f9c117e8a6698c6",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3",
+                "symfony/polyfill-mbstring": "~1.0",
+                "symfony/polyfill-php72": "~1.5"
+            },
+            "conflict": {
+                "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+                "symfony/console": "<3.4"
             },
             "require-dev": {
                 "ext-iconv": "*",
-                "symfony/console": "^5.4|^6.0|^7.0",
-                "symfony/error-handler": "^6.3|^7.0",
-                "symfony/http-kernel": "^5.4|^6.0|^7.0",
-                "symfony/process": "^5.4|^6.0|^7.0",
-                "symfony/uid": "^5.4|^6.0|^7.0",
-                "twig/twig": "^2.13|^3.0.4"
+                "symfony/console": "~3.4|~4.0",
+                "symfony/process": "~3.4|~4.0",
+                "twig/twig": "~1.34|~2.4"
+            },
+            "suggest": {
+                "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
+                "ext-intl": "To show region name in time zone dump",
+                "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
             },
             "bin": [
                 "Resources/bin/var-dump-server"
             ],
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.3-dev"
+                }
+            },
             "autoload": {
                 "files": [
                     "Resources/functions/dump.php"
@@ -25602,137 +10745,47 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+            "description": "Symfony mechanism for exploring and dumping PHP variables",
             "homepage": "https://symfony.com",
             "keywords": [
                 "debug",
                 "dump"
             ],
-            "support": {
-                "source": "https://github.com/symfony/var-dumper/tree/v6.4.21"
-            },
-            "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": "2025-04-09T07:34:50+00:00"
-        },
-        {
-            "name": "symfony/var-exporter",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/var-exporter.git",
-                "reference": "717e7544aa99752c54ecba5c0e17459c48317472"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/717e7544aa99752c54ecba5c0e17459c48317472",
-                "reference": "717e7544aa99752c54ecba5c0e17459c48317472",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3"
-            },
-            "require-dev": {
-                "symfony/property-access": "^6.4|^7.0",
-                "symfony/serializer": "^6.4|^7.0",
-                "symfony/var-dumper": "^5.4|^6.0|^7.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\VarExporter\\": ""
-                },
-                "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": "Allows exporting any serializable PHP data structure to plain PHP code",
-            "homepage": "https://symfony.com",
-            "keywords": [
-                "clone",
-                "construct",
-                "export",
-                "hydrate",
-                "instantiate",
-                "lazy-loading",
-                "proxy",
-                "serialize"
-            ],
-            "support": {
-                "source": "https://github.com/symfony/var-exporter/tree/v6.4.21"
-            },
-            "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": "2025-04-27T21:06:26+00:00"
+            "time": "2019-08-26T08:26:39+00:00"
         },
         {
             "name": "symfony/yaml",
-            "version": "v6.4.21",
+            "version": "v3.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/yaml.git",
-                "reference": "f01987f45676778b474468aa266fe2eda1f2bc7e"
+                "reference": "3dc414b7db30695bae671a1d86013d03f4ae9834"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/yaml/zipball/f01987f45676778b474468aa266fe2eda1f2bc7e",
-                "reference": "f01987f45676778b474468aa266fe2eda1f2bc7e",
+                "url": "https://api.github.com/repos/symfony/yaml/zipball/3dc414b7db30695bae671a1d86013d03f4ae9834",
+                "reference": "3dc414b7db30695bae671a1d86013d03f4ae9834",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-ctype": "^1.8"
+                "php": "^5.5.9|>=7.0.8",
+                "symfony/polyfill-ctype": "~1.8"
             },
             "conflict": {
-                "symfony/console": "<5.4"
+                "symfony/console": "<3.4"
             },
             "require-dev": {
-                "symfony/console": "^5.4|^6.0|^7.0"
+                "symfony/console": "~3.4|~4.0"
+            },
+            "suggest": {
+                "symfony/console": "For validating YAML files using the lint command"
             },
-            "bin": [
-                "Resources/bin/yaml-lint"
-            ],
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Yaml\\": ""
@@ -25755,176 +10808,43 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Loads and dumps YAML files",
+            "description": "Symfony Yaml Component",
             "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/yaml/tree/v6.4.21"
-            },
-            "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": "2025-04-04T09:48:44+00:00"
-        },
-        {
-            "name": "tecnickcom/tcpdf",
-            "version": "6.9.3",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/tecnickcom/TCPDF.git",
-                "reference": "d0e8dd17f8a1df3c97b94b9af8356e88e811ed59"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/d0e8dd17f8a1df3c97b94b9af8356e88e811ed59",
-                "reference": "d0e8dd17f8a1df3c97b94b9af8356e88e811ed59",
-                "shasum": ""
-            },
-            "require": {
-                "ext-curl": "*",
-                "php": ">=7.1.0"
-            },
-            "type": "library",
-            "autoload": {
-                "classmap": [
-                    "config",
-                    "include",
-                    "tcpdf.php",
-                    "tcpdf_barcodes_1d.php",
-                    "tcpdf_barcodes_2d.php",
-                    "include/tcpdf_colors.php",
-                    "include/tcpdf_filters.php",
-                    "include/tcpdf_font_data.php",
-                    "include/tcpdf_fonts.php",
-                    "include/tcpdf_images.php",
-                    "include/tcpdf_static.php",
-                    "include/barcodes/datamatrix.php",
-                    "include/barcodes/pdf417.php",
-                    "include/barcodes/qrcode.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "LGPL-3.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "Nicola Asuni",
-                    "email": "info@tecnick.com",
-                    "role": "lead"
-                }
-            ],
-            "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
-            "homepage": "http://www.tcpdf.org/",
-            "keywords": [
-                "PDFD32000-2008",
-                "TCPDF",
-                "barcodes",
-                "datamatrix",
-                "pdf",
-                "pdf417",
-                "qrcode"
-            ],
-            "support": {
-                "issues": "https://github.com/tecnickcom/TCPDF/issues",
-                "source": "https://github.com/tecnickcom/TCPDF/tree/6.9.3"
-            },
-            "funding": [
-                {
-                    "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
-                    "type": "custom"
-                }
-            ],
-            "time": "2025-04-20T15:52:50+00:00"
-        },
-        {
-            "name": "thinkshout/mailchimp-api-php",
-            "version": "v3.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thinkshout/mailchimp-api-php.git",
-                "reference": "466e4bd2a36ff052418cf2a24a611e91ac5c2929"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/466e4bd2a36ff052418cf2a24a611e91ac5c2929",
-                "reference": "466e4bd2a36ff052418cf2a24a611e91ac5c2929",
-                "shasum": ""
-            },
-            "require": {
-                "guzzlehttp/guzzle": "^6.5.8|^7.4.5",
-                "php": ">=5.4.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^6.2.2|^7.0|^8.0|^9.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Mailchimp\\": "src/",
-                    "Mailchimp\\http\\": "src/http/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "description": "PHP library for v3 of the MailChimp API",
-            "homepage": "https://github.com/thinkshout/mailchimp-api-php",
-            "keywords": [
-                "mail",
-                "mailchimp"
-            ],
-            "support": {
-                "issues": "https://github.com/thinkshout/mailchimp-api-php/issues",
-                "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v3.0.1"
-            },
-            "time": "2023-12-08T18:46:31+00:00"
+            "time": "2019-08-20T13:31:17+00:00"
         },
         {
             "name": "twig/twig",
-            "version": "v3.19.0",
+            "version": "v1.42.3",
             "source": {
                 "type": "git",
                 "url": "https://github.com/twigphp/Twig.git",
-                "reference": "d4f8c2b86374f08efc859323dbcd95c590f7124e"
+                "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/twigphp/Twig/zipball/d4f8c2b86374f08efc859323dbcd95c590f7124e",
-                "reference": "d4f8c2b86374f08efc859323dbcd95c590f7124e",
+                "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e",
+                "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e",
                 "shasum": ""
             },
             "require": {
-                "php": ">=8.0.2",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-ctype": "^1.8",
-                "symfony/polyfill-mbstring": "^1.3",
-                "symfony/polyfill-php81": "^1.29"
+                "php": ">=5.5.0",
+                "symfony/polyfill-ctype": "^1.8"
             },
             "require-dev": {
-                "phpstan/phpstan": "^2.0",
-                "psr/container": "^1.0|^2.0",
-                "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
+                "psr/container": "^1.0",
+                "symfony/debug": "^3.4|^4.2",
+                "symfony/phpunit-bridge": "^4.4@dev|^5.0"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.42-dev"
+                }
+            },
             "autoload": {
-                "files": [
-                    "src/Resources/core.php",
-                    "src/Resources/debug.php",
-                    "src/Resources/escaper.php",
-                    "src/Resources/string_loader.php"
-                ],
+                "psr-0": {
+                    "Twig_": "lib/"
+                },
                 "psr-4": {
                     "Twig\\": "src/"
                 }
@@ -25936,18 +10856,19 @@
             "authors": [
                 {
                     "name": "Fabien Potencier",
+                    "role": "Lead Developer",
                     "email": "fabien@symfony.com",
-                    "homepage": "http://fabien.potencier.org",
-                    "role": "Lead Developer"
+                    "homepage": "http://fabien.potencier.org"
                 },
                 {
                     "name": "Twig Team",
-                    "role": "Contributors"
+                    "role": "Contributors",
+                    "homepage": "https://twig.symfony.com/contributors"
                 },
                 {
                     "name": "Armin Ronacher",
-                    "email": "armin.ronacher@active-4.com",
-                    "role": "Project Founder"
+                    "role": "Project Founder",
+                    "email": "armin.ronacher@active-4.com"
                 }
             ],
             "description": "Twig, the flexible, fast, and secure template language for PHP",
@@ -25955,204 +10876,84 @@
             "keywords": [
                 "templating"
             ],
-            "support": {
-                "issues": "https://github.com/twigphp/Twig/issues",
-                "source": "https://github.com/twigphp/Twig/tree/v3.19.0"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/fabpot",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/twig/twig",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-01-29T07:06:14+00:00"
+            "time": "2019-08-24T12:51:03+00:00"
         },
         {
-            "name": "vlucas/phpdotenv",
-            "version": "v5.6.2",
+            "name": "typo3/phar-stream-wrapper",
+            "version": "v2.1.2",
             "source": {
                 "type": "git",
-                "url": "https://github.com/vlucas/phpdotenv.git",
-                "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
+                "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
+                "reference": "057622f5a3b92a5ffbea0fbaadce573500a62870"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
-                "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
+                "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/057622f5a3b92a5ffbea0fbaadce573500a62870",
+                "reference": "057622f5a3b92a5ffbea0fbaadce573500a62870",
                 "shasum": ""
             },
             "require": {
-                "ext-pcre": "*",
-                "graham-campbell/result-type": "^1.1.3",
-                "php": "^7.2.5 || ^8.0",
-                "phpoption/phpoption": "^1.9.3",
-                "symfony/polyfill-ctype": "^1.24",
-                "symfony/polyfill-mbstring": "^1.24",
-                "symfony/polyfill-php80": "^1.24"
+                "brumann/polyfill-unserialize": "^1.0",
+                "ext-json": "*",
+                "php": "^5.3.3|^7.0"
             },
             "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.8.2",
-                "ext-filter": "*",
-                "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+                "ext-xdebug": "*",
+                "phpunit/phpunit": "^4.8.36"
             },
             "suggest": {
-                "ext-filter": "Required to use the boolean validator."
+                "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
             },
             "type": "library",
-            "extra": {
-                "bamarni-bin": {
-                    "bin-links": true,
-                    "forward-command": false
-                },
-                "branch-alias": {
-                    "dev-master": "5.6-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
-                    "Dotenv\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "BSD-3-Clause"
-            ],
-            "authors": [
-                {
-                    "name": "Graham Campbell",
-                    "email": "hello@gjcampbell.co.uk",
-                    "homepage": "https://github.com/GrahamCampbell"
-                },
-                {
-                    "name": "Vance Lucas",
-                    "email": "vance@vancelucas.com",
-                    "homepage": "https://github.com/vlucas"
-                }
-            ],
-            "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
-            "keywords": [
-                "dotenv",
-                "env",
-                "environment"
-            ],
-            "support": {
-                "issues": "https://github.com/vlucas/phpdotenv/issues",
-                "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/GrahamCampbell",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-04-30T23:37:27+00:00"
-        },
-        {
-            "name": "wa72/htmlpagedom",
-            "version": "v3.0.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/wasinger/htmlpagedom.git",
-                "reference": "568a7379e66c3a8cf973885b7811900487f11fbb"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/wasinger/htmlpagedom/zipball/568a7379e66c3a8cf973885b7811900487f11fbb",
-                "reference": "568a7379e66c3a8cf973885b7811900487f11fbb",
-                "shasum": ""
-            },
-            "require": {
-                "ext-dom": "*",
-                "ext-libxml": "*",
-                "ext-mbstring": "*",
-                "php": "^8.0",
-                "symfony/css-selector": "^6",
-                "symfony/dom-crawler": "^6"
-            },
-            "require-dev": {
-                "mikey179/vfsstream": "^1.6.10",
-                "phpunit/phpunit": "^9",
-                "scrutinizer/ocular": "^1.9",
-                "wa72/html-pretty-min": "~0.1"
-            },
-            "suggest": {
-                "wa72/html-pretty-min": "Minify or indent HTML documents"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "3.0-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Wa72\\HtmlPageDom\\": "src/"
+                    "TYPO3\\PharStreamWrapper\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
-            "authors": [
-                {
-                    "name": "Christoph Singer",
-                    "email": "singer@webagentur72.de",
-                    "homepage": "http://www.webagentur72.de"
-                }
-            ],
-            "description": "jQuery-inspired DOM manipulation extension for Symfony's Crawler",
-            "homepage": "http://github.com/wasinger/htmlpagedom",
+            "description": "Interceptors for PHP's native phar:// stream handling",
+            "homepage": "https://typo3.org/",
             "keywords": [
-                "crawler",
-                "dom",
-                "html"
+                "phar",
+                "php",
+                "security",
+                "stream-wrapper"
             ],
-            "support": {
-                "issues": "https://github.com/wasinger/htmlpagedom/issues",
-                "source": "https://github.com/wasinger/htmlpagedom/tree/v3.0.0"
-            },
-            "time": "2022-04-13T15:28:55+00:00"
+            "time": "2019-05-14T13:14:31+00:00"
         },
         {
             "name": "webflo/drupal-finder",
-            "version": "1.3.1",
+            "version": "1.2.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/webflo/drupal-finder.git",
-                "reference": "73045060b0894c77962a10cff047f72872d8810c"
+                "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
-                "reference": "73045060b0894c77962a10cff047f72872d8810c",
+                "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
+                "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
                 "shasum": ""
             },
             "require": {
-                "composer-runtime-api": "^2.2",
-                "php": ">=8.1"
+                "ext-json": "*"
             },
             "require-dev": {
                 "mikey179/vfsstream": "^1.6",
-                "phpunit/phpunit": "^10.4",
-                "symfony/process": "^6.4"
+                "phpunit/phpunit": "^4.8"
             },
             "type": "library",
             "autoload": {
-                "psr-4": {
-                    "DrupalFinder\\": "src/"
-                }
+                "classmap": [
+                    "src/DrupalFinder.php"
+                ]
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "GPL-2.0-or-later"
+                "GPL-2.0+"
             ],
             "authors": [
                 {
@@ -26160,42 +10961,34 @@
                     "email": "florian@webflo.org"
                 }
             ],
-            "description": "Helper class to locate a Drupal installation.",
-            "support": {
-                "issues": "https://github.com/webflo/drupal-finder/issues",
-                "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
-            },
-            "time": "2024-06-28T13:45:36+00:00"
+            "description": "Helper class to locate a Drupal installation from a given path.",
+            "time": "2019-08-02T08:06:18+00:00"
         },
         {
             "name": "webmozart/assert",
-            "version": "1.11.0",
+            "version": "1.5.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/webmozarts/assert.git",
-                "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
+                "url": "https://github.com/webmozart/assert.git",
+                "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
-                "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
+                "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
+                "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
                 "shasum": ""
             },
             "require": {
-                "ext-ctype": "*",
-                "php": "^7.2 || ^8.0"
-            },
-            "conflict": {
-                "phpstan/phpstan": "<0.12.20",
-                "vimeo/psalm": "<4.6.1 || 4.6.2"
+                "php": "^5.3.3 || ^7.0",
+                "symfony/polyfill-ctype": "^1.8"
             },
             "require-dev": {
-                "phpunit/phpunit": "^8.5.13"
+                "phpunit/phpunit": "^4.8.36 || ^7.5.13"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.10-dev"
+                    "dev-master": "1.3-dev"
                 }
             },
             "autoload": {
@@ -26219,145 +11012,39 @@
                 "check",
                 "validate"
             ],
-            "support": {
-                "issues": "https://github.com/webmozarts/assert/issues",
-                "source": "https://github.com/webmozarts/assert/tree/1.11.0"
-            },
-            "time": "2022-06-03T18:03:27+00:00"
-        }
-    ],
-    "packages-dev": [
-        {
-            "name": "behat/behat",
-            "version": "v3.22.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/Behat/Behat.git",
-                "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/Behat/Behat/zipball/a93098a77753c3cfdc4c485d75141924a78ceb93",
-                "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93",
-                "shasum": ""
-            },
-            "require": {
-                "behat/gherkin": "^4.12.0",
-                "composer-runtime-api": "^2.2",
-                "composer/xdebug-handler": "^3.0",
-                "ext-mbstring": "*",
-                "nikic/php-parser": "^5.2",
-                "php": "8.1.* || 8.2.* || 8.3.* || 8.4.* ",
-                "psr/container": "^1.0 || ^2.0",
-                "symfony/config": "^5.4 || ^6.4 || ^7.0",
-                "symfony/console": "^5.4 || ^6.4 || ^7.0",
-                "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
-                "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
-                "symfony/translation": "^5.4 || ^6.4 || ^7.0",
-                "symfony/yaml": "^5.4 || ^6.4 || ^7.0"
-            },
-            "require-dev": {
-                "friendsofphp/php-cs-fixer": "^3.68",
-                "phpstan/phpstan": "^2.0",
-                "phpunit/phpunit": "^9.6",
-                "sebastian/diff": "^4.0",
-                "symfony/polyfill-php84": "^1.31",
-                "symfony/process": "^5.4 || ^6.4 || ^7.0"
-            },
-            "suggest": {
-                "ext-dom": "Needed to output test results in JUnit format."
-            },
-            "bin": [
-                "bin/behat"
-            ],
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "3.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Behat\\Hook\\": "src/Behat/Hook/",
-                    "Behat\\Step\\": "src/Behat/Step/",
-                    "Behat\\Behat\\": "src/Behat/Behat/",
-                    "Behat\\Config\\": "src/Behat/Config/",
-                    "Behat\\Testwork\\": "src/Behat/Testwork/",
-                    "Behat\\Transformation\\": "src/Behat/Transformation/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Konstantin Kudryashov",
-                    "email": "ever.zet@gmail.com",
-                    "homepage": "http://everzet.com"
-                }
-            ],
-            "description": "Scenario-oriented BDD framework for PHP",
-            "homepage": "https://behat.org/",
-            "keywords": [
-                "Agile",
-                "BDD",
-                "ScenarioBDD",
-                "Scrum",
-                "StoryBDD",
-                "User story",
-                "business",
-                "development",
-                "documentation",
-                "examples",
-                "symfony",
-                "testing"
-            ],
-            "support": {
-                "issues": "https://github.com/Behat/Behat/issues",
-                "source": "https://github.com/Behat/Behat/tree/v3.22.0"
-            },
-            "time": "2025-05-06T15:25:03+00:00"
+            "time": "2019-08-24T08:43:50+00:00"
         },
         {
-            "name": "behat/gherkin",
-            "version": "v4.13.0",
+            "name": "webmozart/path-util",
+            "version": "2.3.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/Behat/Gherkin.git",
-                "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70"
+                "url": "https://github.com/webmozart/path-util.git",
+                "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/Behat/Gherkin/zipball/9294d26bb75f1718441b89f3a10e15ecb2c67f70",
-                "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70",
+                "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
+                "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
                 "shasum": ""
             },
             "require": {
-                "composer-runtime-api": "^2.2",
-                "php": "8.1.* || 8.2.* || 8.3.* || 8.4.*"
+                "php": ">=5.3.3",
+                "webmozart/assert": "~1.0"
             },
             "require-dev": {
-                "cucumber/gherkin-monorepo": "dev-gherkin-v32.1.1",
-                "friendsofphp/php-cs-fixer": "^3.65",
-                "phpstan/extension-installer": "^1",
-                "phpstan/phpstan": "^2",
-                "phpstan/phpstan-phpunit": "^2",
-                "phpunit/phpunit": "^10.5",
-                "symfony/yaml": "^5.4 || ^6.4 || ^7.0"
-            },
-            "suggest": {
-                "symfony/yaml": "If you want to parse features, represented in YAML files"
+                "phpunit/phpunit": "^4.6",
+                "sebastian/version": "^1.0.1"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "4.x-dev"
+                    "dev-master": "2.3-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "Behat\\Gherkin\\": "src/"
+                    "Webmozart\\PathUtil\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -26366,760 +11053,249 @@
             ],
             "authors": [
                 {
-                    "name": "Konstantin Kudryashov",
-                    "email": "ever.zet@gmail.com",
-                    "homepage": "https://everzet.com"
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@gmail.com"
                 }
             ],
-            "description": "Gherkin DSL parser for PHP",
-            "homepage": "https://behat.org/",
-            "keywords": [
-                "BDD",
-                "Behat",
-                "Cucumber",
-                "DSL",
-                "gherkin",
-                "parser"
-            ],
-            "support": {
-                "issues": "https://github.com/Behat/Gherkin/issues",
-                "source": "https://github.com/Behat/Gherkin/tree/v4.13.0"
-            },
-            "time": "2025-05-06T15:26:21+00:00"
+            "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
+            "time": "2015-12-17T08:42:14+00:00"
         },
         {
-            "name": "behat/mink",
-            "version": "v1.12.0",
+            "name": "zendframework/zend-diactoros",
+            "version": "1.8.7",
             "source": {
                 "type": "git",
-                "url": "https://github.com/minkphp/Mink.git",
-                "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a"
+                "url": "https://github.com/zendframework/zend-diactoros.git",
+                "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/minkphp/Mink/zipball/7e4edec6c335937029cb3569ce7ef81182804d0a",
-                "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a",
+                "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
+                "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2",
-                "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0"
+                "php": "^5.6 || ^7.0",
+                "psr/http-message": "^1.0"
+            },
+            "provide": {
+                "psr/http-message-implementation": "1.0"
             },
             "require-dev": {
-                "phpstan/phpstan": "^1.10",
-                "phpstan/phpstan-phpunit": "^1.3",
-                "phpunit/phpunit": "^8.5.22 || ^9.5.11",
-                "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0",
-                "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
-            },
-            "suggest": {
-                "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation",
-                "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
-                "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
-                "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
+                "ext-dom": "*",
+                "ext-libxml": "*",
+                "php-http/psr7-integration-tests": "dev-master",
+                "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
+                "zendframework/zend-coding-standard": "~1.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.x-dev"
+                    "dev-release-1.8": "1.8.x-dev"
                 }
             },
             "autoload": {
+                "files": [
+                    "src/functions/create_uploaded_file.php",
+                    "src/functions/marshal_headers_from_sapi.php",
+                    "src/functions/marshal_method_from_sapi.php",
+                    "src/functions/marshal_protocol_version_from_sapi.php",
+                    "src/functions/marshal_uri_from_sapi.php",
+                    "src/functions/normalize_server.php",
+                    "src/functions/normalize_uploaded_files.php",
+                    "src/functions/parse_cookie_header.php"
+                ],
                 "psr-4": {
-                    "Behat\\Mink\\": "src/"
+                    "Zend\\Diactoros\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "MIT"
+                "BSD-2-Clause"
             ],
-            "authors": [
-                {
-                    "name": "Konstantin Kudryashov",
-                    "email": "ever.zet@gmail.com",
-                    "homepage": "http://everzet.com"
-                }
-            ],
-            "description": "Browser controller/emulator abstraction for PHP",
-            "homepage": "https://mink.behat.org/",
+            "description": "PSR HTTP Message implementations",
+            "homepage": "https://github.com/zendframework/zend-diactoros",
             "keywords": [
-                "browser",
-                "testing",
-                "web"
+                "http",
+                "psr",
+                "psr-7"
             ],
-            "support": {
-                "issues": "https://github.com/minkphp/Mink/issues",
-                "source": "https://github.com/minkphp/Mink/tree/v1.12.0"
-            },
-            "time": "2024-10-30T18:48:14+00:00"
+            "time": "2019-08-06T17:53:53+00:00"
         },
         {
-            "name": "composer/pcre",
-            "version": "3.3.2",
+            "name": "zendframework/zend-escaper",
+            "version": "2.6.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/composer/pcre.git",
-                "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
+                "url": "https://github.com/zendframework/zend-escaper.git",
+                "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
-                "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
+                "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
+                "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.4 || ^8.0"
-            },
-            "conflict": {
-                "phpstan/phpstan": "<1.11.10"
+                "php": "^5.6 || ^7.0"
             },
             "require-dev": {
-                "phpstan/phpstan": "^1.12 || ^2",
-                "phpstan/phpstan-strict-rules": "^1 || ^2",
-                "phpunit/phpunit": "^8 || ^9"
+                "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
+                "zendframework/zend-coding-standard": "~1.0.0"
             },
             "type": "library",
             "extra": {
-                "phpstan": {
-                    "includes": [
-                        "extension.neon"
-                    ]
-                },
                 "branch-alias": {
-                    "dev-main": "3.x-dev"
+                    "dev-master": "2.6.x-dev",
+                    "dev-develop": "2.7.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/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": "dekor/php-array-table",
-            "version": "2.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/deniskoronets/php-array-table.git",
-                "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
-                "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
-                "shasum": ""
-            },
-            "require": {
-                "ext-mbstring": "*",
-                "php": ">=5.6.0"
-            },
-            "require-dev": {
-                "phpunit/phpunit": "^10"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "dekor\\": "src"
+                    "Zend\\Escaper\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "BSD-3-Clause"
             ],
-            "authors": [
-                {
-                    "name": "Denis Koronets",
-                    "email": "deniskoronets@woo.zp.ua",
-                    "homepage": "https://woo.zp.ua/"
-                }
-            ],
-            "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
+            "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
             "keywords": [
-                "library",
-                "php"
+                "ZendFramework",
+                "escaper",
+                "zf"
             ],
-            "support": {
-                "issues": "https://github.com/deniskoronets/php-array-table/issues",
-                "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
-            },
-            "time": "2023-02-10T10:13:42+00:00"
+            "time": "2018-04-25T15:48:53+00:00"
         },
         {
-            "name": "drupal/upgrade_status",
-            "version": "4.3.7",
+            "name": "zendframework/zend-feed",
+            "version": "2.12.0",
             "source": {
                 "type": "git",
-                "url": "https://git.drupalcode.org/project/upgrade_status.git",
-                "reference": "4.3.7"
+                "url": "https://github.com/zendframework/zend-feed.git",
+                "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.7.zip",
-                "reference": "4.3.7",
-                "shasum": "062d43be89caf5f4b2a463fe9bd35ab155ad714d"
-            },
-            "require": {
-                "dekor/php-array-table": "^2.0",
-                "drupal/core": "^9 || ^10 || ^11",
-                "mglaman/phpstan-drupal": "^1.2.11",
-                "nikic/php-parser": "^4.0.0|^5.0.0",
-                "phpstan/phpstan-deprecation-rules": "^1.0.0",
-                "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
-                "webflo/drupal-finder": "^1.2"
-            },
-            "require-dev": {
-                "drush/drush": "^11|^12|^13"
-            },
-            "type": "drupal-module",
-            "extra": {
-                "drupal": {
-                    "version": "4.3.7",
-                    "datestamp": "1746203409",
-                    "security-coverage": {
-                        "status": "covered",
-                        "message": "Covered by Drupal's security advisory policy"
-                    }
-                },
-                "drush": {
-                    "services": {
-                        "drush.services.yml": "^9 || ^10"
-                    }
-                }
-            },
-            "notification-url": "https://packages.drupal.org/8/downloads",
-            "license": [
-                "GPL-2.0-or-later"
-            ],
-            "authors": [
-                {
-                    "name": "gábor hojtsy",
-                    "homepage": "https://www.drupal.org/user/4166"
-                }
-            ],
-            "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
-            "homepage": "http://drupal.org/project/upgrade_status",
-            "support": {
-                "source": "https://git.drupalcode.org/project/upgrade_status"
-            }
-        },
-        {
-            "name": "mglaman/phpstan-drupal",
-            "version": "1.3.7",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/mglaman/phpstan-drupal.git",
-                "reference": "91cb3860d816316dd98503ef258bc386f5fc22b7"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/91cb3860d816316dd98503ef258bc386f5fc22b7",
-                "reference": "91cb3860d816316dd98503ef258bc386f5fc22b7",
+                "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
+                "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
                 "shasum": ""
             },
             "require": {
-                "php": "^8.1",
-                "phpstan/phpstan": "^1.12",
-                "phpstan/phpstan-deprecation-rules": "^1.1.4",
-                "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
-                "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
-                "webflo/drupal-finder": "^1.3.1"
+                "ext-dom": "*",
+                "ext-libxml": "*",
+                "php": "^5.6 || ^7.0",
+                "zendframework/zend-escaper": "^2.5.2",
+                "zendframework/zend-stdlib": "^3.2.1"
             },
             "require-dev": {
-                "behat/mink": "^1.8",
-                "composer/installers": "^1.9",
-                "drupal/core-recommended": "^10",
-                "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
-                "phpstan/extension-installer": "^1.1",
-                "phpstan/phpstan-strict-rules": "^1.0",
-                "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
-                "slevomat/coding-standard": "^7.1",
-                "squizlabs/php_codesniffer": "^3.3",
-                "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
+                "phpunit/phpunit": "^5.7.23 || ^6.4.3",
+                "psr/http-message": "^1.0.1",
+                "zendframework/zend-cache": "^2.7.2",
+                "zendframework/zend-coding-standard": "~1.0.0",
+                "zendframework/zend-db": "^2.8.2",
+                "zendframework/zend-http": "^2.7",
+                "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
+                "zendframework/zend-validator": "^2.10.1"
             },
             "suggest": {
-                "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
-                "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
-                "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
+                "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
+                "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
+                "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
+                "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
+                "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
+                "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
             },
-            "type": "phpstan-extension",
+            "type": "library",
             "extra": {
-                "phpstan": {
-                    "includes": [
-                        "extension.neon",
-                        "rules.neon"
-                    ]
-                },
                 "branch-alias": {
-                    "dev-main": "1.0-dev"
-                },
-                "installer-paths": {
-                    "tests/fixtures/drupal/core": [
-                        "type:drupal-core"
-                    ],
-                    "tests/fixtures/drupal/libraries/{$name}": [
-                        "type:drupal-library"
-                    ],
-                    "tests/fixtures/drupal/themes/contrib/{$name}": [
-                        "type:drupal-theme"
-                    ],
-                    "tests/fixtures/drupal/modules/contrib/{$name}": [
-                        "type:drupal-module"
-                    ],
-                    "tests/fixtures/drupal/profiles/contrib/{$name}": [
-                        "type:drupal-profile"
-                    ]
+                    "dev-master": "2.12.x-dev",
+                    "dev-develop": "2.13.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "mglaman\\PHPStanDrupal\\": "src/"
+                    "Zend\\Feed\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "MIT"
+                "BSD-3-Clause"
             ],
-            "authors": [
-                {
-                    "name": "Matt Glaman",
-                    "email": "nmd.matt@gmail.com"
-                }
-            ],
-            "description": "Drupal extension and rules for PHPStan",
-            "support": {
-                "issues": "https://github.com/mglaman/phpstan-drupal/issues",
-                "source": "https://github.com/mglaman/phpstan-drupal/tree/1.3.7"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/mglaman",
-                    "type": "github"
-                },
-                {
-                    "url": "https://opencollective.com/phpstan-drupal",
-                    "type": "open_collective"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2025-04-15T16:10:17+00:00"
-        },
-        {
-            "name": "phpstan/phpstan",
-            "version": "1.12.25",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/phpstan/phpstan.git",
-                "reference": "e310849a19e02b8bfcbb63147f495d8f872dd96f"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e310849a19e02b8bfcbb63147f495d8f872dd96f",
-                "reference": "e310849a19e02b8bfcbb63147f495d8f872dd96f",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.2|^8.0"
-            },
-            "conflict": {
-                "phpstan/phpstan-shim": "*"
-            },
-            "bin": [
-                "phpstan",
-                "phpstan.phar"
-            ],
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "bootstrap.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "description": "PHPStan - PHP Static Analysis Tool",
+            "description": "provides functionality for consuming RSS and Atom feeds",
             "keywords": [
-                "dev",
-                "static analysis"
+                "ZendFramework",
+                "feed",
+                "zf"
             ],
-            "support": {
-                "docs": "https://phpstan.org/user-guide/getting-started",
-                "forum": "https://github.com/phpstan/phpstan/discussions",
-                "issues": "https://github.com/phpstan/phpstan/issues",
-                "security": "https://github.com/phpstan/phpstan/security/policy",
-                "source": "https://github.com/phpstan/phpstan-src"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/ondrejmirtes",
-                    "type": "github"
-                },
-                {
-                    "url": "https://github.com/phpstan",
-                    "type": "github"
-                }
-            ],
-            "time": "2025-04-27T12:20:45+00:00"
+            "time": "2019-03-05T20:08:49+00:00"
         },
         {
-            "name": "phpstan/phpstan-deprecation-rules",
-            "version": "1.2.1",
+            "name": "zendframework/zend-stdlib",
+            "version": "3.2.1",
             "source": {
                 "type": "git",
-                "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
-                "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
+                "url": "https://github.com/zendframework/zend-stdlib.git",
+                "reference": "66536006722aff9e62d1b331025089b7ec71c065"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
-                "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
+                "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
+                "reference": "66536006722aff9e62d1b331025089b7ec71c065",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.2 || ^8.0",
-                "phpstan/phpstan": "^1.12"
+                "php": "^5.6 || ^7.0"
             },
             "require-dev": {
-                "php-parallel-lint/php-parallel-lint": "^1.2",
-                "phpstan/phpstan-phpunit": "^1.0",
-                "phpunit/phpunit": "^9.5"
+                "phpbench/phpbench": "^0.13",
+                "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
+                "zendframework/zend-coding-standard": "~1.0.0"
             },
-            "type": "phpstan-extension",
+            "type": "library",
             "extra": {
-                "phpstan": {
-                    "includes": [
-                        "rules.neon"
-                    ]
+                "branch-alias": {
+                    "dev-master": "3.2.x-dev",
+                    "dev-develop": "3.3.x-dev"
                 }
             },
             "autoload": {
                 "psr-4": {
-                    "PHPStan\\": "src/"
+                    "Zend\\Stdlib\\": "src/"
                 }
             },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
-                "MIT"
+                "BSD-3-Clause"
             ],
-            "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/1.2.1"
-            },
-            "time": "2024-09-11T15:52:35+00:00"
-        },
-        {
-            "name": "symfony/config",
-            "version": "v6.4.14",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/config.git",
-                "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/config/zipball/4e55e7e4ffddd343671ea972216d4509f46c22ef",
-                "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/filesystem": "^5.4|^6.0|^7.0",
-                "symfony/polyfill-ctype": "~1.8"
-            },
-            "conflict": {
-                "symfony/finder": "<5.4",
-                "symfony/service-contracts": "<2.5"
-            },
-            "require-dev": {
-                "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
-                "symfony/finder": "^5.4|^6.0|^7.0",
-                "symfony/messenger": "^5.4|^6.0|^7.0",
-                "symfony/service-contracts": "^2.5|^3",
-                "symfony/yaml": "^5.4|^6.0|^7.0"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Component\\Config\\": ""
-                },
-                "exclude-from-classmap": [
-                    "/Tests/"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
+            "description": "SPL extensions, array utilities, error handlers, and more",
+            "keywords": [
+                "ZendFramework",
+                "stdlib",
+                "zf"
             ],
-            "authors": [
-                {
-                    "name": "Fabien Potencier",
-                    "email": "fabien@symfony.com"
-                },
-                {
-                    "name": "Symfony Community",
-                    "homepage": "https://symfony.com/contributors"
-                }
-            ],
-            "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
-            "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/config/tree/v6.4.14"
-            },
-            "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-11-04T11:33:53+00:00"
-        },
-        {
-            "name": "symfony/translation",
-            "version": "v6.4.21",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/translation.git",
-                "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
-                "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=8.1",
-                "symfony/deprecation-contracts": "^2.5|^3",
-                "symfony/polyfill-mbstring": "~1.0",
-                "symfony/translation-contracts": "^2.5|^3.0"
-            },
-            "conflict": {
-                "symfony/config": "<5.4",
-                "symfony/console": "<5.4",
-                "symfony/dependency-injection": "<5.4",
-                "symfony/http-client-contracts": "<2.5",
-                "symfony/http-kernel": "<5.4",
-                "symfony/service-contracts": "<2.5",
-                "symfony/twig-bundle": "<5.4",
-                "symfony/yaml": "<5.4"
-            },
-            "provide": {
-                "symfony/translation-implementation": "2.3|3.0"
-            },
-            "require-dev": {
-                "nikic/php-parser": "^4.18|^5.0",
-                "psr/log": "^1|^2|^3",
-                "symfony/config": "^5.4|^6.0|^7.0",
-                "symfony/console": "^5.4|^6.0|^7.0",
-                "symfony/dependency-injection": "^5.4|^6.0|^7.0",
-                "symfony/finder": "^5.4|^6.0|^7.0",
-                "symfony/http-client-contracts": "^2.5|^3.0",
-                "symfony/http-kernel": "^5.4|^6.0|^7.0",
-                "symfony/intl": "^5.4|^6.0|^7.0",
-                "symfony/polyfill-intl-icu": "^1.21",
-                "symfony/routing": "^5.4|^6.0|^7.0",
-                "symfony/service-contracts": "^2.5|^3",
-                "symfony/yaml": "^5.4|^6.0|^7.0"
-            },
-            "type": "library",
-            "autoload": {
-                "files": [
-                    "Resources/functions.php"
-                ],
-                "psr-4": {
-                    "Symfony\\Component\\Translation\\": ""
-                },
-                "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 to internationalize your application",
-            "homepage": "https://symfony.com",
-            "support": {
-                "source": "https://github.com/symfony/translation/tree/v6.4.21"
-            },
-            "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": "2025-04-07T19:02:30+00:00"
+            "time": "2018-08-28T21:34:05+00:00"
         }
     ],
+    "packages-dev": [],
     "aliases": [
         {
-            "package": "drupal/facets",
-            "version": "dev-3.0.x",
-            "alias": "2.0.x-dev",
-            "alias_normalized": "2.0.9999999.9999999-dev"
+            "alias": "1.x-dev",
+            "alias_normalized": "1.9999999.9999999.9999999-dev",
+            "version": "dev-8.x-1.x",
+            "package": "drupal/drutopia_collection"
         }
     ],
     "minimum-stability": "dev",
     "stability-flags": {
-        "drupal/ckeditor_iframe": 10,
-        "drupal/drutopia_collection": 20,
-        "drupal/drutopia_core": 20,
-        "drupal/drutopia_organization": 20,
-        "drupal/drutopia_site": 20,
-        "drupal/empty_page": 20,
-        "drupal/facets": 20,
-        "drupal/givebutter": 20,
-        "drupal/menu_link_config": 15,
-        "drupal/migration_helpers": 20,
-        "drupal/notfoundpassthrough": 20,
-        "drupal/octavia": 20,
-        "drupal/octavia_camouflage": 20,
-        "drupal/plausible": 10,
-        "drupal/rabbit_hole": 10,
-        "drupal/social_post_facebook": 20,
-        "drupal/social_post_twitter": 20,
-        "drupal/subpathauto": 5,
-        "drupal/tomselect": 20,
-        "drupal/workflow_buttons": 20,
-        "drutopia/drutopia": 20
+        "drupal/claro": 15,
+        "drupal/config_actions": 20,
+        "drupal/convert_bundles": 15,
+        "drupal/cshs": 10,
+        "drupal/drutopia_collection": 20
     },
     "prefer-stable": true,
     "prefer-lowest": false,
-    "platform": {},
-    "platform-dev": {},
-    "plugin-api-version": "2.6.0"
+    "platform": [],
+    "platform-dev": []
 }
diff --git a/config/sync/admin_toolbar.settings.yml b/config/sync/admin_toolbar.settings.yml
deleted file mode 100644
index 5965a31..0000000
--- a/config/sync/admin_toolbar.settings.yml
+++ /dev/null
@@ -1 +0,0 @@
-menu_depth: 4
diff --git a/config/sync/admin_toolbar_search.settings.yml b/config/sync/admin_toolbar_search.settings.yml
deleted file mode 100644
index 4ae9775..0000000
--- a/config/sync/admin_toolbar_search.settings.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
-  default_config_hash: AAmWcgwzGYbXfR6wfEfMyoi3r5QZwlpxvq5dHbupnJo
-display_menu_item: 0
diff --git a/config/sync/admin_toolbar_tools.settings.yml b/config/sync/admin_toolbar_tools.settings.yml
deleted file mode 100644
index 2f4de20..0000000
--- a/config/sync/admin_toolbar_tools.settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-max_bundle_number: 20
-hoverintent_functionality: true
diff --git a/config/sync/antibot.settings.yml b/config/sync/antibot.settings.yml
deleted file mode 100644
index 32970a3..0000000
--- a/config/sync/antibot.settings.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-_core:
-  default_config_hash: 7QwhifH5gAzkdFMMDFV6XQRrcx4PAvtROZO8rs19nTo
-form_ids:
-  - 'comment_*'
-  - user_login_form
-  - user_pass
-  - user_register_form
-  - 'contact_message_*'
-show_form_ids: false
diff --git a/config/sync/automated_cron.settings.yml b/config/sync/automated_cron.settings.yml
index 3fc5821..2418a00 100644
--- a/config/sync/automated_cron.settings.yml
+++ b/config/sync/automated_cron.settings.yml
@@ -1,3 +1,3 @@
+interval: 10800
 _core:
   default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
-interval: 10800
diff --git a/config/sync/autosave_form.messages.yml b/config/sync/autosave_form.messages.yml
deleted file mode 100644
index 4b81262..0000000
--- a/config/sync/autosave_form.messages.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
-  default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg
-entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.'
diff --git a/config/sync/autosave_form.settings.yml b/config/sync/autosave_form.settings.yml
deleted file mode 100644
index 9c6abe9..0000000
--- a/config/sync/autosave_form.settings.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-_core:
-  default_config_hash: NX6_WyjygzZfQY-9SZq6_5fmh_KUK7L0XlOqaAXkRCQ
-langcode: en
-interval: 60000
-only_on_form_change: false
-active_on:
-  content_entity_forms: true
-  config_entity_forms: false
-notification:
-  active: true
-  message: 'Saving draft...'
-  delay: 1000
-allowed_content_entity_types: {  }
-allowed_new: true
diff --git a/config/sync/block.block.articletopics.yml b/config/sync/block.block.articletopics.yml
index 97274c9..b9f3d42 100644
--- a/config/sync/block.block.articletopics.yml
+++ b/config/sync/block.block.articletopics.yml
@@ -18,12 +18,12 @@ plugin: 'facet_block:article_topics'
 settings:
   id: 'facet_block:article_topics'
   label: 'Article Topics'
-  label_display: visible
   provider: facets
+  label_display: visible
   block_id: articletopics
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.articletype.yml b/config/sync/block.block.articletype.yml
index 48bb776..d49b797 100644
--- a/config/sync/block.block.articletype.yml
+++ b/config/sync/block.block.articletype.yml
@@ -18,12 +18,12 @@ plugin: 'facet_block:article_type'
 settings:
   id: 'facet_block:article_type'
   label: 'Article Type'
-  label_display: visible
   provider: facets
+  label_display: visible
   block_id: articletype
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.bulma_account_menu.yml b/config/sync/block.block.bulma_account_menu.yml
index e7d2035..a800a7f 100644
--- a/config/sync/block.block.bulma_account_menu.yml
+++ b/config/sync/block.block.bulma_account_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:account'
 settings:
   id: 'system_menu_block:account'
   label: 'User account menu'
-  label_display: '1'
   provider: system
+  label_display: '1'
   level: 1
   depth: 1
   expand_all_items: false
diff --git a/config/sync/block.block.bulma_branding.yml b/config/sync/block.block.bulma_branding.yml
index 6ee2e65..0a6c52e 100644
--- a/config/sync/block.block.bulma_branding.yml
+++ b/config/sync/block.block.bulma_branding.yml
@@ -17,8 +17,8 @@ plugin: system_branding_block
 settings:
   id: system_branding_block
   label: 'Site branding'
-  label_display: '0'
   provider: system
+  label_display: '0'
   use_site_logo: true
   use_site_name: true
   use_site_slogan: true
diff --git a/config/sync/block.block.bulma_content.yml b/config/sync/block.block.bulma_content.yml
index ef6b489..94b911e 100644
--- a/config/sync/block.block.bulma_content.yml
+++ b/config/sync/block.block.bulma_content.yml
@@ -17,6 +17,6 @@ plugin: system_main_block
 settings:
   id: system_main_block
   label: 'Main page content'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.bulma_help.yml b/config/sync/block.block.bulma_help.yml
index ac7619f..7dd082f 100644
--- a/config/sync/block.block.bulma_help.yml
+++ b/config/sync/block.block.bulma_help.yml
@@ -17,6 +17,6 @@ plugin: help_block
 settings:
   id: help_block
   label: Help
-  label_display: '0'
   provider: help
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.bulma_local_tasks.yml b/config/sync/block.block.bulma_local_tasks.yml
index 9e33624..8273603 100644
--- a/config/sync/block.block.bulma_local_tasks.yml
+++ b/config/sync/block.block.bulma_local_tasks.yml
@@ -15,8 +15,8 @@ plugin: local_tasks_block
 settings:
   id: local_tasks_block
   label: Tabs
-  label_display: '0'
   provider: core
+  label_display: '0'
   primary: true
   secondary: true
 visibility: {  }
diff --git a/config/sync/block.block.bulma_main_menu.yml b/config/sync/block.block.bulma_main_menu.yml
index d8a8321..663f4c2 100644
--- a/config/sync/block.block.bulma_main_menu.yml
+++ b/config/sync/block.block.bulma_main_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:main'
 settings:
   id: 'system_menu_block:main'
   label: 'Main navigation'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 1
   expand_all_items: false
diff --git a/config/sync/block.block.bulma_messages.yml b/config/sync/block.block.bulma_messages.yml
index df215e5..fb6b3dd 100644
--- a/config/sync/block.block.bulma_messages.yml
+++ b/config/sync/block.block.bulma_messages.yml
@@ -17,6 +17,6 @@ plugin: system_messages_block
 settings:
   id: system_messages_block
   label: 'Status messages'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.bulma_page_title.yml b/config/sync/block.block.bulma_page_title.yml
index 583cbd2..c518a01 100644
--- a/config/sync/block.block.bulma_page_title.yml
+++ b/config/sync/block.block.bulma_page_title.yml
@@ -15,6 +15,6 @@ plugin: page_title_block
 settings:
   id: page_title_block
   label: 'Page title'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.bulma_powered.yml b/config/sync/block.block.bulma_powered.yml
index e30bc8b..48f2154 100644
--- a/config/sync/block.block.bulma_powered.yml
+++ b/config/sync/block.block.bulma_powered.yml
@@ -17,6 +17,6 @@ plugin: system_powered_by_block
 settings:
   id: system_powered_by_block
   label: 'Powered by Drupal'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.bulma_tools.yml b/config/sync/block.block.bulma_tools.yml
index 796acf7..9ddd082 100644
--- a/config/sync/block.block.bulma_tools.yml
+++ b/config/sync/block.block.bulma_tools.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:tools'
 settings:
   id: 'system_menu_block:tools'
   label: Tools
-  label_display: visible
   provider: system
+  label_display: visible
   level: 1
   depth: 0
   expand_all_items: false
diff --git a/config/sync/block.block.claro_breadcrumbs.yml b/config/sync/block.block.claro_breadcrumbs.yml
index 0f63673..5032243 100644
--- a/config/sync/block.block.claro_breadcrumbs.yml
+++ b/config/sync/block.block.claro_breadcrumbs.yml
@@ -17,6 +17,6 @@ plugin: system_breadcrumb_block
 settings:
   id: system_breadcrumb_block
   label: Breadcrumbs
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.claro_content.yml b/config/sync/block.block.claro_content.yml
index 32b7106..bc31527 100644
--- a/config/sync/block.block.claro_content.yml
+++ b/config/sync/block.block.claro_content.yml
@@ -17,6 +17,6 @@ plugin: system_main_block
 settings:
   id: system_main_block
   label: 'Main page content'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.claro_help.yml b/config/sync/block.block.claro_help.yml
index c05716a..3317e4f 100644
--- a/config/sync/block.block.claro_help.yml
+++ b/config/sync/block.block.claro_help.yml
@@ -17,6 +17,6 @@ plugin: help_block
 settings:
   id: help_block
   label: Help
-  label_display: '0'
   provider: help
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.claro_local_actions.yml b/config/sync/block.block.claro_local_actions.yml
index 024aa41..9956e99 100644
--- a/config/sync/block.block.claro_local_actions.yml
+++ b/config/sync/block.block.claro_local_actions.yml
@@ -15,6 +15,6 @@ plugin: local_actions_block
 settings:
   id: local_actions_block
   label: 'Primary admin actions'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.claro_messages.yml b/config/sync/block.block.claro_messages.yml
index cf12124..1c0e2db 100644
--- a/config/sync/block.block.claro_messages.yml
+++ b/config/sync/block.block.claro_messages.yml
@@ -17,6 +17,6 @@ plugin: system_messages_block
 settings:
   id: system_messages_block
   label: 'Status messages'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.claro_page_title.yml b/config/sync/block.block.claro_page_title.yml
index b6a4210..9ec79ab 100644
--- a/config/sync/block.block.claro_page_title.yml
+++ b/config/sync/block.block.claro_page_title.yml
@@ -15,6 +15,6 @@ plugin: page_title_block
 settings:
   id: page_title_block
   label: 'Page title'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.claro_primary_local_tasks.yml b/config/sync/block.block.claro_primary_local_tasks.yml
index 01a010b..7288085 100644
--- a/config/sync/block.block.claro_primary_local_tasks.yml
+++ b/config/sync/block.block.claro_primary_local_tasks.yml
@@ -15,8 +15,8 @@ plugin: local_tasks_block
 settings:
   id: local_tasks_block
   label: 'Primary tabs'
-  label_display: '0'
   provider: core
+  label_display: '0'
   primary: true
   secondary: false
 visibility: {  }
diff --git a/config/sync/block.block.claro_secondary_local_tasks.yml b/config/sync/block.block.claro_secondary_local_tasks.yml
index 8dd29f8..ef71d5e 100644
--- a/config/sync/block.block.claro_secondary_local_tasks.yml
+++ b/config/sync/block.block.claro_secondary_local_tasks.yml
@@ -15,8 +15,8 @@ plugin: local_tasks_block
 settings:
   id: local_tasks_block
   label: 'Secondary tabs'
-  label_display: '0'
   provider: core
+  label_display: '0'
   primary: false
   secondary: true
 visibility: {  }
diff --git a/config/sync/block.block.donatelink.yml b/config/sync/block.block.donatelink.yml
deleted file mode 100644
index 4c16676..0000000
--- a/config/sync/block.block.donatelink.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: e236c061-f0f8-4620-b069-cc4f7713f364
-langcode: en
-status: true
-dependencies:
-  content:
-    - 'block_content:slide:385d1256-b634-44c5-85cb-0d08a6da226b'
-  module:
-    - block_content
-    - block_visibility_groups
-  theme:
-    - geofresco
-id: donatelink
-theme: geofresco
-region: footer_notice
-weight: 0
-provider: null
-plugin: 'block_content:385d1256-b634-44c5-85cb-0d08a6da226b'
-settings:
-  id: 'block_content:385d1256-b634-44c5-85cb-0d08a6da226b'
-  label: 'Donate link'
-  label_display: '0'
-  provider: block_content
-  status: true
-  info: ''
-  view_mode: default
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
diff --git a/config/sync/block.block.exposedformsearchpage_1.yml b/config/sync/block.block.exposedformsearchpage_1.yml
index 6117e9c..e43b086 100644
--- a/config/sync/block.block.exposedformsearchpage_1.yml
+++ b/config/sync/block.block.exposedformsearchpage_1.yml
@@ -5,14 +5,10 @@ dependencies:
   config:
     - views.view.search
   module:
-    - block_class
     - block_visibility_groups
     - views
   theme:
     - geofresco
-third_party_settings:
-  block_class:
-    classes: is-hidden-mobile
 id: exposedformsearchpage_1
 theme: geofresco
 region: header_search
@@ -22,12 +18,12 @@ plugin: 'views_exposed_filter_block:search-page_1'
 settings:
   id: 'views_exposed_filter_block:search-page_1'
   label: ''
-  label_display: '0'
   provider: views
+  label_display: '0'
   views_label: ''
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.footer_about_us.yml b/config/sync/block.block.footer_about_us.yml
index 045308e..e238ae7 100644
--- a/config/sync/block.block.footer_about_us.yml
+++ b/config/sync/block.block.footer_about_us.yml
@@ -20,20 +20,16 @@ plugin: 'menu_block:main'
 settings:
   id: 'menu_block:main'
   label: 'About Us'
-  label_display: visible
   provider: menu_block
-  follow: false
-  follow_parent: child
-  label_link: false
-  label_type: block
+  label_display: visible
   level: 1
   depth: 0
-  expand_all_items: false
+  expand: 0
   parent: 'main:menu_link_content:33435872-bdbe-4833-9477-c057c2c33359'
   suggestion: main
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.footer_contact_info.yml b/config/sync/block.block.footer_contact_info.yml
index 125b8b6..cd5e800 100644
--- a/config/sync/block.block.footer_contact_info.yml
+++ b/config/sync/block.block.footer_contact_info.yml
@@ -17,8 +17,8 @@ plugin: 'block_content:ab794f80-2d8f-4254-bda4-6554074ab46c'
 settings:
   id: 'block_content:ab794f80-2d8f-4254-bda4-6554074ab46c'
   label: 'Footer contact information'
-  label_display: '0'
   provider: block_content
+  label_display: '0'
   status: true
   info: ''
   view_mode: full
@@ -26,5 +26,5 @@ visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.footer_copyleft.yml b/config/sync/block.block.footer_copyleft.yml
index 435c016..68960c3 100644
--- a/config/sync/block.block.footer_copyleft.yml
+++ b/config/sync/block.block.footer_copyleft.yml
@@ -17,8 +17,8 @@ plugin: 'block_content:5eeea524-f31d-4a75-92aa-8f3d92925a9f'
 settings:
   id: 'block_content:5eeea524-f31d-4a75-92aa-8f3d92925a9f'
   label: 'Footer copyleft'
-  label_display: '0'
   provider: block_content
+  label_display: '0'
   status: true
   info: ''
   view_mode: full
@@ -26,5 +26,5 @@ visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.footer_get_involved.yml b/config/sync/block.block.footer_get_involved.yml
index c341dc6..7dbd86d 100644
--- a/config/sync/block.block.footer_get_involved.yml
+++ b/config/sync/block.block.footer_get_involved.yml
@@ -20,20 +20,16 @@ plugin: 'menu_block:main'
 settings:
   id: 'menu_block:main'
   label: 'Get Involved'
-  label_display: visible
   provider: menu_block
-  follow: false
-  follow_parent: child
-  label_link: false
-  label_type: block
+  label_display: visible
   level: 1
   depth: 0
-  expand_all_items: false
+  expand: 0
   parent: 'main:menu_link_content:f1eaa438-620d-418b-acd3-ad00dab9c635'
   suggestion: main
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.footer_our_work.yml b/config/sync/block.block.footer_our_work.yml
index 0ab70af..67c5cc5 100644
--- a/config/sync/block.block.footer_our_work.yml
+++ b/config/sync/block.block.footer_our_work.yml
@@ -20,20 +20,16 @@ plugin: 'menu_block:main'
 settings:
   id: 'menu_block:main'
   label: 'Our Work'
-  label_display: visible
   provider: menu_block
-  follow: false
-  follow_parent: child
-  label_link: false
-  label_type: block
+  label_display: visible
   level: 1
   depth: 0
-  expand_all_items: false
+  expand: 0
   parent: 'main:menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd'
   suggestion: main
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.geofresco_account_menu.yml b/config/sync/block.block.geofresco_account_menu.yml
index 72b5a0c..3f50741 100644
--- a/config/sync/block.block.geofresco_account_menu.yml
+++ b/config/sync/block.block.geofresco_account_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:account'
 settings:
   id: 'system_menu_block:account'
   label: 'User account menu'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 1
   expand_all_items: false
diff --git a/config/sync/block.block.geofresco_branding.yml b/config/sync/block.block.geofresco_branding.yml
index c614e5b..bab358e 100644
--- a/config/sync/block.block.geofresco_branding.yml
+++ b/config/sync/block.block.geofresco_branding.yml
@@ -17,8 +17,8 @@ plugin: system_branding_block
 settings:
   id: system_branding_block
   label: 'Site branding'
-  label_display: '0'
   provider: system
+  label_display: '0'
   use_site_logo: true
   use_site_name: true
   use_site_slogan: true
diff --git a/config/sync/block.block.geofresco_content.yml b/config/sync/block.block.geofresco_content.yml
index c110b30..5e63114 100644
--- a/config/sync/block.block.geofresco_content.yml
+++ b/config/sync/block.block.geofresco_content.yml
@@ -11,12 +11,12 @@ _core:
 id: geofresco_content
 theme: geofresco
 region: content
-weight: -5
+weight: 0
 provider: null
 plugin: system_main_block
 settings:
   id: system_main_block
   label: 'Main page content'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.geofresco_footer_menu.yml b/config/sync/block.block.geofresco_footer_menu.yml
index 8398f25..9161284 100644
--- a/config/sync/block.block.geofresco_footer_menu.yml
+++ b/config/sync/block.block.geofresco_footer_menu.yml
@@ -5,7 +5,6 @@ dependencies:
   config:
     - system.menu.footer
   module:
-    - block_visibility_groups
     - system
   theme:
     - geofresco
@@ -20,13 +19,9 @@ plugin: 'system_menu_block:footer'
 settings:
   id: 'system_menu_block:footer'
   label: 'Footer menu'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 0
   expand_all_items: false
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    block_visibility_group: ''
+visibility: {  }
diff --git a/config/sync/block.block.geofresco_help.yml b/config/sync/block.block.geofresco_help.yml
index 067c227..735d8f4 100644
--- a/config/sync/block.block.geofresco_help.yml
+++ b/config/sync/block.block.geofresco_help.yml
@@ -17,6 +17,6 @@ plugin: help_block
 settings:
   id: help_block
   label: Help
-  label_display: '0'
   provider: help
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.geofresco_local_actions.yml b/config/sync/block.block.geofresco_local_actions.yml
index 3615188..e6b6a34 100644
--- a/config/sync/block.block.geofresco_local_actions.yml
+++ b/config/sync/block.block.geofresco_local_actions.yml
@@ -9,12 +9,12 @@ _core:
 id: geofresco_local_actions
 theme: geofresco
 region: content
-weight: -6
+weight: -20
 provider: null
 plugin: local_actions_block
 settings:
   id: local_actions_block
   label: 'Primary admin actions'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.geofresco_local_tasks.yml b/config/sync/block.block.geofresco_local_tasks.yml
index e4c67d3..12b22b5 100644
--- a/config/sync/block.block.geofresco_local_tasks.yml
+++ b/config/sync/block.block.geofresco_local_tasks.yml
@@ -15,8 +15,8 @@ plugin: local_tasks_block
 settings:
   id: local_tasks_block
   label: Tabs
-  label_display: '0'
   provider: core
+  label_display: '0'
   primary: true
   secondary: true
 visibility: {  }
diff --git a/config/sync/block.block.geofresco_main_menu.yml b/config/sync/block.block.geofresco_main_menu.yml
index 14776de..5e3b48d 100644
--- a/config/sync/block.block.geofresco_main_menu.yml
+++ b/config/sync/block.block.geofresco_main_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:main'
 settings:
   id: 'system_menu_block:main'
   label: 'Main navigation'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 2
   expand_all_items: false
diff --git a/config/sync/block.block.geofresco_messages.yml b/config/sync/block.block.geofresco_messages.yml
index e397612..6d2f3f2 100644
--- a/config/sync/block.block.geofresco_messages.yml
+++ b/config/sync/block.block.geofresco_messages.yml
@@ -17,6 +17,6 @@ plugin: system_messages_block
 settings:
   id: system_messages_block
   label: 'Status messages'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.geofresco_page_title.yml b/config/sync/block.block.geofresco_page_title.yml
index 13cee8f..d2cc11d 100644
--- a/config/sync/block.block.geofresco_page_title.yml
+++ b/config/sync/block.block.geofresco_page_title.yml
@@ -2,13 +2,8 @@ uuid: aeb3ab6f-f30b-48d1-85ab-97a6dfde8e3a
 langcode: en
 status: true
 dependencies:
-  module:
-    - block_class
   theme:
     - geofresco
-third_party_settings:
-  block_class:
-    classes: column
 _core:
   default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM
 id: geofresco_page_title
@@ -20,6 +15,6 @@ plugin: page_title_block
 settings:
   id: page_title_block
   label: 'Page title'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml b/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml
index fe15bbb..cc0ebaa 100644
--- a/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml
+++ b/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml
@@ -18,13 +18,13 @@ plugin: 'views_block:comments_recent-block_1'
 settings:
   id: 'views_block:comments_recent-block_1'
   label: ''
-  label_display: visible
   provider: views
+  label_display: visible
   views_label: ''
-  items_per_page: '5'
+  items_per_page: none
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml b/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml
index 4808d15..54e36f1 100644
--- a/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml
+++ b/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml
@@ -18,13 +18,13 @@ plugin: 'views_block:content_recent-block_1'
 settings:
   id: 'views_block:content_recent-block_1'
   label: ''
-  label_display: visible
   provider: views
+  label_display: visible
   views_label: ''
   items_per_page: none
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.homepagehero.yml b/config/sync/block.block.homepagehero.yml
index d6c0ff8..5c41ed7 100644
--- a/config/sync/block.block.homepagehero.yml
+++ b/config/sync/block.block.homepagehero.yml
@@ -19,17 +19,17 @@ plugin: 'fixed_block_content:home_page_hero'
 settings:
   id: 'fixed_block_content:home_page_hero'
   label: 'Home page hero'
-  label_display: '0'
   provider: fixed_block_content
+  label_display: visible
   view_mode: default
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
   request_path:
     id: request_path
+    pages: '<front>'
     negate: false
     context_mapping: {  }
-    pages: '<front>'
diff --git a/config/sync/block.block.octavia_account_menu.yml b/config/sync/block.block.octavia_account_menu.yml
index 4cdd78c..1132376 100644
--- a/config/sync/block.block.octavia_account_menu.yml
+++ b/config/sync/block.block.octavia_account_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:account'
 settings:
   id: 'system_menu_block:account'
   label: 'User account menu'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 1
   expand_all_items: false
diff --git a/config/sync/block.block.octavia_branding.yml b/config/sync/block.block.octavia_branding.yml
index 3177d03..5f66121 100644
--- a/config/sync/block.block.octavia_branding.yml
+++ b/config/sync/block.block.octavia_branding.yml
@@ -17,8 +17,8 @@ plugin: system_branding_block
 settings:
   id: system_branding_block
   label: 'Site branding'
-  label_display: '0'
   provider: system
+  label_display: '0'
   use_site_logo: true
   use_site_name: true
   use_site_slogan: true
diff --git a/config/sync/block.block.octavia_content.yml b/config/sync/block.block.octavia_content.yml
index 6911da2..f30bc05 100644
--- a/config/sync/block.block.octavia_content.yml
+++ b/config/sync/block.block.octavia_content.yml
@@ -17,6 +17,6 @@ plugin: system_main_block
 settings:
   id: system_main_block
   label: 'Main page content'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.octavia_footer_menu.yml b/config/sync/block.block.octavia_footer_menu.yml
index 78a4048..092735b 100644
--- a/config/sync/block.block.octavia_footer_menu.yml
+++ b/config/sync/block.block.octavia_footer_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:footer'
 settings:
   id: 'system_menu_block:footer'
   label: 'Footer menu'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 0
   expand_all_items: false
diff --git a/config/sync/block.block.octavia_help.yml b/config/sync/block.block.octavia_help.yml
index bfc177e..0c1f6ce 100644
--- a/config/sync/block.block.octavia_help.yml
+++ b/config/sync/block.block.octavia_help.yml
@@ -17,6 +17,6 @@ plugin: help_block
 settings:
   id: help_block
   label: Help
-  label_display: '0'
   provider: help
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.octavia_local_actions.yml b/config/sync/block.block.octavia_local_actions.yml
index a575c29..4b72fae 100644
--- a/config/sync/block.block.octavia_local_actions.yml
+++ b/config/sync/block.block.octavia_local_actions.yml
@@ -15,6 +15,6 @@ plugin: local_actions_block
 settings:
   id: local_actions_block
   label: 'Primary admin actions'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.octavia_local_tasks.yml b/config/sync/block.block.octavia_local_tasks.yml
index 7a341ee..f273080 100644
--- a/config/sync/block.block.octavia_local_tasks.yml
+++ b/config/sync/block.block.octavia_local_tasks.yml
@@ -15,8 +15,8 @@ plugin: local_tasks_block
 settings:
   id: local_tasks_block
   label: Tabs
-  label_display: '0'
   provider: core
+  label_display: '0'
   primary: true
   secondary: true
 visibility: {  }
diff --git a/config/sync/block.block.octavia_main_menu.yml b/config/sync/block.block.octavia_main_menu.yml
index 9bc2d0c..3e1bdf4 100644
--- a/config/sync/block.block.octavia_main_menu.yml
+++ b/config/sync/block.block.octavia_main_menu.yml
@@ -19,8 +19,8 @@ plugin: 'system_menu_block:main'
 settings:
   id: 'system_menu_block:main'
   label: 'Main navigation'
-  label_display: '0'
   provider: system
+  label_display: '0'
   level: 1
   depth: 2
   expand_all_items: false
diff --git a/config/sync/block.block.octavia_messages.yml b/config/sync/block.block.octavia_messages.yml
index 71e2510..fc7dac2 100644
--- a/config/sync/block.block.octavia_messages.yml
+++ b/config/sync/block.block.octavia_messages.yml
@@ -17,6 +17,6 @@ plugin: system_messages_block
 settings:
   id: system_messages_block
   label: 'Status messages'
-  label_display: '0'
   provider: system
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.octavia_page_title.yml b/config/sync/block.block.octavia_page_title.yml
index a8cd587..dca93e7 100644
--- a/config/sync/block.block.octavia_page_title.yml
+++ b/config/sync/block.block.octavia_page_title.yml
@@ -15,6 +15,6 @@ plugin: page_title_block
 settings:
   id: page_title_block
   label: 'Page title'
-  label_display: '0'
   provider: core
+  label_display: '0'
 visibility: {  }
diff --git a/config/sync/block.block.seven_breadcrumbs.yml b/config/sync/block.block.seven_breadcrumbs.yml
new file mode 100644
index 0000000..c225db6
--- /dev/null
+++ b/config/sync/block.block.seven_breadcrumbs.yml
@@ -0,0 +1,22 @@
+uuid: 556ed494-c332-4fcf-b6b1-a4f985a8466b
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+_core:
+  default_config_hash: WWu2OQswgCztl9OeXjD1stexIEMZsSgPMYIdC-JHx9c
+id: seven_breadcrumbs
+theme: seven
+region: breadcrumb
+weight: 0
+provider: null
+plugin: system_breadcrumb_block
+settings:
+  id: system_breadcrumb_block
+  label: Breadcrumbs
+  provider: system
+  label_display: '0'
+visibility: {  }
diff --git a/config/sync/block.block.seven_content.yml b/config/sync/block.block.seven_content.yml
new file mode 100644
index 0000000..374e9cb
--- /dev/null
+++ b/config/sync/block.block.seven_content.yml
@@ -0,0 +1,22 @@
+uuid: 24269707-b61f-4072-8033-d17d3abb0523
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+_core:
+  default_config_hash: YRY68JWkaUiGeZlWMv1nzeIgDm0ZZwXYgpqUpLFzwAY
+id: seven_content
+theme: seven
+region: content
+weight: 0
+provider: null
+plugin: system_main_block
+settings:
+  id: system_main_block
+  label: 'Main page content'
+  provider: system
+  label_display: '0'
+visibility: {  }
diff --git a/config/sync/block.block.seven_help.yml b/config/sync/block.block.seven_help.yml
new file mode 100644
index 0000000..0fd0a00
--- /dev/null
+++ b/config/sync/block.block.seven_help.yml
@@ -0,0 +1,22 @@
+uuid: bf5e4d50-acbf-45af-96e4-a318c246904a
+langcode: en
+status: true
+dependencies:
+  module:
+    - help
+  theme:
+    - seven
+_core:
+  default_config_hash: NU5A_49mwLHfs5xFzMFrZ850w9pgUolxMS9NNF3vv4c
+id: seven_help
+theme: seven
+region: help
+weight: 0
+provider: null
+plugin: help_block
+settings:
+  id: help_block
+  label: Help
+  provider: help
+  label_display: '0'
+visibility: {  }
diff --git a/config/sync/block.block.seven_local_actions.yml b/config/sync/block.block.seven_local_actions.yml
new file mode 100644
index 0000000..323f6d6
--- /dev/null
+++ b/config/sync/block.block.seven_local_actions.yml
@@ -0,0 +1,20 @@
+uuid: f018e64e-0b86-4837-8db8-2ec94c878763
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: HHryZVJbeKi9WnuBGC8FOhBZmBnk2G1H6KxFuy-rC9A
+id: seven_local_actions
+theme: seven
+region: content
+weight: -10
+provider: null
+plugin: local_actions_block
+settings:
+  id: local_actions_block
+  label: 'Primary admin actions'
+  provider: core
+  label_display: '0'
+visibility: {  }
diff --git a/config/sync/block.block.seven_login.yml b/config/sync/block.block.seven_login.yml
new file mode 100644
index 0000000..f93fb70
--- /dev/null
+++ b/config/sync/block.block.seven_login.yml
@@ -0,0 +1,22 @@
+uuid: 3b9bb00c-49d4-460a-a084-f2eb228b4ac6
+langcode: en
+status: true
+dependencies:
+  module:
+    - user
+  theme:
+    - seven
+_core:
+  default_config_hash: IItlF4SKHgxduIysVQdvirDJ_v3HGuAviOkidAOJYRE
+id: seven_login
+theme: seven
+region: content
+weight: 10
+provider: null
+plugin: user_login_block
+settings:
+  id: user_login_block
+  label: 'User login'
+  provider: user
+  label_display: visible
+visibility: {  }
diff --git a/config/sync/block.block.seven_messages.yml b/config/sync/block.block.seven_messages.yml
new file mode 100644
index 0000000..d5f187c
--- /dev/null
+++ b/config/sync/block.block.seven_messages.yml
@@ -0,0 +1,22 @@
+uuid: 694d2bb8-1dfc-4297-9c25-c9f7bb558c0e
+langcode: en
+status: true
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+_core:
+  default_config_hash: XJqWwLt1LDCnazcEN6QkJmCLjk4R0__-8s0OO9xeNjg
+id: seven_messages
+theme: seven
+region: highlighted
+weight: 0
+provider: null
+plugin: system_messages_block
+settings:
+  id: system_messages_block
+  label: 'Status messages'
+  provider: system
+  label_display: '0'
+visibility: {  }
diff --git a/config/sync/block.block.seven_page_title.yml b/config/sync/block.block.seven_page_title.yml
new file mode 100644
index 0000000..eeaf150
--- /dev/null
+++ b/config/sync/block.block.seven_page_title.yml
@@ -0,0 +1,20 @@
+uuid: 822971cb-9b83-4f6e-bf40-30d095be48b2
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: ZSpc3IoSaLd0PkB02nxjVPBMztIdsTdHek9SiGaqZ_c
+id: seven_page_title
+theme: seven
+region: header
+weight: -30
+provider: null
+plugin: page_title_block
+settings:
+  id: page_title_block
+  label: 'Page title'
+  provider: core
+  label_display: '0'
+visibility: {  }
diff --git a/config/sync/block.block.seven_primary_local_tasks.yml b/config/sync/block.block.seven_primary_local_tasks.yml
new file mode 100644
index 0000000..cfa16fc
--- /dev/null
+++ b/config/sync/block.block.seven_primary_local_tasks.yml
@@ -0,0 +1,22 @@
+uuid: 0c817cde-31b9-4dbd-b9be-02c42d1b7329
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: ddy1OsBbWxjwEI8VL1viD4I69qcLHOkul4BxbTqLBTs
+id: seven_primary_local_tasks
+theme: seven
+region: header
+weight: 0
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: 'Primary tabs'
+  provider: core
+  label_display: '0'
+  primary: true
+  secondary: false
+visibility: {  }
diff --git a/config/sync/block.block.seven_secondary_local_tasks.yml b/config/sync/block.block.seven_secondary_local_tasks.yml
new file mode 100644
index 0000000..8ce6739
--- /dev/null
+++ b/config/sync/block.block.seven_secondary_local_tasks.yml
@@ -0,0 +1,22 @@
+uuid: 31ea76a8-edcf-4191-ba4e-a89066418909
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+_core:
+  default_config_hash: QeZBeCilQfeET3GeW6ZtJkEiwROADTZktFgKWwPieD4
+id: seven_secondary_local_tasks
+theme: seven
+region: pre_content
+weight: 0
+provider: null
+plugin: local_tasks_block
+settings:
+  id: local_tasks_block
+  label: 'Secondary tabs'
+  provider: core
+  label_display: '0'
+  primary: false
+  secondary: true
+visibility: {  }
diff --git a/config/sync/block.block.syndicate.yml b/config/sync/block.block.syndicate.yml
deleted file mode 100644
index 19e3f5d..0000000
--- a/config/sync/block.block.syndicate.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: 4a62ed89-3157-46fd-a77e-7c8ee4e5a1e0
-langcode: en
-status: true
-dependencies:
-  module:
-    - block_visibility_groups
-    - node
-  theme:
-    - geofresco
-id: syndicate
-theme: geofresco
-region: footer_menus
-weight: 0
-provider: null
-plugin: node_syndicate_block
-settings:
-  id: node_syndicate_block
-  label: Syndicate
-  label_display: '0'
-  provider: node
-  block_count: 10
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
diff --git a/config/sync/block.block.views_block__comments_recent_block_1.yml b/config/sync/block.block.views_block__comments_recent_block_1.yml
index 10ff39f..2f9a304 100644
--- a/config/sync/block.block.views_block__comments_recent_block_1.yml
+++ b/config/sync/block.block.views_block__comments_recent_block_1.yml
@@ -18,13 +18,13 @@ plugin: 'views_block:comments_recent-block_1'
 settings:
   id: 'views_block:comments_recent-block_1'
   label: ''
-  label_display: visible
   provider: views
+  label_display: visible
   views_label: ''
   items_per_page: none
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.views_block__content_by_author_block_author.yml b/config/sync/block.block.views_block__content_by_author_block_author.yml
deleted file mode 100644
index 2e5fef5..0000000
--- a/config/sync/block.block.views_block__content_by_author_block_author.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-uuid: 451af5c3-b1a7-43a9-80ce-64629a3f38db
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.content_by_author
-  module:
-    - block_visibility_groups
-    - ctools
-    - views
-  theme:
-    - geofresco
-id: views_block__content_by_author_block_author
-theme: geofresco
-region: content
-weight: -4
-provider: null
-plugin: 'views_block:content_by_author-block_author'
-settings:
-  id: 'views_block:content_by_author-block_author'
-  label: ''
-  label_display: visible
-  provider: views
-  context_mapping: {  }
-  views_label: ''
-  items_per_page: '40'
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  'entity_bundle:node':
-    id: 'entity_bundle:node'
-    negate: false
-    context_mapping:
-      node: '@node.node_route_context:node'
-    bundles:
-      people: people
diff --git a/config/sync/block.block.views_block__content_recent_block_1.yml b/config/sync/block.block.views_block__content_recent_block_1.yml
index 2598674..85cfdca 100644
--- a/config/sync/block.block.views_block__content_recent_block_1.yml
+++ b/config/sync/block.block.views_block__content_recent_block_1.yml
@@ -18,13 +18,13 @@ plugin: 'views_block:content_recent-block_1'
 settings:
   id: 'views_block:content_recent-block_1'
   label: ''
-  label_display: visible
   provider: views
+  label_display: visible
   views_label: ''
   items_per_page: none
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
diff --git a/config/sync/block.block.views_block__home_page_views_block_articles.yml b/config/sync/block.block.views_block__home_page_views_block_articles.yml
deleted file mode 100644
index a50e383..0000000
--- a/config/sync/block.block.views_block__home_page_views_block_articles.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: f6120e1c-309a-4395-a7ef-4b5058e328aa
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.home_page_views
-  module:
-    - block_visibility_groups
-    - system
-    - views
-  theme:
-    - geofresco
-id: views_block__home_page_views_block_articles
-theme: geofresco
-region: content
-weight: -11
-provider: null
-plugin: 'views_block:home_page_views-block_articles'
-settings:
-  id: 'views_block:home_page_views-block_articles'
-  label: ''
-  label_display: visible
-  provider: views
-  views_label: ''
-  items_per_page: none
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  request_path:
-    id: request_path
-    negate: false
-    context_mapping: {  }
-    pages: '<front>'
diff --git a/config/sync/block.block.views_block__home_page_views_block_blogs.yml b/config/sync/block.block.views_block__home_page_views_block_blogs.yml
deleted file mode 100644
index 3d956ac..0000000
--- a/config/sync/block.block.views_block__home_page_views_block_blogs.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: 0d56df84-e499-4cdc-b987-99a668ba1557
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.home_page_views
-  module:
-    - block_visibility_groups
-    - system
-    - views
-  theme:
-    - geofresco
-id: views_block__home_page_views_block_blogs
-theme: geofresco
-region: content
-weight: -9
-provider: null
-plugin: 'views_block:home_page_views-block_blogs'
-settings:
-  id: 'views_block:home_page_views-block_blogs'
-  label: ''
-  label_display: visible
-  provider: views
-  views_label: ''
-  items_per_page: none
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  request_path:
-    id: request_path
-    negate: false
-    context_mapping: {  }
-    pages: '<front>'
diff --git a/config/sync/block.block.views_block__home_page_views_block_collections.yml b/config/sync/block.block.views_block__home_page_views_block_collections.yml
deleted file mode 100644
index 554f700..0000000
--- a/config/sync/block.block.views_block__home_page_views_block_collections.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: 88fd256e-0dee-4c74-8d20-0351bb6fe912
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.home_page_views
-  module:
-    - block_visibility_groups
-    - system
-    - views
-  theme:
-    - geofresco
-id: views_block__home_page_views_block_collections
-theme: geofresco
-region: content
-weight: -7
-provider: null
-plugin: 'views_block:home_page_views-block_collections'
-settings:
-  id: 'views_block:home_page_views-block_collections'
-  label: ''
-  label_display: visible
-  provider: views
-  views_label: ''
-  items_per_page: none
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  request_path:
-    id: request_path
-    negate: false
-    context_mapping: {  }
-    pages: '<front>'
diff --git a/config/sync/block.block.views_block__home_page_views_block_featured.yml b/config/sync/block.block.views_block__home_page_views_block_featured.yml
deleted file mode 100644
index 31730a5..0000000
--- a/config/sync/block.block.views_block__home_page_views_block_featured.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: 003eb8a5-597a-4ec9-9ad5-a50573ff103f
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.home_page_views
-  module:
-    - block_visibility_groups
-    - system
-    - views
-  theme:
-    - geofresco
-id: views_block__home_page_views_block_featured
-theme: geofresco
-region: content
-weight: -8
-provider: null
-plugin: 'views_block:home_page_views-block_featured'
-settings:
-  id: 'views_block:home_page_views-block_featured'
-  label: 'Featured articles'
-  label_display: visible
-  provider: views
-  views_label: 'Featured articles'
-  items_per_page: none
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  request_path:
-    id: request_path
-    negate: false
-    context_mapping: {  }
-    pages: '<front>'
diff --git a/config/sync/block.block.views_block__home_page_views_block_gleanings.yml b/config/sync/block.block.views_block__home_page_views_block_gleanings.yml
deleted file mode 100644
index 42751e2..0000000
--- a/config/sync/block.block.views_block__home_page_views_block_gleanings.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: 71576977-dc89-43ad-b748-5f30ddf3e0e1
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.home_page_views
-  module:
-    - block_visibility_groups
-    - system
-    - views
-  theme:
-    - geofresco
-id: views_block__home_page_views_block_gleanings
-theme: geofresco
-region: content
-weight: -10
-provider: null
-plugin: 'views_block:home_page_views-block_gleanings'
-settings:
-  id: 'views_block:home_page_views-block_gleanings'
-  label: ''
-  label_display: visible
-  provider: views
-  views_label: ''
-  items_per_page: none
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  request_path:
-    id: request_path
-    negate: false
-    context_mapping: {  }
-    pages: '<front>'
diff --git a/config/sync/block.block.views_block__related_content_block_related_content.yml b/config/sync/block.block.views_block__related_content_block_related_content.yml
index 548ae1d..9fc2409 100644
--- a/config/sync/block.block.views_block__related_content_block_related_content.yml
+++ b/config/sync/block.block.views_block__related_content_block_related_content.yml
@@ -21,22 +21,22 @@ plugin: 'views_block:related_content-block_related_content'
 settings:
   id: 'views_block:related_content-block_related_content'
   label: ''
-  label_display: visible
   provider: views
-  context_mapping: {  }
+  label_display: visible
   views_label: ''
   items_per_page: none
+  context_mapping: {  }
 visibility:
   condition_group:
     id: condition_group
     negate: false
-    context_mapping: {  }
     block_visibility_group: ''
+    context_mapping: {  }
   'entity_bundle:node':
     id: 'entity_bundle:node'
-    negate: true
-    context_mapping:
-      node: '@node.node_route_context:node'
     bundles:
       landing_page: landing_page
       people: people
+    negate: true
+    context_mapping:
+      node: '@node.node_route_context:node'
diff --git a/config/sync/block.block.views_block__related_content_block_related_content_2.yml b/config/sync/block.block.views_block__related_content_block_related_content_2.yml
deleted file mode 100644
index 32c119e..0000000
--- a/config/sync/block.block.views_block__related_content_block_related_content_2.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-uuid: 69eaf1b9-f9ed-44ab-a28c-a35091ac2595
-langcode: en
-status: true
-dependencies:
-  config:
-    - views.view.related_content
-  module:
-    - block_visibility_groups
-    - node
-    - views
-  theme:
-    - geofresco
-id: views_block__related_content_block_related_content_2
-theme: geofresco
-region: content_bottom
-weight: -12
-provider: null
-plugin: 'views_block:related_content-block_related_content'
-settings:
-  id: 'views_block:related_content-block_related_content'
-  label: ''
-  label_display: visible
-  provider: views
-  context_mapping: {  }
-  views_label: ''
-  items_per_page: none
-visibility:
-  condition_group:
-    id: condition_group
-    negate: false
-    context_mapping: {  }
-    block_visibility_group: ''
-  'entity_bundle:node':
-    id: 'entity_bundle:node'
-    negate: false
-    context_mapping:
-      node: '@node.node_route_context:node'
-    bundles:
-      article: article
-      blog: blog
-      collection: collection
-      gleaning: gleaning
diff --git a/config/sync/block_class.settings.yml b/config/sync/block_class.settings.yml
deleted file mode 100644
index 269925f..0000000
--- a/config/sync/block_class.settings.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-_core:
-  default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0
-maxlength_block_class_field: 255
-field_type: multiple_textfields
-default_case: lowercase
-block_classes_stored:
-  - is-hidden-mobile
-  - column
-enable_attributes: true
-enable_auto_complete: true
-qty_classes_per_block: 10
-items_per_page: 50
-enable_special_chars: false
-qty_attributes_per_block: 10
-enable_id_replacement: true
-weight_attributes: null
-weight_class: null
-weight_id: null
-filter_html_clean_css_identifier: ''
-maxlength_attributes: 255
-maxlength_id: 255
-attribute_keys_stored: '[]'
-attribute_value_stored: '[]'
-attributes_inline: '[]'
diff --git a/config/sync/block_content.type.basic.yml b/config/sync/block_content.type.basic.yml
new file mode 100644
index 0000000..323774d
--- /dev/null
+++ b/config/sync/block_content.type.basic.yml
@@ -0,0 +1,10 @@
+uuid: cf2666c1-8ee6-467c-b771-71f4d39492bf
+langcode: en
+status: true
+dependencies: {  }
+_core:
+  default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
+id: basic
+label: 'Basic block'
+revision: 0
+description: 'A basic block contains a title and a body.'
diff --git a/config/sync/block_content.type.slide.yml b/config/sync/block_content.type.slide.yml
index 29afbff..d1cfaf2 100644
--- a/config/sync/block_content.type.slide.yml
+++ b/config/sync/block_content.type.slide.yml
@@ -6,5 +6,5 @@ _core:
   default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw
 id: slide
 label: Slide
-revision: true
+revision: 1
 description: ''
diff --git a/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml
index e0c6834..c628d11 100644
--- a/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml
@@ -12,8 +12,8 @@ logic: and
 conditions:
   7ff8110c-3b7e-4b97-8def-4081a2590558:
     id: request_path
-    negate: false
-    uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558
-    context_mapping: {  }
     pages: /articles
+    negate: false
+    context_mapping: {  }
+    uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558
 allow_other_conditions: false
diff --git a/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml
index 82224f9..c8e7652 100644
--- a/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml
@@ -12,8 +12,8 @@ logic: and
 conditions:
   b3c1bb42-5349-4f54-abe9-590277c82bcc:
     id: request_path
-    negate: false
-    uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc
-    context_mapping: {  }
     pages: /blog
+    negate: false
+    context_mapping: {  }
+    uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc
 allow_other_conditions: false
diff --git a/config/sync/block_visibility_groups.block_visibility_group.search.yml b/config/sync/block_visibility_groups.block_visibility_group.search.yml
index 4ae0e84..e354fb9 100644
--- a/config/sync/block_visibility_groups.block_visibility_group.search.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.search.yml
@@ -12,8 +12,8 @@ logic: and
 conditions:
   f502a545-a711-401c-8e94-6e727993abb4:
     id: request_path
-    negate: false
-    uuid: f502a545-a711-401c-8e94-6e727993abb4
-    context_mapping: {  }
     pages: /search
+    negate: false
+    context_mapping: {  }
+    uuid: f502a545-a711-401c-8e94-6e727993abb4
 allow_other_conditions: false
diff --git a/config/sync/bulma.settings.yml b/config/sync/bulma.settings.yml
index b3fe700..8cc6e0a 100644
--- a/config/sync/bulma.settings.yml
+++ b/config/sync/bulma.settings.yml
@@ -1,5 +1,3 @@
-_core:
-  default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI
 general:
   block: 1
   icon: 1
@@ -27,7 +25,9 @@ table:
   narrow: 0
 cdn:
   bulma:
-    version: 0.9.1
+    version: 0.5.3
   bulmaswatch:
-    version: 0.8.1
+    version: 0.5.1
     theme: default
+_core:
+  default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI
diff --git a/config/sync/captcha.captcha_point.comment_comment_form.yml b/config/sync/captcha.captcha_point.comment_comment_form.yml
deleted file mode 100644
index 44eccb7..0000000
--- a/config/sync/captcha.captcha_point.comment_comment_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: 68c612df-4e72-4492-bdd8-049905aede18
-langcode: en
-status: true
-dependencies: {  }
-formId: comment_comment_form
-captchaType: riddler/Riddler
-label: comment_comment_form
diff --git a/config/sync/captcha.captcha_point.contact_message_feedback_form.yml b/config/sync/captcha.captcha_point.contact_message_feedback_form.yml
deleted file mode 100644
index 9a4bfff..0000000
--- a/config/sync/captcha.captcha_point.contact_message_feedback_form.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: bd58361f-7061-4dd2-9d6f-bbf0619943f7
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: MbTbUeeaumH8DjENUwT0-8uW9UuxyNHbF6jbKCLhYkk
-formId: contact_message_feedback_form
-captchaType: riddler/Riddler
-label: contact_message_feedback_form
diff --git a/config/sync/captcha.captcha_point.contact_message_personal_form.yml b/config/sync/captcha.captcha_point.contact_message_personal_form.yml
deleted file mode 100644
index 718b536..0000000
--- a/config/sync/captcha.captcha_point.contact_message_personal_form.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: 9452d548-2d1b-450b-83ea-70517836f68b
-langcode: en
-status: false
-dependencies: {  }
-_core:
-  default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs
-formId: contact_message_personal_form
-captchaType: default
-label: contact_message_personal_form
diff --git a/config/sync/captcha.captcha_point.node_article_form.yml b/config/sync/captcha.captcha_point.node_article_form.yml
deleted file mode 100644
index cf1f38a..0000000
--- a/config/sync/captcha.captcha_point.node_article_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: 51109243-2baa-4002-91c4-0ce1f2df81ed
-langcode: en
-status: false
-dependencies: {  }
-formId: node_article_form
-captchaType: default
-label: node_article_form
diff --git a/config/sync/captcha.captcha_point.node_blog_form.yml b/config/sync/captcha.captcha_point.node_blog_form.yml
deleted file mode 100644
index 193197f..0000000
--- a/config/sync/captcha.captcha_point.node_blog_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: e5a56ee3-d865-4616-b2e6-765bd6681ce2
-langcode: en
-status: false
-dependencies: {  }
-formId: node_blog_form
-captchaType: default
-label: node_blog_form
diff --git a/config/sync/captcha.captcha_point.node_collection_form.yml b/config/sync/captcha.captcha_point.node_collection_form.yml
deleted file mode 100644
index 8cc9cd0..0000000
--- a/config/sync/captcha.captcha_point.node_collection_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: f75d1ab1-7635-4339-a3eb-01d4529b99fc
-langcode: en
-status: false
-dependencies: {  }
-formId: node_collection_form
-captchaType: default
-label: node_collection_form
diff --git a/config/sync/captcha.captcha_point.node_gleaning_form.yml b/config/sync/captcha.captcha_point.node_gleaning_form.yml
deleted file mode 100644
index 5df70e1..0000000
--- a/config/sync/captcha.captcha_point.node_gleaning_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: e61990c1-71bf-4f6b-ae82-52216c49eafc
-langcode: en
-status: false
-dependencies: {  }
-formId: node_gleaning_form
-captchaType: default
-label: node_gleaning_form
diff --git a/config/sync/captcha.captcha_point.node_landing_page_form.yml b/config/sync/captcha.captcha_point.node_landing_page_form.yml
deleted file mode 100644
index 6c638a4..0000000
--- a/config/sync/captcha.captcha_point.node_landing_page_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: 6dbd3f2e-f441-4750-a6ed-be1072c232d7
-langcode: en
-status: false
-dependencies: {  }
-formId: node_landing_page_form
-captchaType: default
-label: node_landing_page_form
diff --git a/config/sync/captcha.captcha_point.node_page_form.yml b/config/sync/captcha.captcha_point.node_page_form.yml
deleted file mode 100644
index e4a9dde..0000000
--- a/config/sync/captcha.captcha_point.node_page_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: bd86139c-8727-430b-b333-4c58e153829f
-langcode: en
-status: false
-dependencies: {  }
-formId: node_page_form
-captchaType: default
-label: node_page_form
diff --git a/config/sync/captcha.captcha_point.node_people_form.yml b/config/sync/captcha.captcha_point.node_people_form.yml
deleted file mode 100644
index c713f44..0000000
--- a/config/sync/captcha.captcha_point.node_people_form.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-uuid: f07df487-9111-43f2-b049-9c45e982906d
-langcode: en
-status: false
-dependencies: {  }
-formId: node_people_form
-captchaType: default
-label: node_people_form
diff --git a/config/sync/captcha.captcha_point.user_login_form.yml b/config/sync/captcha.captcha_point.user_login_form.yml
deleted file mode 100644
index 2bf2125..0000000
--- a/config/sync/captcha.captcha_point.user_login_form.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: 6be0740e-18a3-4f43-9236-da32c00b09e6
-langcode: en
-status: false
-dependencies: {  }
-_core:
-  default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q
-formId: user_login_form
-captchaType: default
-label: user_login_form
diff --git a/config/sync/captcha.captcha_point.user_pass.yml b/config/sync/captcha.captcha_point.user_pass.yml
deleted file mode 100644
index 1150677..0000000
--- a/config/sync/captcha.captcha_point.user_pass.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: b12e0ad3-448a-4669-bfdf-d2c75a1f7bdf
-langcode: en
-status: false
-dependencies: {  }
-_core:
-  default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo
-formId: user_pass
-captchaType: default
-label: user_pass
diff --git a/config/sync/captcha.captcha_point.user_register_form.yml b/config/sync/captcha.captcha_point.user_register_form.yml
deleted file mode 100644
index e4fee70..0000000
--- a/config/sync/captcha.captcha_point.user_register_form.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: df24b830-5560-454f-a742-6572f54c62e0
-langcode: en
-status: false
-dependencies: {  }
-_core:
-  default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0
-formId: user_register_form
-captchaType: default
-label: user_register_form
diff --git a/config/sync/captcha.settings.yml b/config/sync/captcha.settings.yml
deleted file mode 100644
index bd7904b..0000000
--- a/config/sync/captcha.settings.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-_core: null
-langcode: en
-enable_globally: 0
-enable_globally_on_admin_routes: false
-default_challenge: riddler/Riddler
-description: 'This question is to verify that you are a human visitor and to prevent automated spam.'
-title: CAPTCHA
-administration_mode: false
-administration_mode_on_admin_routes: false
-whitelist_ips: ''
-wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct.'
-default_validation: 1
-persistence: 1
-enable_stats: false
-log_wrong_responses: true
-default_config_hash: QDFjOXYIYVwCPQYHY4wAx4DUqOEkNaZokIx6DGApR9I
diff --git a/config/sync/charts.settings.yml b/config/sync/charts.settings.yml
deleted file mode 100644
index afcef16..0000000
--- a/config/sync/charts.settings.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-_core:
-  default_config_hash: wZ5T1cqvSG3zUPxdtz_BgdBiNjgy1K1Al-L3iT7sPh8
-dependencies: {  }
-charts_default_settings:
-  library: ''
-  type: line
-  display:
-    title: ''
-    subtitle: ''
-    colors:
-      - '#006fb0'
-      - '#f07c33'
-      - '#342e9c'
-      - '#579b17'
-      - '#3f067a'
-      - '#cbde67'
-      - '#7643b6'
-      - '#738d00'
-      - '#c157c7'
-      - '#02dab1'
-      - '#ed56b4'
-      - '#d8d981'
-      - '#004695'
-      - '#736000'
-      - '#a5a5ff'
-      - '#833a00'
-      - '#ff9ee9'
-      - '#684507'
-      - '#fe4f85'
-      - '#5d0011'
-      - '#ffa67b'
-      - '#88005c'
-      - '#ff9b8f'
-      - '#85000f'
-      - '#ff7581'
-    color_changer: false
-    title_position: out
-    tooltips: true
-    tooltips_use_html: false
-    data_markers: false
-    data_labels: false
-    legend: false
-    legend_position: right
-    background: ''
-    three_dimensional: 0
-    polar: 0
-    dimensions:
-      width: ''
-      width_units: '%'
-      height: ''
-      height_units: ''
-    gauge:
-      max: '100'
-      min: '0'
-      green_from: '85'
-      green_to: '100'
-      yellow_from: '50'
-      yellow_to: '85'
-      red_from: '0'
-      red_to: '50'
-  xaxis:
-    title: ''
-    labels_rotation: '0'
-  yaxis:
-    title: ''
-    min: ''
-    max: ''
-    prefix: ''
-    suffix: ''
-    decimal_count: ''
-    labels_rotation: '0'
-advanced:
-  debug: false
-  requirements:
-    cdn: true
diff --git a/config/sync/claro.settings.yml b/config/sync/claro.settings.yml
index 2be1990..335da39 100644
--- a/config/sync/claro.settings.yml
+++ b/config/sync/claro.settings.yml
@@ -1,5 +1,5 @@
-_core:
-  default_config_hash: 8GyocqC2nyRrMjMdTwkLg8XLON-hZQ68wsuOEjxmCx0
 third_party_settings:
   shortcut:
     module_link: true
+_core:
+  default_config_hash: 8GyocqC2nyRrMjMdTwkLg8XLON-hZQ68wsuOEjxmCx0
diff --git a/config/sync/comment.settings.yml b/config/sync/comment.settings.yml
index 5b7ad98..e966828 100644
--- a/config/sync/comment.settings.yml
+++ b/config/sync/comment.settings.yml
@@ -1,3 +1,3 @@
+log_ip_addresses: false
 _core:
   default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
-log_ip_addresses: false
diff --git a/config/sync/comment_notify.settings.yml b/config/sync/comment_notify.settings.yml
deleted file mode 100644
index 07551c0..0000000
--- a/config/sync/comment_notify.settings.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-_core:
-  default_config_hash: y7oCzsZ-B0R-nyeSFO1f2h9BEChUQGSZT-3cqXd-sLE
-langcode: en
-bundle_types: {  }
-available_alerts:
-  1: true
-  2: false
-enable_default:
-  watcher: '1'
-  entity_author: true
-mail_templates:
-  watcher:
-    node:
-      subject: '[site:name] :: new comment on [node:title]'
-      body: "Hi [comment-subscribed:author],\r\n\r\n[comment:author] has commented on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou can stop receiving emails when someone replies to this post,\r\nby going to [comment-subscribed:unsubscribe-url]\r\n\r\nYou can set up auto-following feature for all future posts\r\nby creating your own user with a few clicks here [site:login-url]\r\n\r\n-- [site:name] team\r\n[site:url]\r\n"
-  entity_author:
-    node:
-      subject: '[site:name] :: new comment for your post'
-      body: "Hi [node:author],\r\n\r\nYou have received a comment on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou will receive emails like this for all replies to your posts. You can\r\ndisable this by logging in and changing the settings on your user account at\r\n[node:author:edit-url].\r\n\r\n-- [site:name] team\r\n[site:url]\r\n"
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.action.yml b/config/sync/config_snapshot.snapshot.config_sync.module.action.yml
deleted file mode 100644
index 1a1a170..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.action.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: 6d385c6b-fb29-4b9e-939b-912c697359da
-langcode: en
-status: true
-dependencies:
-  module:
-    - action
-id: config_sync.module.action
-snapshotSet: config_sync
-extensionType: module
-extensionName: action
-items:
-  -
-    collection: ''
-    name: action.settings
-    data:
-      recursion_limit: 35
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_links_access_filter.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_links_access_filter.yml
new file mode 100644
index 0000000..ddd25ef
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_links_access_filter.yml
@@ -0,0 +1,11 @@
+uuid: 4b38040e-f8fa-4c1d-86dd-49817e45343e
+langcode: en
+status: true
+dependencies:
+  module:
+    - admin_links_access_filter
+id: config_sync.module.admin_links_access_filter
+snapshotSet: config_sync
+extensionType: module
+extensionName: admin_links_access_filter
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml
index 974c8bc..1048de2 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml
@@ -8,11 +8,4 @@ id: config_sync.module.admin_toolbar
 snapshotSet: config_sync
 extensionType: module
 extensionName: admin_toolbar
-items:
-  -
-    collection: ''
-    name: admin_toolbar.settings
-    data:
-      menu_depth: 4
-      _core:
-        default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_search.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_search.yml
deleted file mode 100644
index 2027d94..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_search.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 42976f9f-aae1-42be-9185-35bfbc6e3cbd
-langcode: en
-status: true
-dependencies:
-  module:
-    - admin_toolbar_search
-id: config_sync.module.admin_toolbar_search
-snapshotSet: config_sync
-extensionType: module
-extensionName: admin_toolbar_search
-items:
-  -
-    collection: ''
-    name: admin_toolbar_search.settings
-    data:
-      display_menu_item: 0
-      _core:
-        default_config_hash: AAmWcgwzGYbXfR6wfEfMyoi3r5QZwlpxvq5dHbupnJo
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml
index 875c983..9e5056d 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml
@@ -8,13 +8,4 @@ id: config_sync.module.admin_toolbar_tools
 snapshotSet: config_sync
 extensionType: module
 extensionName: admin_toolbar_tools
-items:
-  -
-    collection: ''
-    name: admin_toolbar_tools.settings
-    data:
-      max_bundle_number: 20
-      hoverintent_functionality: true
-      show_local_tasks: false
-      _core:
-        default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml b/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml
deleted file mode 100644
index ca24a34..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: 756b3805-463c-4e32-a94c-fc47d303b525
-langcode: en
-status: true
-dependencies:
-  module:
-    - antibot
-id: config_sync.module.antibot
-snapshotSet: config_sync
-extensionType: module
-extensionName: antibot
-items:
-  -
-    collection: ''
-    name: antibot.settings
-    data:
-      form_ids:
-        - 'comment_*'
-        - user_login_form
-        - user_pass
-        - user_register_form
-        - 'contact_message_*'
-      show_form_ids: false
-      _core:
-        default_config_hash: 2TnP0TViNExHGuA7Cdr4L3uxhYGNzKyL0XnoAhtSHMQ
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml b/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml
index fe6004b..a6a603c 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml
@@ -14,5 +14,3 @@ items:
     name: automated_cron.settings
     data:
       interval: 10800
-      _core:
-        default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml b/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml
deleted file mode 100644
index f1254a6..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: db44b7f1-dfc3-49ae-bd85-1e61a233c6e1
-langcode: en
-status: true
-dependencies:
-  module:
-    - autosave_form
-id: config_sync.module.autosave_form
-snapshotSet: config_sync
-extensionType: module
-extensionName: autosave_form
-items:
-  -
-    collection: ''
-    name: autosave_form.messages
-    data:
-      entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.'
-      _core:
-        default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg
-  -
-    collection: ''
-    name: autosave_form.settings
-    data:
-      interval: 60000
-      only_on_form_change: false
-      active_on:
-        content_entity_forms: true
-        config_entity_forms: false
-      notification:
-        active: true
-        message: 'Saving draft...'
-        delay: 1000
-      allowed_content_entity_types: {  }
-      allowed_new: true
-      _core:
-        default_config_hash: NX6_WyjygzZfQY-9SZq6_5fmh_KUK7L0XlOqaAXkRCQ
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml b/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml
new file mode 100644
index 0000000..33e6fdb
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml
@@ -0,0 +1,11 @@
+uuid: 46344347-c827-4e07-a053-1730eb2bfdcf
+langcode: en
+status: true
+dependencies:
+  module:
+    - better_normalizers
+id: config_sync.module.better_normalizers
+snapshotSet: config_sync
+extensionType: module
+extensionName: better_normalizers
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block.yml
index e238366..735e8d1 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.block.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.block.yml
@@ -8,49 +8,4 @@ id: config_sync.module.block
 snapshotSet: config_sync
 extensionType: module
 extensionName: block
-items:
-  -
-    collection: ''
-    name: tour.tour.block-layout
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - block
-      id: block-layout
-      label: 'Block Layout Page'
-      module: block
-      routes:
-        -
-          route_name: block.admin_display
-      tips:
-        block-layout:
-          id: block-layout
-          plugin: text
-          label: 'Block Layout'
-          weight: 1
-          body: 'Blocks are boxes of content rendered into an area, or region, of a web page that can be displayed in regions (such as footer or sidebar) on your page.'
-        place-block:
-          id: place-block
-          plugin: text
-          label: 'Place Blocks'
-          weight: 2
-          selector: .button--small
-          body: 'Any custom or contributed block can be added to a particular region by clicking on a button Place block. A new block can also be created by clicking on Place Block'
-        block-region:
-          id: block-region
-          plugin: text
-          label: 'Block Region'
-          weight: 3
-          selector: .block-region-select
-          body: 'Assign or change the region of a block by clicking here. A dropdown list with all the regions will appear. You can place one block in multiple regions.'
-        configure-block:
-          id: configure-block
-          plugin: text
-          label: 'Configure Block'
-          weight: 4
-          selector: .dropbutton-widget
-          body: 'By Clicking on "Configure" you can go ahead and edit the contents of the block, deal with the visibility settings and even change the placement of where it is on your theme.'
-      _core:
-        default_config_hash: pG6QAggTrD7RQWb79PT3NH48GSvTiePly_l53f3OENs
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml
deleted file mode 100644
index 9d5d34b..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-uuid: 0efe4cf0-2aff-4c18-a3ef-0f7fd8879cbb
-langcode: en
-status: true
-dependencies:
-  module:
-    - block_class
-id: config_sync.module.block_class
-snapshotSet: config_sync
-extensionType: module
-extensionName: block_class
-items:
-  -
-    collection: ''
-    name: block_class.settings
-    data:
-      block_classes_stored: {  }
-      default_case: standard
-      enable_attributes: true
-      enable_auto_complete: true
-      enable_id_replacement: true
-      enable_special_chars: false
-      field_type: multiple_textfields
-      filter_html_clean_css_identifier: ''
-      items_per_page: 50
-      qty_attributes_per_block: 10
-      qty_classes_per_block: 10
-      maxlength_attributes: 255
-      maxlength_block_class_field: 255
-      maxlength_id: 255
-      weight_attributes: 0
-      weight_class: 0
-      weight_id: 0
-      _core:
-        default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml
index 71013b6..e46c272 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml
@@ -20,11 +20,8 @@ items:
           - block_content
       id: block_content.full
       label: Full
-      description: ''
       targetEntityType: block_content
       cache: true
-      _core:
-        default_config_hash: Q7yUUYeRLByl-MCGveKKF_KhAtNICLCMJuKWfugCvso
   -
     collection: ''
     name: field.storage.block_content.body
@@ -47,8 +44,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc
   -
     collection: ''
     name: views.view.block_content
@@ -60,20 +55,112 @@ items:
           - block_content
           - user
       id: block_content
-      label: 'Content blocks'
+      label: 'Custom block library'
       module: views
-      description: 'Find and manage content blocks.'
+      description: 'Find and manage custom blocks.'
       tag: default
       base_table: block_content_field_data
       base_field: id
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: 'Content blocks'
+            access:
+              type: perm
+              options:
+                perm: 'administer blocks'
+            cache:
+              type: tag
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Apply
+                reset_button: false
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: true
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: mini
+              options:
+                items_per_page: 50
+                offset: 0
+                id: 0
+                total_pages: null
+                tags:
+                  previous: '‹ Previous'
+                  next: 'Next ›'
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+            style:
+              type: table
+              options:
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                override: true
+                sticky: false
+                caption: ''
+                summary: ''
+                description: ''
+                columns:
+                  info: info
+                  type: type
+                  changed: changed
+                  operations: operations
+                info:
+                  info:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  type:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  changed:
+                    sortable: true
+                    default_sort_order: desc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  operations:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                default: changed
+                empty_table: true
+            row:
+              type: fields
             fields:
               info:
                 id: info
@@ -82,9 +169,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: null
-                entity_field: info
-                plugin_id: field
                 label: 'Block description'
                 exclude: false
                 alter:
@@ -140,6 +224,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: null
+                entity_field: info
+                plugin_id: field
               type:
                 id: type
                 table: block_content_field_data
@@ -147,9 +234,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: block_content
-                entity_field: type
-                plugin_id: field
                 label: 'Block type'
                 exclude: false
                 alter:
@@ -205,6 +289,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: block_content
+                entity_field: type
+                plugin_id: field
               changed:
                 id: changed
                 table: block_content_field_data
@@ -212,9 +299,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: block_content
-                entity_field: changed
-                plugin_id: field
                 label: Updated
                 exclude: false
                 alter:
@@ -256,20 +340,14 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                entity_type: block_content
+                entity_field: changed
                 type: timestamp
                 settings:
                   date_format: short
                   custom_date_format: ''
                   timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
+                plugin_id: field
               operations:
                 id: operations
                 table: block_content
@@ -277,8 +355,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: block_content
-                plugin_id: entity_operations
                 label: Operations
                 exclude: false
                 alter:
@@ -321,66 +397,8 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 destination: true
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 50
-                total_pages: null
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: true
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access block library'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'There are no content blocks available.'
-                tokenize: false
-              block_content_listing_empty:
-                id: block_content_listing_empty
-                table: block_content
-                field: block_content_listing_empty
-                relationship: none
-                group_type: group
-                admin_label: ''
                 entity_type: block_content
-                plugin_id: block_content_listing_empty
-                label: ''
-                empty: true
-            sorts: {  }
-            arguments: {  }
+                plugin_id: entity_operations
             filters:
               info:
                 id: info
@@ -389,9 +407,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: block_content
-                entity_field: info
-                plugin_id: string
                 operator: contains
                 value: ''
                 group: 1
@@ -402,8 +417,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: info_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: info
                   required: false
                   remember: false
@@ -424,6 +437,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                entity_type: block_content
+                entity_field: info
+                plugin_id: string
               type:
                 id: type
                 table: block_content_field_data
@@ -431,9 +447,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: block_content
-                entity_field: type
-                plugin_id: bundle
                 operator: in
                 value: {  }
                 group: 1
@@ -444,8 +457,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: type_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: type
                   required: false
                   remember: false
@@ -467,6 +478,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                entity_type: block_content
+                entity_field: type
+                plugin_id: bundle
               reusable:
                 id: reusable
                 table: block_content_field_data
@@ -474,9 +488,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: block_content
-                entity_field: reusable
-                plugin_id: boolean
                 operator: '='
                 value: '1'
                 group: 1
@@ -487,8 +498,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -507,100 +516,70 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  info: info
-                  type: type
-                  changed: changed
-                  operations: operations
-                default: changed
-                info:
-                  info:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  type:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  changed:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  operations:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: false
-                summary: ''
-                empty_table: true
-                caption: ''
-                description: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
+                entity_type: block_content
+                entity_field: reusable
+                plugin_id: boolean
+            sorts: {  }
+            title: 'Custom block library'
             header: {  }
             footer: {  }
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: ''
+                empty: true
+                tokenize: false
+                content: 'There are no custom blocks available.'
+                plugin_id: text_custom
+              block_content_listing_empty:
+                admin_label: ''
+                empty: true
+                field: block_content_listing_empty
+                group_type: group
+                id: block_content_listing_empty
+                label: ''
+                relationship: none
+                table: block_content
+                plugin_id: block_content_listing_empty
+                entity_type: block_content
+            relationships: {  }
+            arguments: {  }
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
         page_1:
+          display_plugin: page
           id: page_1
           display_title: Page
-          display_plugin: page
           position: 1
           display_options:
             display_extenders: {  }
-            path: admin/content/block
+            path: admin/structure/block/block-content
             menu:
               type: tab
-              title: Blocks
-              description: 'Create and edit content blocks.'
+              title: 'Custom block library'
+              description: ''
+              parent: block.admin_display
               weight: 0
-              menu_name: admin
-              parent: system.admin_content
               context: '0'
+              menu_name: admin
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
-      _core:
-        default_config_hash: AcOE_1RLjX4okjWSOk7Pen1IdtPsY0Nbn0HXWG3zMqc
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.captcha.yml b/config/sync/config_snapshot.snapshot.config_sync.module.captcha.yml
deleted file mode 100644
index 4593ed4..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.captcha.yml
+++ /dev/null
@@ -1,78 +0,0 @@
-uuid: a0774d2b-61d7-4c01-8258-8981e5117df1
-langcode: en
-status: true
-dependencies:
-  module:
-    - captcha
-id: config_sync.module.captcha
-snapshotSet: config_sync
-extensionType: module
-extensionName: captcha
-items:
-  -
-    collection: ''
-    name: captcha.captcha_point.contact_message_personal_form
-    data:
-      langcode: en
-      status: false
-      dependencies: {  }
-      formId: contact_message_personal_form
-      captchaType: default
-      label: contact_message_personal_form
-      _core:
-        default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs
-  -
-    collection: ''
-    name: captcha.captcha_point.user_login_form
-    data:
-      langcode: en
-      status: false
-      dependencies: {  }
-      formId: user_login_form
-      captchaType: default
-      label: user_login_form
-      _core:
-        default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q
-  -
-    collection: ''
-    name: captcha.captcha_point.user_pass
-    data:
-      langcode: en
-      status: false
-      dependencies: {  }
-      formId: user_pass
-      captchaType: default
-      label: user_pass
-      _core:
-        default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo
-  -
-    collection: ''
-    name: captcha.captcha_point.user_register_form
-    data:
-      langcode: en
-      status: false
-      dependencies: {  }
-      formId: user_register_form
-      captchaType: default
-      label: user_register_form
-      _core:
-        default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0
-  -
-    collection: ''
-    name: captcha.settings
-    data:
-      enable_globally: 0
-      enable_globally_on_admin_routes: false
-      default_challenge: captcha/Math
-      description: 'This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.'
-      title: CAPTCHA
-      administration_mode: false
-      administration_mode_on_admin_routes: false
-      whitelist_ips: ''
-      wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct.'
-      default_validation: 1
-      persistence: 1
-      enable_stats: false
-      log_wrong_responses: false
-      _core:
-        default_config_hash: QDFjOXYIYVwCPQYHY4wAx4DUqOEkNaZokIx6DGApR9I
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml b/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml
deleted file mode 100644
index 20a070c..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-uuid: 9e67a143-2ccc-4837-aaf4-9ebdb0889b7b
-langcode: en
-status: true
-dependencies:
-  module:
-    - charts
-id: config_sync.module.charts
-snapshotSet: config_sync
-extensionType: module
-extensionName: charts
-items:
-  -
-    collection: ''
-    name: charts.settings
-    data:
-      dependencies: {  }
-      charts_default_settings:
-        library: ''
-        type: line
-        display:
-          title: ''
-          subtitle: ''
-          colors:
-            - '#006fb0'
-            - '#f07c33'
-            - '#342e9c'
-            - '#579b17'
-            - '#3f067a'
-            - '#cbde67'
-            - '#7643b6'
-            - '#738d00'
-            - '#c157c7'
-            - '#02dab1'
-            - '#ed56b4'
-            - '#d8d981'
-            - '#004695'
-            - '#736000'
-            - '#a5a5ff'
-            - '#833a00'
-            - '#ff9ee9'
-            - '#684507'
-            - '#fe4f85'
-            - '#5d0011'
-            - '#ffa67b'
-            - '#88005c'
-            - '#ff9b8f'
-            - '#85000f'
-            - '#ff7581'
-          color_changer: false
-          title_position: out
-          tooltips: true
-          tooltips_use_html: false
-          data_markers: false
-          data_labels: false
-          legend: false
-          legend_position: right
-          background: ''
-          three_dimensional: 0
-          polar: 0
-          dimensions:
-            width: ''
-            width_units: '%'
-            height: ''
-            height_units: ''
-          gauge:
-            max: '100'
-            min: '0'
-            green_from: '85'
-            green_to: '100'
-            yellow_from: '50'
-            yellow_to: '85'
-            red_from: '0'
-            red_to: '50'
-        xaxis:
-          title: ''
-          labels_rotation: '0'
-        yaxis:
-          title: ''
-          min: ''
-          max: ''
-          prefix: ''
-          suffix: ''
-          decimal_count: ''
-          labels_rotation: '0'
-      advanced:
-        debug: false
-        requirements:
-          cdn: true
-      _core:
-        default_config_hash: wZ5T1cqvSG3zUPxdtz_BgdBiNjgy1K1Al-L3iT7sPh8
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml
new file mode 100644
index 0000000..37a903c
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml
@@ -0,0 +1,11 @@
+uuid: fea0c8df-8eb3-416d-85c5-6d33138ecd85
+langcode: en
+status: true
+dependencies:
+  module:
+    - ckeditor
+id: config_sync.module.ckeditor
+snapshotSet: config_sync
+extensionType: module
+extensionName: ckeditor
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.classitup.yml b/config/sync/config_snapshot.snapshot.config_sync.module.classitup.yml
deleted file mode 100644
index e63e46e..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.classitup.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 43dd3c99-9e37-4dc8-b9f5-16b8f46efe8f
-langcode: en
-status: true
-dependencies:
-  module:
-    - classitup
-id: config_sync.module.classitup
-snapshotSet: config_sync
-extensionType: module
-extensionName: classitup
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.scn.yml b/config/sync/config_snapshot.snapshot.config_sync.module.color.yml
similarity index 50%
rename from config/sync/config_snapshot.snapshot.config_sync.module.scn.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.color.yml
index 2f5244f..adc1fd8 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.scn.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.color.yml
@@ -1,11 +1,11 @@
-uuid: 72dd1f0f-cc86-46e5-95e7-192e4a7deaca
+uuid: 44432830-2e91-428c-9984-0a27e5aa0835
 langcode: en
 status: true
 dependencies:
   module:
-    - scn
-id: config_sync.module.scn
+    - color
+id: config_sync.module.color
 snapshotSet: config_sync
 extensionType: module
-extensionName: scn
+extensionName: color
 items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml
index 5a35195..22a6b66 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml
@@ -14,8 +14,6 @@ items:
     name: comment.settings
     data:
       log_ip_addresses: false
-      _core:
-        default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
   -
     collection: ''
     name: core.entity_view_mode.comment.full
@@ -27,11 +25,8 @@ items:
           - comment
       id: comment.full
       label: 'Full comment'
-      description: ''
       targetEntityType: comment
       cache: true
-      _core:
-        default_config_hash: N4mUjXpPckUkVRY1PbKw4GGoL1i2ECU7PL3EreiKStk
   -
     collection: ''
     name: field.storage.comment.comment_body
@@ -54,8 +49,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw
   -
     collection: ''
     name: system.action.comment_delete_action
@@ -70,8 +63,6 @@ items:
       type: comment
       plugin: 'entity:delete_action:comment'
       configuration: {  }
-      _core:
-        default_config_hash: vpBH8OmL4sdesCdeZLsW8KOutB5gkbreWJbfjhfFKaQ
   -
     collection: ''
     name: system.action.comment_publish_action
@@ -86,8 +77,6 @@ items:
       type: comment
       plugin: 'entity:publish_action:comment'
       configuration: {  }
-      _core:
-        default_config_hash: C00dyL_W_5M0nFlgUB3lWUTUs96jn51Jw1MLHVEHZD0
   -
     collection: ''
     name: system.action.comment_save_action
@@ -102,8 +91,6 @@ items:
       type: comment
       plugin: 'entity:save_action:comment'
       configuration: {  }
-      _core:
-        default_config_hash: lfyE_snmvfg_EQ3VDyhUtGAXgmqtEiqa46I3bTMg8DU
   -
     collection: ''
     name: system.action.comment_unpublish_action
@@ -118,8 +105,6 @@ items:
       type: comment
       plugin: 'entity:unpublish_action:comment'
       configuration: {  }
-      _core:
-        default_config_hash: tWOIjSMobEWOFZddMkNqb9JySbOVwE1diC6NRqcfLTk
   -
     collection: ''
     name: views.view.comment
@@ -137,14 +122,123 @@ items:
       tag: default
       base_table: comment_field_data
       base_field: cid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: Comments
+            access:
+              type: perm
+              options:
+                perm: 'administer comments'
+            cache:
+              type: tag
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Apply
+                reset_button: false
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: true
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: full
+              options:
+                items_per_page: 50
+                offset: 0
+                id: 0
+                total_pages: null
+                tags:
+                  previous: '‹ previous'
+                  next: 'next ›'
+                  first: '« first'
+                  last: 'last »'
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                quantity: 9
+            style:
+              type: table
+              options:
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                override: true
+                sticky: true
+                caption: ''
+                summary: ''
+                description: ''
+                columns:
+                  comment_bulk_form: comment_bulk_form
+                  subject: subject
+                  uid: uid
+                  entity_id: entity_id
+                  changed: changed
+                  operations: operations
+                info:
+                  comment_bulk_form:
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  subject:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  uid:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  entity_id:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  changed:
+                    sortable: true
+                    default_sort_order: desc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  operations:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                default: changed
+                empty_table: true
+            row:
+              type: fields
             fields:
               comment_bulk_form:
                 id: comment_bulk_form
@@ -153,8 +247,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                plugin_id: comment_bulk_form
                 label: ''
                 exclude: false
                 alter:
@@ -201,6 +293,8 @@ items:
                 selected_actions:
                   - comment_delete_action
                   - comment_unpublish_action
+                plugin_id: comment_bulk_form
+                entity_type: comment
               subject:
                 id: subject
                 table: comment_field_data
@@ -208,9 +302,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: subject
-                plugin_id: field
                 label: Subject
                 exclude: false
                 alter:
@@ -266,6 +357,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: subject
+                plugin_id: field
               uid:
                 id: uid
                 table: comment_field_data
@@ -273,9 +367,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: uid
-                plugin_id: field
                 label: ''
                 exclude: true
                 alter:
@@ -331,6 +422,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: uid
+                plugin_id: field
               name:
                 id: name
                 table: comment_field_data
@@ -338,9 +432,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: name
-                plugin_id: field
                 label: Author
                 exclude: false
                 alter:
@@ -395,6 +486,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: name
+                plugin_id: field
               entity_id:
                 id: entity_id
                 table: comment_field_data
@@ -402,9 +496,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: entity_id
-                plugin_id: commented_entity
                 label: 'Posted in'
                 exclude: false
                 alter:
@@ -460,6 +551,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: entity_id
+                plugin_id: commented_entity
               changed:
                 id: changed
                 table: comment_field_data
@@ -467,9 +561,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: changed
-                plugin_id: field
                 label: Updated
                 exclude: false
                 alter:
@@ -517,15 +608,6 @@ items:
                   date_format: short
                   custom_date_format: ''
                   timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
                 group_column: value
                 group_columns: {  }
                 group_rows: true
@@ -536,6 +618,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: changed
+                plugin_id: field
               operations:
                 id: operations
                 table: comment
@@ -543,8 +628,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                plugin_id: entity_operations
                 label: Operations
                 exclude: false
                 alter:
@@ -587,6 +670,8 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 destination: true
+                entity_type: comment
+                plugin_id: entity_operations
               name_1:
                 id: name_1
                 table: users_field_data
@@ -594,9 +679,6 @@ items:
                 relationship: uid
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
                 label: ''
                 exclude: true
                 alter:
@@ -652,74 +734,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 50
-                total_pages: null
-                id: 0
-                tags:
-                  next: 'next ›'
-                  previous: '‹ previous'
-                  first: '« first'
-                  last: 'last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Filter
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'administer comments'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'No comments available.'
-                tokenize: false
-            sorts:
-              changed:
-                id: changed
-                table: comment_field_data
-                field: changed
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: comment
-                entity_field: changed
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: changed
-                exposed: false
-                granularity: second
-            arguments: {  }
+                entity_type: user
+                entity_field: name
+                plugin_id: field
             filters:
               status:
                 id: status
@@ -728,9 +745,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: status
-                plugin_id: boolean
                 operator: '='
                 value: '1'
                 group: 1
@@ -741,8 +755,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -761,6 +773,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                entity_type: comment
+                entity_field: status
+                plugin_id: boolean
               subject:
                 id: subject
                 table: comment_field_data
@@ -768,9 +783,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: subject
-                plugin_id: string
                 operator: contains
                 value: ''
                 group: 1
@@ -781,8 +793,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: subject_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: subject
                   required: false
                   remember: false
@@ -803,6 +813,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                entity_type: comment
+                entity_field: subject
+                plugin_id: string
               combine:
                 id: combine
                 table: views
@@ -810,7 +823,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: combine
                 operator: contains
                 value: ''
                 group: 1
@@ -821,8 +833,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: combine_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: author_name
                   required: false
                   remember: false
@@ -846,6 +856,7 @@ items:
                 fields:
                   name: name
                   name_1: name_1
+                plugin_id: combine
               langcode:
                 id: langcode
                 table: comment_field_data
@@ -853,9 +864,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: langcode
-                plugin_id: language
                 operator: in
                 value: {  }
                 group: 1
@@ -866,8 +874,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: langcode_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: langcode
                   required: false
                   remember: false
@@ -889,81 +895,50 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  comment_bulk_form: comment_bulk_form
-                  subject: subject
-                  uid: uid
-                  entity_id: entity_id
-                  changed: changed
-                  operations: operations
-                default: changed
-                info:
-                  comment_bulk_form:
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  subject:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  uid:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  entity_id:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  changed:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  operations:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: true
-                caption: ''
-                description: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
+                entity_type: comment
+                entity_field: langcode
+                plugin_id: language
+            sorts:
+              changed:
+                id: changed
+                table: comment_field_data
+                field: changed
+                relationship: none
+                group_type: group
+                admin_label: ''
+                order: DESC
+                exposed: false
+                expose:
+                  label: ''
+                granularity: second
+                entity_type: comment
+                entity_field: changed
+                plugin_id: date
+            title: Comments
+            header: {  }
+            footer: {  }
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: ''
+                empty: true
+                tokenize: false
+                content: 'No comments available.'
+                plugin_id: text_custom
+            arguments: {  }
+            display_extenders: {  }
+            use_more: false
+            use_more_always: true
+            use_more_text: more
+            use_ajax: false
+            hide_attachment_summary: false
+            show_admin_links: true
+            group_by: false
+            css_class: ''
             relationships:
               uid:
                 id: uid
@@ -972,66 +947,235 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: author
+                required: false
                 entity_type: comment
                 entity_field: uid
                 plugin_id: standard
-                required: false
-            css_class: ''
-            use_ajax: false
-            group_by: false
-            show_admin_links: true
-            use_more: false
-            use_more_always: true
-            use_more_text: more
-            header: {  }
-            footer: {  }
-            hide_attachment_summary: false
-            display_extenders: {  }
+            filter_groups:
+              operator: AND
+              groups:
+                1: AND
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
-            tags: {  }
             cacheable: false
+            max-age: 0
+            tags: {  }
         page_published:
+          display_plugin: page
           id: page_published
           display_title: 'Published comments'
-          display_plugin: page
           position: 1
           display_options:
-            display_description: 'The approved comments listing.'
-            display_comment: ''
-            exposed_block: false
-            display_extenders: {  }
             path: admin/content/comment
             menu:
               type: tab
               title: Comments
               description: 'Comments published'
-              weight: 0
-              menu_name: admin
               parent: ''
+              weight: 0
               context: '0'
+              menu_name: admin
+            display_description: 'The approved comments listing.'
+            display_extenders: {  }
+            exposed_block: false
+            display_comment: ''
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
-            tags: {  }
             cacheable: false
+            max-age: 0
+            tags: {  }
         page_unapproved:
+          display_plugin: page
           id: page_unapproved
           display_title: 'Unapproved comments'
-          display_plugin: page
           position: 2
           display_options:
+            path: admin/content/comment/approval
+            menu:
+              type: tab
+              title: 'Unapproved comments'
+              description: 'Comments unapproved'
+              parent: ''
+              weight: 1
+              context: '0'
+              menu_name: admin
+            display_description: 'The unapproved comments listing.'
+            filters:
+              status:
+                id: status
+                table: comment_field_data
+                field: status
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: '='
+                value: '0'
+                group: 1
+                exposed: false
+                expose:
+                  operator_id: ''
+                  label: ''
+                  description: ''
+                  use_operator: false
+                  operator: ''
+                  identifier: ''
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                entity_type: comment
+                entity_field: status
+                plugin_id: boolean
+              subject:
+                id: subject
+                table: comment_field_data
+                field: subject
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: contains
+                value: ''
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: subject_op
+                  label: Subject
+                  description: ''
+                  use_operator: false
+                  operator: subject_op
+                  identifier: subject
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                entity_type: comment
+                entity_field: subject
+                plugin_id: string
+              combine:
+                id: combine
+                table: views
+                field: combine
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: contains
+                value: ''
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: combine_op
+                  label: 'Author Name'
+                  description: ''
+                  use_operator: false
+                  operator: combine_op
+                  identifier: author_name
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                fields:
+                  name: name
+                  name_1: name_1
+                plugin_id: combine
+              langcode:
+                id: langcode
+                table: comment_field_data
+                field: langcode
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: in
+                value: {  }
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: langcode_op
+                  label: Language
+                  description: ''
+                  use_operator: false
+                  operator: langcode_op
+                  identifier: langcode
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                  reduce: false
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                entity_type: comment
+                entity_field: langcode
+                plugin_id: language
+            defaults:
+              filters: false
+              filter_groups: false
+              fields: false
+            display_extenders: {  }
             fields:
               comment_bulk_form:
                 id: comment_bulk_form
@@ -1040,8 +1184,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                plugin_id: comment_bulk_form
                 label: ''
                 exclude: false
                 alter:
@@ -1088,6 +1230,8 @@ items:
                 selected_actions:
                   - comment_delete_action
                   - comment_publish_action
+                plugin_id: comment_bulk_form
+                entity_type: comment
               subject:
                 id: subject
                 table: comment_field_data
@@ -1095,9 +1239,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: subject
-                plugin_id: field
                 label: Subject
                 exclude: false
                 alter:
@@ -1153,6 +1294,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: subject
+                plugin_id: field
               uid:
                 id: uid
                 table: comment_field_data
@@ -1160,9 +1304,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: uid
-                plugin_id: field
                 label: ''
                 exclude: true
                 alter:
@@ -1218,6 +1359,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: uid
+                plugin_id: field
               name:
                 id: name
                 table: comment_field_data
@@ -1225,9 +1369,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: name
-                plugin_id: field
                 label: Author
                 exclude: false
                 alter:
@@ -1282,6 +1423,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: name
+                plugin_id: field
               entity_id:
                 id: entity_id
                 table: comment_field_data
@@ -1289,9 +1433,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: entity_id
-                plugin_id: commented_entity
                 label: 'Posted in'
                 exclude: false
                 alter:
@@ -1347,6 +1488,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: entity_id
+                plugin_id: commented_entity
               changed:
                 id: changed
                 table: comment_field_data
@@ -1354,9 +1498,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: changed
-                plugin_id: field
                 label: Updated
                 exclude: false
                 alter:
@@ -1404,15 +1545,6 @@ items:
                   date_format: short
                   custom_date_format: ''
                   timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
                 group_column: value
                 group_columns: {  }
                 group_rows: true
@@ -1423,6 +1555,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: comment
+                entity_field: changed
+                plugin_id: field
               operations:
                 id: operations
                 table: comment
@@ -1430,8 +1565,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                plugin_id: entity_operations
                 label: Operations
                 exclude: false
                 alter:
@@ -1474,6 +1607,8 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 destination: true
+                entity_type: comment
+                plugin_id: entity_operations
               name_1:
                 id: name_1
                 table: users_field_data
@@ -1481,9 +1616,6 @@ items:
                 relationship: uid
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
                 label: ''
                 exclude: true
                 alter:
@@ -1539,206 +1671,23 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
-            filters:
-              status:
-                id: status
-                table: comment_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: comment
-                entity_field: status
-                plugin_id: boolean
-                operator: '='
-                value: '0'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              subject:
-                id: subject
-                table: comment_field_data
-                field: subject
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: comment
-                entity_field: subject
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: subject_op
-                  label: Subject
-                  description: ''
-                  use_operator: false
-                  operator: subject_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: subject
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              combine:
-                id: combine
-                table: views
-                field: combine
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: combine
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: combine_op
-                  label: 'Author Name'
-                  description: ''
-                  use_operator: false
-                  operator: combine_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: author_name
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-                fields:
-                  name: name
-                  name_1: name_1
-              langcode:
-                id: langcode
-                table: comment_field_data
-                field: langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: comment
-                entity_field: langcode
-                plugin_id: language
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: langcode_op
-                  label: Language
-                  description: ''
-                  use_operator: false
-                  operator: langcode_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: langcode
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
+                entity_type: user
+                entity_field: name
+                plugin_id: field
             filter_groups:
               operator: AND
               groups:
                 1: AND
-            defaults:
-              fields: false
-              filters: false
-              filter_groups: false
-            display_description: 'The unapproved comments listing.'
-            display_extenders: {  }
-            path: admin/content/comment/approval
-            menu:
-              type: tab
-              title: 'Unapproved comments'
-              description: 'Comments unapproved'
-              weight: 1
-              menu_name: admin
-              parent: ''
-              context: '0'
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
-            tags: {  }
             cacheable: false
-      _core:
-        default_config_hash: WFURZFZFHS9S7tEJJqOd6ucYexi84JiyQxE5suLP7D8
+            max-age: 0
+            tags: {  }
   -
     collection: ''
     name: views.view.comments_recent
@@ -1757,25 +1706,62 @@ items:
       tag: default
       base_table: comment_field_data
       base_field: cid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: 'Recent comments'
+            access:
+              type: perm
+              options:
+                perm: 'access comments'
+            cache:
+              type: tag
+            query:
+              type: views_query
+            exposed_form:
+              type: basic
+            pager:
+              type: some
+              options:
+                items_per_page: 10
+                offset: 0
+            style:
+              type: html_list
+              options:
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                type: ul
+                wrapper_class: item-list
+                class: ''
+            row:
+              type: fields
+              options:
+                default_field_elements: true
+                hide_empty: false
+            relationships:
+              node:
+                field: node
+                id: node
+                table: comment_field_data
+                required: true
+                plugin_id: standard
             fields:
               subject:
                 id: subject
                 table: comment_field_data
                 field: subject
                 relationship: none
+                type: string
+                settings:
+                  link_to_entity: true
+                plugin_id: field
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: subject
-                plugin_id: field
                 label: ''
                 exclude: false
                 alter:
@@ -1817,19 +1803,16 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
-                type: string
-                settings:
-                  link_to_entity: true
+                entity_type: comment
+                entity_field: subject
               changed:
                 id: changed
                 table: comment_field_data
                 field: changed
                 relationship: none
+                plugin_id: field
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: changed
-                plugin_id: field
                 label: ''
                 exclude: false
                 alter:
@@ -1876,32 +1859,32 @@ items:
                   future_format: '@interval hence'
                   past_format: '@interval ago'
                   granularity: 2
-            pager:
-              type: some
-              options:
-                offset: 0
-                items_per_page: 10
-            exposed_form:
-              type: basic
-            access:
-              type: perm
-              options:
-                perm: 'access comments'
-            cache:
-              type: tag
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                label: ''
-                empty: true
-                content: 'No comments available.'
-                tokenize: false
+                entity_type: comment
+                entity_field: changed
+            filters:
+              status:
+                value: '1'
+                table: comment_field_data
+                field: status
+                id: status
+                plugin_id: boolean
+                expose:
+                  operator: ''
+                group: 1
+                entity_type: comment
+                entity_field: status
+              status_node:
+                value: '1'
+                table: node_field_data
+                field: status
+                relationship: node
+                id: status_node
+                plugin_id: boolean
+                expose:
+                  operator: ''
+                group: 1
+                entity_type: node
+                entity_field: status
             sorts:
               created:
                 id: created
@@ -1910,14 +1893,13 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: comment
-                entity_field: created
-                plugin_id: date
                 order: DESC
+                exposed: false
                 expose:
                   label: ''
-                  field_identifier: created
-                exposed: false
+                plugin_id: date
+                entity_type: comment
+                entity_field: created
               cid:
                 id: cid
                 table: comment_field_data
@@ -1925,90 +1907,48 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
+                order: DESC
+                exposed: false
+                plugin_id: field
                 entity_type: comment
                 entity_field: cid
-                plugin_id: field
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: cid
-                exposed: false
-            filters:
-              status:
-                id: status
-                table: comment_field_data
-                field: status
-                entity_type: comment
-                entity_field: status
-                plugin_id: boolean
-                value: '1'
-                group: 1
-                expose:
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-              status_node:
-                id: status_node
-                table: node_field_data
-                field: status
-                relationship: node
-                entity_type: node
-                entity_field: status
-                plugin_id: boolean
-                value: '1'
-                group: 1
-                expose:
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-            style:
-              type: html_list
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                type: ul
-                wrapper_class: item-list
-                class: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                hide_empty: false
-            query:
-              type: views_query
-            relationships:
-              node:
-                id: node
-                table: comment_field_data
-                field: node
-                plugin_id: standard
-                required: true
+            title: 'Recent comments'
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: ''
+                empty: true
+                content: 'No comments available.'
+                tokenize: false
+                plugin_id: text_custom
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user.permissions
+            max-age: -1
             tags: {  }
         block_1:
+          display_plugin: block
           id: block_1
           display_title: Block
-          display_plugin: block
           position: 1
           display_options:
-            display_extenders: {  }
             block_description: 'Recent comments'
             block_category: 'Lists (Views)'
             allow:
               items_per_page: true
+            display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: S_NN2ubd_NovTfgzbHVlZMmIJJQS-3h9h3inzbaFUMY
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml
deleted file mode 100644
index d948b3e..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml
+++ /dev/null
@@ -1,72 +0,0 @@
-uuid: e68916b8-97c0-4f81-841c-dac5cf05141a
-langcode: en
-status: true
-dependencies:
-  module:
-    - comment_notify
-id: config_sync.module.comment_notify
-snapshotSet: config_sync
-extensionType: module
-extensionName: comment_notify
-items:
-  -
-    collection: ''
-    name: comment_notify.settings
-    data:
-      bundle_types:
-        - node--article--comment
-      available_alerts:
-        1: true
-        2: true
-      enable_default:
-        watcher: none
-        entity_author: false
-      mail_templates:
-        watcher:
-          node:
-            subject: '[site:name] :: new comment on [node:title]'
-            body: |
-              Hi [comment-subscribed:author],
-
-              [comment:author] has commented on: "[node:title]"
-
-              ----
-              [comment:title]
-              [comment:body]
-              ----
-
-              You can view the comment at the following url
-              [comment:url]
-
-              You can stop receiving emails when someone replies to this post,
-              by going to [comment-subscribed:unsubscribe-url]
-
-              You can set up auto-following feature for all future posts
-              by creating your own user with a few clicks here [site:login-url]
-
-              -- [site:name] team
-              [site:url]
-        entity_author:
-          node:
-            subject: '[site:name] :: new comment for your post'
-            body: |
-              Hi [node:author],
-
-              You have received a comment on: "[node:title]"
-
-              ----
-              [comment:title]
-              [comment:body]
-              ----
-
-              You can view the comment at the following url
-              [comment:url]
-
-              You will receive emails like this for all replies to your posts. You can
-              disable this by logging in and changing the settings on your user account at
-              [node:author:edit-url].
-
-              -- [site:name] team
-              [site:url]
-      _core:
-        default_config_hash: y7oCzsZ-B0R-nyeSFO1f2h9BEChUQGSZT-3cqXd-sLE
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml
index c35ef43..8d6751d 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml
@@ -19,8 +19,6 @@ items:
       id: administer_account_settings
       label: 'Administer account settings'
       route: entity.user.admin_form
-      _core:
-        default_config_hash: G3RasgGpLT7MiDfwt1phJQ229-nSxEF7TVbk-QrirXU
   -
     collection: ''
     name: config_perms.custom_perms_entity.administer_date_time
@@ -31,8 +29,6 @@ items:
       id: administer_date_time
       label: 'Administer date-time'
       route: entity.date_format.collection
-      _core:
-        default_config_hash: 3Ay9YI_ngS7P7x3VPJDbmjrsZ8GT_S-Zkfgx2g4tGeY
   -
     collection: ''
     name: config_perms.custom_perms_entity.administer_error_logs
@@ -43,8 +39,6 @@ items:
       id: administer_error_logs
       label: 'Administer error logs'
       route: dblog.overview
-      _core:
-        default_config_hash: 2q2utr64_esqpIf4zs8AQlwD4Qx4E7zlyq3vx64o6u8
   -
     collection: ''
     name: config_perms.custom_perms_entity.administer_file_system
@@ -55,5 +49,3 @@ items:
       id: administer_file_system
       label: 'Administer file system'
       route: system.file_system_settings
-      _core:
-        default_config_hash: L7Fm9s3OFts1EqoEZeMwKxAa7FRxN6H418WDwfav3QI
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml b/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml
index 4d5ddcd..34fc622 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml
@@ -23,8 +23,6 @@ items:
       weight: 0
       message: 'Your message has been sent.'
       redirect: ''
-      _core:
-        default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
   -
     collection: ''
     name: contact.settings
@@ -34,5 +32,3 @@ items:
         limit: 5
         interval: 3600
       user_default_enabled: true
-      _core:
-        default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.content_moderation.yml b/config/sync/config_snapshot.snapshot.config_sync.module.content_moderation.yml
deleted file mode 100644
index 1db4e01..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.content_moderation.yml
+++ /dev/null
@@ -1,856 +0,0 @@
-uuid: bc1d1be8-46fd-4a35-89cc-5ea77d5f3c68
-langcode: en
-status: true
-dependencies:
-  module:
-    - content_moderation
-id: config_sync.module.content_moderation
-snapshotSet: config_sync
-extensionType: module
-extensionName: content_moderation
-items:
-  -
-    collection: ''
-    name: views.view.moderated_content
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - node
-          - user
-        enforced:
-          module:
-            - content_moderation
-      id: moderated_content
-      label: 'Moderated content'
-      module: views
-      description: 'Find and moderate content.'
-      tag: ''
-      base_table: node_field_revision
-      base_field: vid
-      display:
-        default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
-          display_options:
-            title: 'Moderated content'
-            fields:
-              title:
-                id: title
-                table: node_field_revision
-                field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: title
-                plugin_id: field
-                label: Title
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: false
-                  ellipsis: false
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: string
-                settings:
-                  link_to_entity: true
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              type:
-                id: type
-                table: node_field_data
-                field: type
-                relationship: nid
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: type
-                plugin_id: field
-                label: 'Content type'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: target_id
-                type: entity_reference_label
-                settings:
-                  link: false
-                group_column: target_id
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              name:
-                id: name
-                table: users_field_data
-                field: name
-                relationship: uid
-                group_type: group
-                admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
-                label: Author
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: user_name
-                settings:
-                  link_to_entity: true
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              moderation_state:
-                id: moderation_state
-                table: node_field_revision
-                field: moderation_state
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                plugin_id: field
-                label: 'Moderation state'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: content_moderation_state
-                settings: {  }
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              changed:
-                id: changed
-                table: node_field_revision
-                field: changed
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: changed
-                plugin_id: field
-                label: Updated
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: false
-                  ellipsis: false
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: timestamp
-                settings:
-                  date_format: short
-                  custom_date_format: ''
-                  timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              operations:
-                id: operations
-                table: node_revision
-                field: operations
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                plugin_id: entity_operations
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                destination: true
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 50
-                total_pages: null
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Filter
-                reset_button: true
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'view any unpublished content'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'No moderated content available. Only pending versions of content, such as drafts, are listed here.'
-                tokenize: false
-            sorts: {  }
-            arguments: {  }
-            filters:
-              latest_translation_affected_revision:
-                id: latest_translation_affected_revision
-                table: node_revision
-                field: latest_translation_affected_revision
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                plugin_id: latest_translation_affected_revision
-                operator: '='
-                value: ''
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              title:
-                id: title
-                table: node_field_revision
-                field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: title
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: title_op
-                  label: Title
-                  description: ''
-                  use_operator: false
-                  operator: title_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: title
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              type:
-                id: type
-                table: node_field_data
-                field: type
-                relationship: nid
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: type
-                plugin_id: bundle
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: type_op
-                  label: 'Content type'
-                  description: ''
-                  use_operator: false
-                  operator: type_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: type
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              moderation_state:
-                id: moderation_state
-                table: node_field_revision
-                field: moderation_state
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                plugin_id: moderation_state_filter
-                operator: in
-                value:
-                  editorial-draft: editorial-draft
-                  editorial-archived: editorial-archived
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: moderation_state_op
-                  label: 'Moderation state'
-                  description: ''
-                  use_operator: false
-                  operator: moderation_state_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: moderation_state
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: true
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              langcode:
-                id: langcode
-                table: node_field_revision
-                field: langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: langcode_op
-                  label: Language
-                  description: ''
-                  use_operator: false
-                  operator: langcode_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: langcode
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              moderation_state_1:
-                id: moderation_state_1
-                table: node_field_revision
-                field: moderation_state
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                plugin_id: moderation_state_filter
-                operator: 'not in'
-                value:
-                  editorial-published: editorial-published
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  title: title
-                  type: type
-                  name: name
-                  moderation_state: moderation_state
-                  changed: changed
-                default: changed
-                info:
-                  title:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  type:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  name:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  moderation_state:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  changed:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: true
-                caption: ''
-                description: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships:
-              nid:
-                id: nid
-                table: node_field_revision
-                field: nid
-                relationship: none
-                group_type: group
-                admin_label: 'Get the actual content from a content revision.'
-                entity_type: node
-                entity_field: nid
-                plugin_id: standard
-                required: false
-              uid:
-                id: uid
-                table: node_field_revision
-                field: uid
-                relationship: none
-                group_type: group
-                admin_label: User
-                entity_type: node
-                entity_field: uid
-                plugin_id: standard
-                required: false
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_content'
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - 'user.node_grants:view'
-              - user.permissions
-            tags: {  }
-        moderated_content:
-          id: moderated_content
-          display_title: 'Moderated content'
-          display_plugin: page
-          position: 1
-          display_options:
-            display_description: ''
-            display_extenders: {  }
-            path: admin/content/moderated
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_content'
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - 'user.node_grants:view'
-              - user.permissions
-            tags: {  }
-      _core:
-        default_config_hash: 7olvKOaJNf15B-Bj4eD1wJyaz4BR7CNA9cEjWBssa2Y
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.convert_bundles.yml b/config/sync/config_snapshot.snapshot.config_sync.module.convert_bundles.yml
deleted file mode 100644
index 3189b34..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.convert_bundles.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 3b31921c-0eab-4fca-9c87-1ad637dea3b6
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: config_sync.module.convert_bundles
-snapshotSet: config_sync
-extensionType: module
-extensionName: convert_bundles
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml b/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml
index add2446..437f37f 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml
@@ -14,5 +14,3 @@ items:
     name: crop.settings
     data:
       flush_derivative_images: true
-      _core:
-        default_config_hash: 7eGOTSG7bRv_AAqu-Ls8CSnob7zPF1ez-lD2OLZgBHs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml
index 6e96f93..082ba9c 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml
@@ -14,8 +14,6 @@ items:
     name: dblog.settings
     data:
       row_limit: 1000
-      _core:
-        default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
   -
     collection: ''
     name: views.view.watchdog
@@ -33,14 +31,136 @@ items:
       tag: ''
       base_table: watchdog
       base_field: wid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: 'Recent log messages'
+            access:
+              type: perm
+              options:
+                perm: 'access site reports'
+            cache:
+              type: none
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Filter
+                reset_button: true
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: false
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: mini
+              options:
+                items_per_page: 50
+                offset: 0
+                id: 0
+                total_pages: null
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                tags:
+                  previous: ‹‹
+                  next: ››
+            style:
+              type: table
+              options:
+                grouping: {  }
+                row_class: '{{ type }} {{ severity }}'
+                default_row_class: true
+                override: true
+                sticky: false
+                caption: ''
+                summary: ''
+                description: ''
+                columns:
+                  nothing: nothing
+                  wid: wid
+                  severity: severity
+                  type: type
+                  timestamp: timestamp
+                  message: message
+                  name: name
+                  link: link
+                info:
+                  nothing:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-medium
+                  wid:
+                    sortable: false
+                    default_sort_order: desc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  severity:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  type:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-medium
+                  timestamp:
+                    sortable: true
+                    default_sort_order: desc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  message:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  name:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-medium
+                  link:
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                default: wid
+                empty_table: false
+            row:
+              type: fields
             fields:
               nothing:
                 id: nothing
@@ -49,7 +169,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: Icon
-                plugin_id: custom
                 label: ''
                 exclude: false
                 alter:
@@ -91,6 +210,7 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: false
+                plugin_id: custom
               wid:
                 id: wid
                 table: watchdog
@@ -98,7 +218,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: standard
                 label: WID
                 exclude: true
                 alter:
@@ -140,6 +259,7 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: standard
               severity:
                 id: severity
                 table: watchdog
@@ -147,7 +267,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: machine_name
                 label: Severity
                 exclude: true
                 alter:
@@ -190,6 +309,7 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 machine_name: false
+                plugin_id: machine_name
               type:
                 id: type
                 table: watchdog
@@ -197,7 +317,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: standard
                 label: Type
                 exclude: false
                 alter:
@@ -239,6 +358,7 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: standard
               timestamp:
                 id: timestamp
                 table: watchdog
@@ -246,7 +366,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: date
                 label: Date
                 exclude: false
                 alter:
@@ -291,6 +410,7 @@ items:
                 date_format: short
                 custom_date_format: ''
                 timezone: ''
+                plugin_id: date
               message:
                 id: message
                 table: watchdog
@@ -298,7 +418,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: dblog_message
                 label: Message
                 exclude: false
                 alter:
@@ -341,6 +460,7 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 replace_variables: true
+                plugin_id: dblog_message
               name:
                 id: name
                 table: users_field_data
@@ -348,9 +468,6 @@ items:
                 relationship: uid
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
                 label: User
                 exclude: false
                 alter:
@@ -406,6 +523,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
+                entity_type: user
+                entity_field: name
+                plugin_id: field
               link:
                 id: link
                 table: watchdog
@@ -413,7 +533,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: dblog_operations
                 label: Operations
                 exclude: false
                 alter:
@@ -455,68 +574,7 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 50
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Filter
-                reset_button: true
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: false
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access site reports'
-            cache:
-              type: none
-              options: {  }
-            empty:
-              area:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: 'No log messages available.'
-                plugin_id: text_custom
-                empty: true
-                content: 'No log messages available.'
-                tokenize: false
-            sorts:
-              wid:
-                id: wid
-                table: watchdog
-                field: wid
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: wid
-                exposed: false
-            arguments: {  }
+                plugin_id: dblog_operations
             filters:
               type:
                 id: type
@@ -525,7 +583,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: dblog_types
                 operator: in
                 value: {  }
                 group: 1
@@ -536,8 +593,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: type_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: type
                   required: false
                   remember: false
@@ -559,6 +614,7 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                plugin_id: dblog_types
               severity:
                 id: severity
                 table: watchdog
@@ -566,7 +622,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: in_operator
                 operator: in
                 value: {  }
                 group: 1
@@ -577,8 +632,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: severity_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: severity
                   required: false
                   remember: false
@@ -600,95 +653,35 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: '{{ type }} {{ severity }}'
-                default_row_class: true
-                columns:
-                  nothing: nothing
-                  wid: wid
-                  severity: severity
-                  type: type
-                  timestamp: timestamp
-                  message: message
-                  name: name
-                  link: link
-                default: wid
-                info:
-                  nothing:
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-medium
-                  wid:
-                    sortable: false
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  severity:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  type:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-medium
-                  timestamp:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  message:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  name:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-medium
-                  link:
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                override: true
-                sticky: false
-                summary: ''
-                empty_table: false
-                caption: ''
-                description: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
+                plugin_id: in_operator
+            sorts:
+              wid:
+                id: wid
+                table: watchdog
+                field: wid
+                relationship: none
+                group_type: group
+                admin_label: ''
+                order: DESC
+                exposed: false
+                expose:
+                  label: ''
+                plugin_id: standard
+            title: 'Recent log messages'
+            header: {  }
+            footer: {  }
+            empty:
+              area:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: 'No log messages available.'
+                empty: true
+                tokenize: false
+                content: 'No log messages available.'
+                plugin_id: text_custom
             relationships:
               uid:
                 id: uid
@@ -697,14 +690,17 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: User
-                plugin_id: standard
                 required: false
-            css_class: admin-dblog
-            header: {  }
-            footer: {  }
+                plugin_id: standard
+            arguments: {  }
             display_extenders: {  }
+            filter_groups:
+              operator: AND
+              groups:
+                1: AND
+            css_class: admin-dblog
           cache_metadata:
-            max-age: -1
+            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -713,15 +709,15 @@ items:
               - user.permissions
             tags: {  }
         page:
+          display_plugin: page
           id: page
           display_title: Page
-          display_plugin: page
           position: 1
           display_options:
             display_extenders: {  }
             path: admin/reports/dblog
           cache_metadata:
-            max-age: -1
+            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -729,5 +725,3 @@ items:
               - url.query_args
               - user.permissions
             tags: {  }
-      _core:
-        default_config_hash: j0txIxY4nkJT_dscmXckM-1vanygDkJAeHPawZKfyH0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
index 35a0f86..263d0a9 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
@@ -29,8 +29,6 @@ items:
           context_mapping: {  }
           uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558
       allow_other_conditions: false
-      _core:
-        default_config_hash: iT20tn_NJtM8wJg4u9mQZO1iFxzV1_lXjCevCgdSMOc
   -
     collection: ''
     name: core.entity_form_display.node.article.default
@@ -45,15 +43,15 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
+          - image.style.thumbnail
           - node.type.article
         module:
           - comment
-          - media_library
+          - focal_point
           - metatag
           - paragraphs
           - path
@@ -66,35 +64,32 @@ items:
         comment:
           type: comment_default
           weight: 12
-          region: content
           settings: {  }
           third_party_settings: {  }
+          region: content
         created:
           type: datetime_timestamp
           weight: 9
-          region: content
           settings: {  }
           third_party_settings: {  }
+          region: content
         field_article_type:
-          type: options_select
           weight: 1
-          region: content
           settings: {  }
           third_party_settings: {  }
+          type: options_select
+          region: content
         field_authors:
           type: entity_reference_autocomplete
           weight: 2
           region: content
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
         field_body_paragraph:
-          type: entity_reference_paragraphs
           weight: 5
-          region: content
           settings:
             title: Paragraph
             title_plural: Paragraphs
@@ -103,100 +98,93 @@ items:
             form_display_mode: default
             default_paragraph_type: text
           third_party_settings: {  }
-        field_media_image:
-          type: media_library_widget
+          type: entity_reference_paragraphs
+          region: content
+        field_image:
+          type: image_focal_point
           weight: 3
-          region: content
           settings:
-            media_types: {  }
+            progress_indicator: throbber
+            preview_image_style: thumbnail
+            preview_link: true
+            offsets: '50,50'
           third_party_settings: {  }
+          region: content
         field_meta_tags:
-          type: metatag_firehose
           weight: 14
-          region: content
-          settings:
-            sidebar: true
-            use_details: true
+          settings: {  }
           third_party_settings: {  }
-        field_summary:
-          type: text_textarea
-          weight: 4
+          type: metatag_firehose
           region: content
+        field_summary:
+          weight: 4
           settings:
             rows: 5
             placeholder: ''
           third_party_settings: {  }
+          type: text_textarea
+          region: content
         field_tags:
           type: entity_reference_autocomplete_tags
           weight: 7
-          region: content
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        field_topics:
-          type: options_select
-          weight: 6
           region: content
+        field_topics:
+          weight: 6
           settings: {  }
           third_party_settings: {  }
+          type: options_select
+          region: content
         path:
           type: path
           weight: 13
-          region: content
           settings: {  }
           third_party_settings: {  }
+          region: content
         promote:
           type: boolean_checkbox
-          weight: 10
-          region: content
           settings:
             display_label: true
+          weight: 10
           third_party_settings: {  }
+          region: content
         status:
           type: boolean_checkbox
-          weight: 15
-          region: content
           settings:
             display_label: true
+          weight: 15
+          region: content
           third_party_settings: {  }
         sticky:
           type: boolean_checkbox
-          weight: 11
-          region: content
           settings:
             display_label: true
+          weight: 11
           third_party_settings: {  }
+          region: content
         title:
           type: string_textfield
           weight: 0
-          region: content
           settings:
             size: 60
             placeholder: ''
           third_party_settings: {  }
+          region: content
         uid:
           type: entity_reference_autocomplete
           weight: 8
-          region: content
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        url_redirects:
-          weight: 50
           region: content
-          settings: {  }
-          third_party_settings: {  }
       hidden:
         body: true
-        field_image: true
-      _core:
-        default_config_hash: IoPDh61dBqTARwYg-wHNrBefmZFYUDm0GkOgU9uwTzc
   -
     collection: ''
     name: core.entity_view_display.node.article.box
@@ -212,7 +200,6 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
@@ -229,14 +216,14 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
               - node_title
@@ -268,15 +255,11 @@ items:
         field_authors: true
         field_body_paragraph: true
         field_image: true
-        field_media_image: true
         field_meta_tags: true
         field_summary: true
         field_tags: true
         field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: R9tuDrmDPfh6a1qQPTW0tPl6D4Y8_Biq_XnfVayhhfs
   -
     collection: ''
     name: core.entity_view_display.node.article.card
@@ -292,17 +275,16 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
           - node.type.article
-          - responsive_image.styles.drutopia_card
+          - responsive_image.styles.narrow
         module:
           - ds
           - field_group
-          - media_responsive_thumbnail
+          - responsive_image
           - text
           - user
       third_party_settings:
@@ -313,25 +295,28 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - group_card_content
-              - group_card_content_bottom
               - node_post_date
               - node_title
               - field_summary
               - field_topics
           fields:
+            node_post_date:
+              plugin_id: node_post_date
+              weight: 3
+              label: hidden
+              formatter: ds_post_date_month_day_year
             node_title:
               plugin_id: node_title
               weight: 4
@@ -341,96 +326,68 @@ items:
                 link: true
                 wrapper: h2
                 class: ''
-            node_post_date:
-              plugin_id: node_post_date
-              weight: 3
-              label: hidden
-              formatter: ds_post_date_month_day_year
         field_group:
           group_card_content:
             children:
               - node_post_date
               - node_title
               - field_summary
-            label: 'Card content'
+              - field_topics
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
-          group_card_content_bottom:
-            children:
-              - field_topics
-            label: 'Card content bottom'
-            parent_name: ''
-            region: ds_content
-            weight: 2
-            format_type: html_element
-            format_settings:
-              classes: ''
-              id: ''
-              element: div
-              show_label: false
-              label_element: h3
-              label_element_classes: ''
-              attributes: ''
-              effect: none
-              speed: fast
+            label: 'Card content'
+            region: hidden
       id: node.article.card
       targetEntityType: node
       bundle: article
       mode: card
       content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: content
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
           region: ds_content
+          label: visually_hidden
+          settings:
+            responsive_image_style: narrow
+            image_link: content
+          third_party_settings: {  }
         field_summary:
           type: text_trimmed
-          label: hidden
+          weight: 5
+          region: ds_content
+          label: visually_hidden
           settings:
             trim_length: 180
           third_party_settings: {  }
-          weight: 5
-          region: ds_content
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 6
+          region: ds_content
+          label: visually_hidden
           settings:
             link: true
           third_party_settings:
             ds:
               ds_limit: ''
-          weight: 6
-          region: ds_content
       hidden:
         body: true
         comment: true
         field_article_type: true
         field_authors: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: xE6f9sE86YLSawIj-Aj-dqLPkqe8otRQMqeqB8Vt8_w
   -
     collection: ''
     name: core.entity_view_display.node.article.default
@@ -445,80 +402,30 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
           - node.type.article
         module:
-          - entity_reference_revisions
           - user
       id: node.article.default
       targetEntityType: node
       bundle: article
       mode: default
-      content:
-        field_article_type:
-          type: entity_reference_label
-          label: above
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 1
-          region: content
-        field_authors:
-          type: entity_reference_label
-          label: above
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 3
-          region: content
-        field_body_paragraph:
-          type: entity_reference_revisions_entity_view
-          label: hidden
-          settings:
-            view_mode: default
-            link: ''
-          third_party_settings: {  }
-          weight: 4
-          region: content
-        field_media_image:
-          type: entity_reference_entity_view
-          label: hidden
-          settings:
-            view_mode: default
-            link: false
-          third_party_settings: {  }
-          weight: 0
-          region: content
-        field_tags:
-          type: entity_reference_label
-          label: above
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 5
-          region: content
-        field_topics:
-          type: entity_reference_label
-          label: above
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 2
-          region: content
+      content: {  }
       hidden:
         body: true
         comment: true
+        field_article_type: true
+        field_authors: true
+        field_body_paragraph: true
         field_image: true
         field_meta_tags: true
         field_summary: true
+        field_tags: true
+        field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 36k64J9Ih_h9bjFrwcLtFqFWZwUlnObe0ZfqiG-OCgk
   -
     collection: ''
     name: core.entity_view_display.node.article.full
@@ -535,18 +442,17 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
           - node.type.article
-          - responsive_image.styles.drutopia_main
+          - responsive_image.styles.wide
         module:
           - comment
           - ds
           - entity_reference_revisions
-          - media_responsive_thumbnail
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -556,8 +462,6 @@ items:
             disable_css: true
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 header: div
                 left: div
@@ -568,10 +472,11 @@ items:
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             header:
-              - field_media_image
+              - field_image
             left:
               - node_post_date
               - field_authors
@@ -594,81 +499,75 @@ items:
       mode: full
       content:
         comment:
-          type: comment_default
           label: above
-          settings:
-            view_mode: default
-            pager_id: 0
-          third_party_settings: {  }
+          type: comment_default
           weight: 7
+          settings:
+            pager_id: 0
+            view_mode: default
+          third_party_settings: {  }
           region: middle
         field_article_type:
-          type: entity_reference_label
-          label: hidden
+          weight: 4
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 4
+          type: entity_reference_label
           region: middle
         field_authors:
           type: entity_reference_label
-          label: hidden
+          weight: 2
+          region: left
+          label: visually_hidden
           settings:
             link: true
           third_party_settings:
             ds:
               ds_limit: ''
-          weight: 2
-          region: left
         field_body_paragraph:
-          type: entity_reference_revisions_entity_view
-          label: hidden
+          weight: 3
+          label: visually_hidden
           settings:
             view_mode: default
             link: ''
           third_party_settings: {  }
-          weight: 3
+          type: entity_reference_revisions_entity_view
           region: middle
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_main
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
+          settings:
+            responsive_image_style: wide
+            image_link: ''
+          third_party_settings: {  }
+          label: visually_hidden
           region: header
         field_tags:
           type: entity_reference_label
+          weight: 6
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 6
           region: middle
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 5
+          region: middle
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 5
-          region: middle
         links:
-          settings: {  }
-          third_party_settings: {  }
           weight: 8
           region: middle
+          settings: {  }
+          third_party_settings: {  }
       hidden:
         body: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: RT_7MhkI9uUn9cu6UzAX5JL1XbXUyu_e4l7gvc5aID8
   -
     collection: ''
     name: core.entity_view_display.node.article.media
@@ -684,17 +583,16 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
-          - image.style.medium
+          - image.style.square_thumbnail
           - node.type.article
         module:
           - ds
           - field_group
-          - media
+          - image
           - user
       third_party_settings:
         ds:
@@ -704,19 +602,18 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
               - group_media_left
-              - field_media_image
+              - field_image
               - group_media_content
               - node_title
               - field_topics
@@ -735,75 +632,69 @@ items:
             children:
               - node_title
               - field_topics
-            label: 'Media content'
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+            label: 'Media content'
+            region: hidden
           group_media_left:
             children:
-              - field_media_image
-            label: 'Media left'
+              - field_image
             parent_name: ''
-            region: ds_content
             weight: 0
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+            label: 'Media left'
+            region: hidden
       id: node.article.media
       targetEntityType: node
       bundle: article
       mode: media
       content:
-        field_media_image:
-          type: media_thumbnail
-          label: hidden
-          settings:
-            image_link: content
-            image_style: medium
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: image
           weight: 0
           region: ds_content
+          label: visually_hidden
+          settings:
+            image_style: square_thumbnail
+            image_link: content
+          third_party_settings: {  }
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 3
+          region: ds_content
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 3
-          region: ds_content
       hidden:
         body: true
         comment: true
         field_article_type: true
         field_authors: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
         field_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 4x38cJIClkq6DqpaPCgbmNJDykQNH8427FiUXCYH9Gc
   -
     collection: ''
     name: core.entity_view_display.node.article.rss
@@ -819,14 +710,15 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
+          - image.style.small_square
           - node.type.article
         module:
           - ds
+          - image
           - taxonomy
           - text
           - user
@@ -838,17 +730,17 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
+              - field_image
               - node_title
               - field_summary
               - field_topics
@@ -868,38 +760,42 @@ items:
       bundle: article
       mode: rss
       content:
+        field_image:
+          type: image
+          weight: 0
+          label: hidden
+          settings:
+            image_style: small_square
+            image_link: ''
+          third_party_settings: {  }
+          region: ds_content
         field_summary:
           type: text_default
+          weight: 2
           label: hidden
           settings: {  }
           third_party_settings: {  }
-          weight: 2
           region: ds_content
         field_topics:
           type: entity_reference_rss_category
+          weight: 3
+          region: ds_content
           label: inline
           settings: {  }
           third_party_settings: {  }
-          weight: 3
-          region: ds_content
         links:
-          settings: {  }
-          third_party_settings: {  }
           weight: 4
           region: ds_content
+          settings: {  }
+          third_party_settings: {  }
       hidden:
         body: true
         comment: true
         field_article_type: true
         field_authors: true
         field_body_paragraph: true
-        field_image: true
-        field_media_image: true
         field_meta_tags: true
         field_tags: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: Kwog5A7LRf57Az8kON5ZaEKeeRi8x1ieEksSX8lGZJM
   -
     collection: ''
     name: core.entity_view_display.node.article.search_index
@@ -915,90 +811,100 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
           - node.type.article
         module:
+          - ds
           - entity_reference_revisions
-          - media
-          - text
+          - responsive_image
           - user
+      third_party_settings:
+        ds:
+          layout:
+            id: ds_1col
+            library: null
+            disable_css: false
+            entity_classes: all_classes
+            settings:
+              wrappers:
+                ds_content: div
+              outer_wrapper: div
+              attributes: ''
+              link_attribute: ''
+              link_custom: ''
+              classes:
+                layout_class: {  }
+          regions:
+            ds_content:
+              - field_image
+              - field_authors
+              - node_post_date
+              - field_body_paragraph
+              - field_topics
+              - field_tags
+          fields:
+            node_post_date:
+              plugin_id: node_post_date
+              weight: 2
+              label: hidden
+              formatter: ds_post_date_month_day_year
       id: node.article.search_index
       targetEntityType: node
       bundle: article
       mode: search_index
       content:
-        field_article_type:
-          type: entity_reference_label
-          label: hidden
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 7
-          region: content
         field_authors:
           type: entity_reference_label
+          weight: 1
+          region: ds_content
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 2
-          region: content
         field_body_paragraph:
           type: entity_reference_revisions_entity_view
+          weight: 3
+          region: ds_content
           label: hidden
           settings:
             view_mode: default
             link: ''
           third_party_settings: {  }
-          weight: 4
-          region: content
-        field_media_image:
-          type: media_thumbnail
+        field_image:
+          type: responsive_image
+          weight: 0
+          region: ds_content
           label: hidden
           settings:
+            responsive_image_style: ''
             image_link: ''
-            image_style: ''
-            image_loading:
-              attribute: lazy
           third_party_settings: {  }
-          weight: 1
-          region: content
-        field_summary:
-          type: text_default
-          label: hidden
-          settings: {  }
-          third_party_settings: {  }
-          weight: 0
-          region: content
         field_tags:
           type: entity_reference_label
+          weight: 5
+          region: ds_content
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 6
-          region: content
         field_topics:
           type: entity_reference_label
+          weight: 4
+          region: ds_content
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 5
-          region: content
       hidden:
         body: true
         comment: true
-        field_image: true
+        field_article_type: true
         field_meta_tags: true
+        field_summary: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: dToWFUVSfEOoDvE9B6ydW6UwI9bTe4VepVMxeYlHlt8
   -
     collection: ''
     name: core.entity_view_display.node.article.simple_card
@@ -1014,17 +920,16 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
           - field.field.node.article.field_topics
           - node.type.article
-          - responsive_image.styles.drutopia_card
+          - responsive_image.styles.narrow
         module:
           - ds
           - field_group
-          - media_responsive_thumbnail
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -1034,22 +939,26 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - 'bundle_field:node'
               - group_card_content
               - node_title
           fields:
+            'bundle_field:node':
+              plugin_id: 'bundle_field:node'
+              weight: 0
+              label: hidden
+              formatter: default
             node_title:
               plugin_id: node_title
               weight: 1
@@ -1060,61 +969,50 @@ items:
                 wrapper: h2
                 class: ''
                 exclude_node_title: '1'
-            'bundle_field:node':
-              plugin_id: 'bundle_field:node'
-              weight: 0
-              label: hidden
-              formatter: default
         field_group:
           group_card_content:
             children:
               - 'bundle_field:node'
               - node_title
-            label: 'Card content'
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+            label: 'Card content'
+            region: hidden
       id: node.article.simple_card
       targetEntityType: node
       bundle: article
       mode: simple_card
       content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: content
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
           region: ds_content
+          label: visually_hidden
+          settings:
+            responsive_image_style: narrow
+            image_link: content
+          third_party_settings: {  }
       hidden:
         body: true
         comment: true
         field_article_type: true
         field_authors: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
         field_tags: true
         field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: pFMSJiKIepy570vXhXY-pMgof9DL1jHz0oe_DNL7e0o
   -
     collection: ''
     name: core.entity_view_display.node.article.teaser
@@ -1130,7 +1028,6 @@ items:
           - field.field.node.article.field_authors
           - field.field.node.article.field_body_paragraph
           - field.field.node.article.field_image
-          - field.field.node.article.field_media_image
           - field.field.node.article.field_meta_tags
           - field.field.node.article.field_summary
           - field.field.node.article.field_tags
@@ -1139,7 +1036,7 @@ items:
           - responsive_image.styles.narrow
         module:
           - ds
-          - media_responsive_thumbnail
+          - responsive_image
           - text
           - user
       third_party_settings:
@@ -1150,8 +1047,6 @@ items:
             disable_css: true
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 left: div
                 right: div
@@ -1159,10 +1054,11 @@ items:
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             left:
-              - field_media_image
+              - field_image
             right:
               - node_post_date
               - node_title
@@ -1191,50 +1087,44 @@ items:
       content:
         field_authors:
           type: entity_reference_label
-          label: hidden
+          weight: 3
+          region: right
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 3
-          region: right
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
+        field_image:
+          type: responsive_image
+          weight: 0
           settings:
             responsive_image_style: narrow
             image_link: content
-            image_loading:
-              attribute: lazy
           third_party_settings: {  }
-          weight: 0
+          label: visually_hidden
           region: left
         field_summary:
           type: text_default
-          label: hidden
+          weight: 4
+          label: visually_hidden
           settings: {  }
           third_party_settings: {  }
-          weight: 4
           region: right
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 5
+          region: right
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 5
-          region: right
       hidden:
         body: true
         comment: true
         field_article_type: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: LdbKdOo5xzgO6lxARJTOA025DYLPHpqZQvTEZ65kNpE
   -
     collection: ''
     name: facets.facet.article_topics
@@ -1252,8 +1142,6 @@ items:
       url_alias: article_topics
       weight: 0
       min_count: 1
-      missing: false
-      missing_label: others
       show_only_one_result: false
       field_identifier: field_topics
       facet_source_id: 'search_api:views_page__article__page_listing'
@@ -1267,10 +1155,6 @@ items:
             show_more_label: 'Show more'
       query_operator: or
       use_hierarchy: false
-      keep_hierarchy_parents_active: false
-      hierarchy:
-        type: taxonomy
-        config: {  }
       expand_hierarchy: false
       enable_parent_when_child_gets_disabled: true
       hard_limit: 0
@@ -1297,8 +1181,6 @@ items:
       empty_behavior:
         behavior: none
       show_title: null
-      _core:
-        default_config_hash: aMbJzy29DPwTSRFIu_1WcaynVEivGMmHQ973ONIAzmc
   -
     collection: ''
     name: facets.facet.article_type
@@ -1316,8 +1198,6 @@ items:
       url_alias: article_type
       weight: 0
       min_count: 1
-      missing: false
-      missing_label: others
       show_only_one_result: false
       field_identifier: field_article_type
       facet_source_id: 'search_api:views_page__article__page_listing'
@@ -1331,10 +1211,6 @@ items:
             show_more_label: 'Show more'
       query_operator: or
       use_hierarchy: false
-      keep_hierarchy_parents_active: false
-      hierarchy:
-        type: taxonomy
-        config: {  }
       expand_hierarchy: false
       enable_parent_when_child_gets_disabled: true
       hard_limit: 0
@@ -1361,8 +1237,6 @@ items:
       empty_behavior:
         behavior: none
       show_title: null
-      _core:
-        default_config_hash: l5mPOMnF5ocmUOvIpRCfUFwBjq7StjVgPkG3jO27eAs
   -
     collection: ''
     name: field.field.node.article.body
@@ -1387,11 +1261,7 @@ items:
       default_value_callback: ''
       settings:
         display_summary: true
-        required_summary: false
-        allowed_formats: {  }
       field_type: text_with_summary
-      _core:
-        default_config_hash: 4Wxs1LseZ8JsNwD9uJVIbzZqG35yQXN8Eo1Hub6NMuI
   -
     collection: ''
     name: field.field.node.article.comment
@@ -1428,8 +1298,6 @@ items:
         form_location: false
         preview: 1
       field_type: comment
-      _core:
-        default_config_hash: r5hRugc6YdPtshnRHWTHfXqV-H4ayy4RUmYrjwtee_Q
   -
     collection: ''
     name: field.field.node.article.field_article_type
@@ -1461,8 +1329,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: sgfDlNErzrtqSZmOFogMgSbCrnNGqi9qI7n1nkU4Miw
   -
     collection: ''
     name: field.field.node.article.field_authors
@@ -1495,8 +1361,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: R0g08RdnWFjIcG24yv8h_an5OKMBYUqd31XpTgAN-xU
   -
     collection: ''
     name: field.field.node.article.field_body_paragraph
@@ -1557,8 +1421,6 @@ items:
               weight: -9
               enabled: false
       field_type: entity_reference_revisions
-      _core:
-        default_config_hash: zmbXArDMaD7OI9uW7TPK5-yqjX542fQ1zyARsCDKR58
   -
     collection: ''
     name: field.field.node.article.field_image
@@ -1575,69 +1437,31 @@ items:
       field_name: field_image
       entity_type: node
       bundle: article
-      label: 'Image (deprecated)'
-      description: 'Use Media image instead.'
-      required: false
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:file'
-        handler_settings: {  }
-        file_directory: '[date:custom:Y]-[date:custom:m]'
-        file_extensions: 'png gif jpg jpeg'
-        max_filesize: ''
-        max_resolution: ''
-        min_resolution: ''
-        alt_field: true
-        alt_field_required: true
-        title_field: false
-        title_field_required: false
-        default_image:
-          uuid: ''
-          alt: ''
-          title: ''
-          width: null
-          height: null
-      field_type: image
-      _core:
-        default_config_hash: _g6OvaJp-SmDwkd7ksSnoeNscNYVpaeiK2e2V-DexWk
-  -
-    collection: ''
-    name: field.field.node.article.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.node.field_media_image
-          - media.type.image
-          - node.type.article
-        module:
-          - media_library_media_modify
-      id: node.article.field_media_image
-      field_name: field_media_image
-      entity_type: node
-      bundle: article
-      label: 'Media image'
+      label: Image
       description: ''
       required: false
       translatable: true
       default_value: {  }
       default_value_callback: ''
       settings:
-        handler: 'default:media'
-        handler_settings:
-          target_bundles:
-            image: image
-          sort:
-            field: _none
-            direction: ASC
-          auto_create: false
-          auto_create_bundle: ''
-      field_type: entity_reference_entity_modify
-      _core:
-        default_config_hash: Qcn3JCSgkRcHCI7MD1-K4XLJ_GtzanMfIOL3Qnqx3n4
+        file_directory: '[date:custom:Y]-[date:custom:m]'
+        file_extensions: 'png gif jpg jpeg'
+        max_filesize: ''
+        max_resolution: ''
+        min_resolution: ''
+        alt_field: true
+        title_field: false
+        alt_field_required: true
+        title_field_required: false
+        default_image:
+          uuid: null
+          alt: ''
+          title: ''
+          width: null
+          height: null
+        handler: 'default:file'
+        handler_settings: {  }
+      field_type: image
   -
     collection: ''
     name: field.field.node.article.field_meta_tags
@@ -1664,8 +1488,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: metatag
-      _core:
-        default_config_hash: gtsKaCJiVxHYhlaPmNdE3yTfOfo_QGaoVNC0NhXk0T4
   -
     collection: ''
     name: field.field.node.article.field_summary
@@ -1688,11 +1510,8 @@ items:
       translatable: true
       default_value: {  }
       default_value_callback: ''
-      settings:
-        allowed_formats: {  }
+      settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: zFJNsKnw3lHQY-FIP2W518KwFHDbdoIujDVJ7ALsiLY
   -
     collection: ''
     name: field.field.node.article.field_tags
@@ -1723,8 +1542,6 @@ items:
             field: _none
           auto_create: true
       field_type: entity_reference
-      _core:
-        default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw
   -
     collection: ''
     name: field.field.node.article.field_topics
@@ -1757,8 +1574,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: s7YTdMGSG08vB0dJzeaYsUpxqfAOtRna6ptjOzUcUpo
   -
     collection: ''
     name: field.storage.node.field_article_type
@@ -1782,8 +1597,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: OXKi1lOkzdvllQeaPeFGNCH7pyjNUdXsiHsc2-w5_sI
   -
     collection: ''
     name: node.type.article
@@ -1798,8 +1611,6 @@ items:
       new_revision: true
       preview_mode: 1
       display_submitted: true
-      _core:
-        default_config_hash: AeW1SEDgb1OTQACAWGhzvMknMYAJlcZu0jljfeU3oso
   -
     collection: ''
     name: pathauto.pattern.article_type
@@ -1808,6 +1619,7 @@ items:
       status: true
       dependencies:
         module:
+          - ctools
           - taxonomy
       id: article_type
       label: 'Article type'
@@ -1825,8 +1637,6 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: Rcg9h-VqkNegI45Jc7z1yAFDLPCCUQf6PVBm2XtPFu4
   -
     collection: ''
     name: pathauto.pattern.node_article
@@ -1842,7 +1652,7 @@ items:
       pattern: 'articles/[node:title]'
       selection_criteria:
         03faf328-473f-4ba7-bafe-72df857287d9:
-          id: 'entity_bundle:node'
+          id: node_type
           bundles:
             article: article
           negate: false
@@ -1852,8 +1662,6 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: ccAZpESv4ZfBcJ6yMGWzpUboQCvuhFkwH_CB6e4rIHw
   -
     collection: ''
     name: rdf.mapping.node.article
@@ -1907,8 +1715,6 @@ items:
         field_tags:
           properties:
             - 'schema:about'
-      _core:
-        default_config_hash: IdobJe379eDudt7-bXFfJjF7pDqFl-kYxVFtpWrgkro
   -
     collection: ''
     name: search_api.index.article
@@ -1955,7 +1761,7 @@ items:
           datasource_id: 'entity:node'
           property_path: title
           type: text
-          boost: 8.0
+          boost: !!float 8
         field_tags:
           label: Tags
           datasource_id: 'entity:node'
@@ -2154,10 +1960,7 @@ items:
       options:
         index_directly: true
         cron_limit: 50
-        track_changes_in_references: true
       server: database
-      _core:
-        default_config_hash: mS4DxDqwZoIgBPzHPrV8CmozPYyECJGh1f0bgN4rlzs
   -
     collection: ''
     name: taxonomy.vocabulary.article_type
@@ -2169,8 +1972,6 @@ items:
       vid: article_type
       description: 'For categorizing articles.'
       weight: 0
-      _core:
-        default_config_hash: Uik12fWp9O8FJNPyHcdC9_pvMgRFD5puSLiuquIxo0A
   -
     collection: ''
     name: views.view.article
@@ -2191,6 +1992,7 @@ items:
       tag: ''
       base_table: search_api_index_article
       base_field: search_api_id
+      core: 8.x
       display:
         default:
           display_plugin: default
@@ -2206,7 +2008,7 @@ items:
               type: none
               options: {  }
             query:
-              type: search_api_query
+              type: views_query
               options:
                 bypass_access: false
                 skip_access: false
@@ -2401,5 +2203,3 @@ items:
               - url.query_args
               - user.permissions
             tags: {  }
-      _core:
-        default_config_hash: kdPpKbJz_zBnqJQMI6Q8Dr6ltKOVTRh2GvOgMZKZb-E
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
index cfbb98f..594e1b8 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
@@ -29,8 +29,6 @@ items:
           context_mapping: {  }
           uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc
       allow_other_conditions: false
-      _core:
-        default_config_hash: BY6B0phBkxMBePbxKu_qCUSqBpFoQ8n_A4Vw4anEqZk
   -
     collection: ''
     name: core.entity_form_display.node.blog.default
@@ -44,15 +42,15 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
           - field.field.node.blog.field_topics
+          - image.style.thumbnail
           - node.type.blog
         module:
           - comment
-          - media_library_media_modify
+          - focal_point
           - metatag
           - paragraphs
           - path
@@ -63,31 +61,28 @@ items:
       mode: default
       content:
         comment:
-          type: comment_default
           weight: 12
-          region: content
           settings: {  }
           third_party_settings: {  }
+          type: comment_default
+          region: content
         created:
           type: datetime_timestamp
           weight: 8
-          region: content
           settings: {  }
           third_party_settings: {  }
-        field_authors:
-          type: entity_reference_autocomplete
-          weight: 1
           region: content
+        field_authors:
+          weight: 1
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        field_body_paragraph:
-          type: entity_reference_paragraphs
-          weight: 3
+          type: entity_reference_autocomplete
           region: content
+        field_body_paragraph:
+          weight: 4
           settings:
             title: Paragraph
             title_plural: Paragraphs
@@ -96,105 +91,93 @@ items:
             form_display_mode: default
             default_paragraph_type: text
           third_party_settings: {  }
-        field_media_image:
-          type: media_library_media_modify_widget
-          weight: 4
+          type: entity_reference_paragraphs
           region: content
-          settings:
-            media_types: {  }
-            form_mode: main
-            check_selected: false
-            replace_checkbox_by_order_indicator: false
-            multi_edit_on_create: false
-            no_edit_on_create: false
-          third_party_settings: {  }
-        field_meta_tags:
-          type: metatag_firehose
-          weight: 13
-          region: content
-          settings:
-            sidebar: true
-            use_details: true
-          third_party_settings: {  }
-        field_summary:
-          type: text_textarea
+        field_image:
           weight: 2
+          settings:
+            progress_indicator: throbber
+            preview_image_style: thumbnail
+            preview_link: true
+            offsets: '50,50'
+          third_party_settings: {  }
+          type: image_focal_point
           region: content
+        field_meta_tags:
+          weight: 13
+          settings: {  }
+          third_party_settings: {  }
+          type: metatag_firehose
+          region: content
+        field_summary:
+          weight: 3
           settings:
             rows: 5
             placeholder: ''
           third_party_settings: {  }
-        field_tags:
-          type: entity_reference_autocomplete_tags
-          weight: 6
+          type: text_textarea
           region: content
+        field_tags:
+          weight: 6
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        field_topics:
-          type: options_select
-          weight: 5
+          type: entity_reference_autocomplete_tags
           region: content
+        field_topics:
+          weight: 5
           settings: {  }
           third_party_settings: {  }
+          type: options_select
+          region: content
         path:
           type: path
           weight: 11
-          region: content
           settings: {  }
           third_party_settings: {  }
+          region: content
         promote:
           type: boolean_checkbox
-          weight: 9
-          region: content
           settings:
             display_label: true
+          weight: 9
           third_party_settings: {  }
+          region: content
         status:
           type: boolean_checkbox
-          weight: 14
-          region: content
           settings:
             display_label: true
+          weight: 14
+          region: content
           third_party_settings: {  }
         sticky:
           type: boolean_checkbox
-          weight: 10
-          region: content
           settings:
             display_label: true
+          weight: 10
           third_party_settings: {  }
+          region: content
         title:
           type: string_textfield
           weight: 0
-          region: content
           settings:
             size: 60
             placeholder: ''
           third_party_settings: {  }
+          region: content
         uid:
           type: entity_reference_autocomplete
           weight: 7
-          region: content
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        url_redirects:
-          weight: 15
           region: content
-          settings: {  }
-          third_party_settings: {  }
       hidden:
         body: true
-        field_image: true
-      _core:
-        default_config_hash: gJYbXNSqzl7m-yUYyd36nfdOepKpvJut_hStwXo5oGI
   -
     collection: ''
     name: core.entity_view_display.node.blog.card
@@ -209,17 +192,16 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
           - field.field.node.blog.field_topics
           - node.type.blog
-          - responsive_image.styles.drutopia_card
+          - responsive_image.styles.narrow
         module:
           - ds
           - field_group
-          - media_responsive_thumbnail
+          - responsive_image
           - text
           - user
       third_party_settings:
@@ -230,20 +212,18 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - group_card_content
-              - group_card_content_bottom
               - node_title
               - field_authors
               - field_summary
@@ -264,38 +244,21 @@ items:
               - node_title
               - field_authors
               - field_summary
-            label: 'Card content'
+              - field_topics
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
-          group_card_content_bottom:
-            children:
-              - field_topics
-            label: 'Card content bottom'
-            parent_name: ''
-            region: ds_content
-            weight: 2
-            format_type: html_element
-            format_settings:
-              classes: ''
-              id: ''
-              element: div
-              show_label: false
-              label_element: h3
-              label_element_classes: ''
-              attributes: ''
-              effect: none
-              speed: fast
+            label: 'Card content'
+            region: hidden
       id: node.blog.card
       targetEntityType: node
       bundle: blog
@@ -303,49 +266,43 @@ items:
       content:
         field_authors:
           type: entity_reference_label
-          label: hidden
-          settings:
-            link: true
-          third_party_settings: {  }
           weight: 4
           region: ds_content
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: ds_content
-        field_summary:
-          type: text_default
-          label: hidden
-          settings: {  }
-          third_party_settings: {  }
-          weight: 5
-          region: ds_content
-        field_topics:
-          type: entity_reference_label
-          label: hidden
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
+        field_image:
+          type: responsive_image
+          weight: 0
+          region: ds_content
+          label: visually_hidden
+          settings:
+            responsive_image_style: narrow
+            image_link: content
+          third_party_settings: {  }
+        field_summary:
+          type: text_default
+          weight: 5
+          region: ds_content
+          label: visually_hidden
+          settings: {  }
+          third_party_settings: {  }
+        field_topics:
+          type: entity_reference_label
           weight: 6
           region: ds_content
+          label: visually_hidden
+          settings:
+            link: true
+          third_party_settings: {  }
       hidden:
         body: true
         comment: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: fZbsOhcT17ToWwSr5WZR9efC6kPfSZDT0Lyfrw4AW7g
   -
     collection: ''
     name: core.entity_view_display.node.blog.default
@@ -359,7 +316,6 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
@@ -376,32 +332,20 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
-          regions:
-            ds_content:
-              - field_media_image
+              classes:
+                layout_class: {  }
+          regions: {  }
       id: node.blog.default
       targetEntityType: node
       bundle: blog
       mode: default
-      content:
-        field_media_image:
-          type: entity_reference_entity_view
-          label: hidden
-          settings:
-            view_mode: default
-            link: false
-          third_party_settings: {  }
-          weight: 1
-          region: ds_content
+      content: {  }
       hidden:
         body: true
         comment: true
@@ -413,9 +357,6 @@ items:
         field_tags: true
         field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: ImTK-3oAc-aqtw5x2OslU4EkaRdc5oYWo_XevaTPHbY
   -
     collection: ''
     name: core.entity_view_display.node.blog.full
@@ -431,18 +372,17 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
           - field.field.node.blog.field_topics
           - node.type.blog
-          - responsive_image.styles.drutopia_main
+          - responsive_image.styles.wide
         module:
           - comment
           - ds
           - entity_reference_revisions
-          - media_responsive_thumbnail
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -452,8 +392,6 @@ items:
             disable_css: true
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 header: div
                 left: div
@@ -464,10 +402,11 @@ items:
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             header:
-              - field_media_image
+              - field_image
             left:
               - field_authors
             middle:
@@ -478,85 +417,79 @@ items:
               - node_links
               - comment
           fields:
-            node_links:
-              plugin_id: node_links
-              weight: 6
-              label: hidden
-              formatter: default
             node_post_date:
               plugin_id: node_post_date
               weight: 2
               label: hidden
               formatter: ds_post_date_month_day_year
+            node_links:
+              plugin_id: node_links
+              weight: 6
+              label: hidden
+              formatter: default
       id: node.blog.full
       targetEntityType: node
       bundle: blog
       mode: full
       content:
         comment:
-          type: comment_default
+          weight: 7
           label: above
           settings:
-            view_mode: default
             pager_id: 0
+            view_mode: default
           third_party_settings: {  }
-          weight: 7
+          type: comment_default
           region: middle
         field_authors:
           type: entity_reference_label
-          label: hidden
+          weight: 1
+          region: left
+          label: visually_hidden
           settings:
             link: true
           third_party_settings:
             ds:
               ds_limit: ''
-          weight: 1
-          region: left
         field_body_paragraph:
-          type: entity_reference_revisions_entity_view
-          label: hidden
+          weight: 3
+          label: visually_hidden
           settings:
             view_mode: default
             link: ''
           third_party_settings: {  }
-          weight: 3
+          type: entity_reference_revisions_entity_view
           region: middle
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_main
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
           weight: 0
+          label: visually_hidden
+          settings:
+            responsive_image_style: wide
+            image_link: ''
+          third_party_settings: {  }
+          type: responsive_image
           region: header
         field_tags:
-          type: entity_reference_label
-          label: hidden
+          weight: 5
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 5
+          type: entity_reference_label
           region: middle
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 4
+          region: middle
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 4
-          region: middle
       hidden:
         body: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 4ZfS_Z10S3CoO0d96Fj5X_zPHWrGJx0abq31G1ZO1TU
   -
     collection: ''
     name: core.entity_view_display.node.blog.media
@@ -571,17 +504,16 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
           - field.field.node.blog.field_topics
-          - image.style.media_library
+          - image.style.square_thumbnail
           - node.type.blog
         module:
           - ds
           - field_group
-          - media
+          - image
           - user
       third_party_settings:
         ds:
@@ -591,20 +523,19 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
               - group_media_left
-              - field_media_image
               - group_media_content
+              - field_image
               - node_title
               - field_topics
           fields:
@@ -620,76 +551,71 @@ items:
         field_group:
           group_media_left:
             children:
-              - field_media_image
-            label: 'Media left'
+              - field_image
             parent_name: ''
-            region: ds_content
             weight: 0
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+            label: 'Media left'
+            region: hidden
           group_media_content:
             children:
               - node_title
               - field_topics
-            label: 'Media content'
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
-              id: ''
+              label: 'Media content'
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+              id: ''
+              classes: ''
+            label: 'Media content'
+            region: hidden
       id: node.blog.media
       targetEntityType: node
       bundle: blog
       mode: media
       content:
-        field_media_image:
-          type: media_thumbnail
-          label: hidden
-          settings:
-            image_link: ''
-            image_style: media_library
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
+        field_image:
+          type: image
+          weight: 2
           region: ds_content
+          label: visually_hidden
+          settings:
+            image_style: square_thumbnail
+            image_link: content
+          third_party_settings: {  }
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 3
+          region: ds_content
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 3
-          region: ds_content
       hidden:
         body: true
         comment: true
         field_authors: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
         field_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: tyJ0i9SWeKAdXCELGSOKNiqPVRxs7rZC_4NPXlFzgw4
   -
     collection: ''
     name: core.entity_view_display.node.blog.search_index
@@ -704,7 +630,6 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
@@ -713,7 +638,7 @@ items:
         module:
           - ds
           - entity_reference_revisions
-          - media
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -723,18 +648,17 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - field_authors
               - node_post_date
               - field_body_paragraph
@@ -753,62 +677,56 @@ items:
       content:
         field_authors:
           type: entity_reference_label
+          weight: 1
+          region: ds_content
           label: hidden
           settings:
             link: true
           third_party_settings:
             ds:
               ds_limit: ''
-          weight: 1
-          region: ds_content
         field_body_paragraph:
           type: entity_reference_revisions_entity_view
+          weight: 3
+          region: ds_content
           label: hidden
           settings:
             view_mode: default
             link: ''
           third_party_settings: {  }
-          weight: 3
-          region: ds_content
-        field_media_image:
-          type: media_thumbnail
-          label: hidden
-          settings:
-            image_link: ''
-            image_style: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
           region: ds_content
+          label: hidden
+          settings:
+            responsive_image_style: ''
+            image_link: ''
+          third_party_settings: {  }
         field_tags:
           type: entity_reference_label
+          weight: 5
+          region: ds_content
           label: hidden
           settings:
             link: true
           third_party_settings:
             ds:
               ds_limit: ''
-          weight: 5
-          region: ds_content
         field_topics:
           type: entity_reference_label
+          weight: 4
+          region: ds_content
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 4
-          region: ds_content
       hidden:
         body: true
         comment: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: is6wdcdUBUrn4zwiKcd9isfY9VbMOAuOoOAms-OfEaw
   -
     collection: ''
     name: core.entity_view_display.node.blog.simple_card
@@ -823,17 +741,16 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
           - field.field.node.blog.field_topics
           - node.type.blog
-          - responsive_image.styles.drutopia_card
+          - responsive_image.styles.narrow
         module:
           - ds
           - field_group
-          - media_responsive_thumbnail
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -843,22 +760,26 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - group_card_content
               - 'bundle_field:node'
               - node_title
           fields:
+            'bundle_field:node':
+              plugin_id: 'bundle_field:node'
+              weight: 2
+              label: hidden
+              formatter: default
             node_title:
               plugin_id: node_title
               weight: 3
@@ -869,60 +790,49 @@ items:
                 wrapper: h2
                 class: ''
                 exclude_node_title: '1'
-            'bundle_field:node':
-              plugin_id: 'bundle_field:node'
-              weight: 2
-              label: hidden
-              formatter: default
         field_group:
           group_card_content:
             children:
               - 'bundle_field:node'
               - node_title
-            label: 'Card content'
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+            label: 'Card content'
+            region: hidden
       id: node.blog.simple_card
       targetEntityType: node
       bundle: blog
       mode: simple_card
       content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
           region: ds_content
+          label: visually_hidden
+          settings:
+            responsive_image_style: narrow
+            image_link: content
+          third_party_settings: {  }
       hidden:
         body: true
         comment: true
         field_authors: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_summary: true
         field_tags: true
         field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: B4wGOCyu2sefG5yxbONx-U0xIsYU-8mhC3o2EoqccCw
   -
     collection: ''
     name: core.entity_view_display.node.blog.teaser
@@ -937,16 +847,15 @@ items:
           - field.field.node.blog.field_authors
           - field.field.node.blog.field_body_paragraph
           - field.field.node.blog.field_image
-          - field.field.node.blog.field_media_image
           - field.field.node.blog.field_meta_tags
           - field.field.node.blog.field_summary
           - field.field.node.blog.field_tags
           - field.field.node.blog.field_topics
           - node.type.blog
-          - responsive_image.styles.drutopia_card
+          - responsive_image.styles.narrow
         module:
           - ds
-          - media_responsive_thumbnail
+          - responsive_image
           - text
           - user
       third_party_settings:
@@ -957,8 +866,6 @@ items:
             disable_css: true
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 left: div
                 right: div
@@ -966,10 +873,11 @@ items:
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             left:
-              - field_media_image
+              - field_image
             right:
               - node_post_date
               - node_title
@@ -977,6 +885,11 @@ items:
               - field_summary
               - field_topics
           fields:
+            node_post_date:
+              plugin_id: node_post_date
+              weight: 1
+              label: hidden
+              formatter: ds_post_date_month_day_year
             node_title:
               plugin_id: node_title
               weight: 2
@@ -986,11 +899,6 @@ items:
                 link: true
                 wrapper: h2
                 class: ''
-            node_post_date:
-              plugin_id: node_post_date
-              weight: 1
-              label: hidden
-              formatter: ds_post_date_month_day_year
       id: node.blog.teaser
       targetEntityType: node
       bundle: blog
@@ -998,49 +906,43 @@ items:
       content:
         field_authors:
           type: entity_reference_label
-          label: hidden
+          weight: 3
+          region: right
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 3
-          region: right
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
+          label: visually_hidden
+          settings:
+            responsive_image_style: narrow
+            image_link: content
+          third_party_settings: {  }
           region: left
         field_summary:
           type: text_default
-          label: hidden
+          weight: 4
+          label: visually_hidden
           settings: {  }
           third_party_settings: {  }
-          weight: 4
           region: right
         field_topics:
           type: entity_reference_label
-          label: hidden
+          weight: 5
+          region: right
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 5
-          region: right
       hidden:
         body: true
         comment: true
         field_body_paragraph: true
-        field_image: true
         field_meta_tags: true
         field_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: eMJT1H3QrF7bnxGsMPL4uZQ_UbsBwtkiYCsvBABIVCE
   -
     collection: ''
     name: facets.facet.blog_topics
@@ -1058,8 +960,6 @@ items:
       url_alias: blog_topics
       weight: 0
       min_count: 1
-      missing: false
-      missing_label: others
       show_only_one_result: false
       field_identifier: field_topics
       facet_source_id: 'search_api:views_page__blog__page_listing'
@@ -1073,10 +973,6 @@ items:
             show_more_label: 'Show more'
       query_operator: or
       use_hierarchy: false
-      keep_hierarchy_parents_active: false
-      hierarchy:
-        type: taxonomy
-        config: {  }
       expand_hierarchy: false
       enable_parent_when_child_gets_disabled: true
       hard_limit: 0
@@ -1109,8 +1005,6 @@ items:
       empty_behavior:
         behavior: none
       show_title: null
-      _core:
-        default_config_hash: FCCrzUdSW6PQvRmBb-14tGvWstB3WGVn__X_FZXuyfU
   -
     collection: ''
     name: field.field.node.blog.body
@@ -1135,11 +1029,7 @@ items:
       default_value_callback: ''
       settings:
         display_summary: true
-        required_summary: false
-        allowed_formats: {  }
       field_type: text_with_summary
-      _core:
-        default_config_hash: pAztVcOiuynLqh1ehRwqRDvFSXnGUNahnBkzXwYnoHk
   -
     collection: ''
     name: field.field.node.blog.comment
@@ -1176,8 +1066,6 @@ items:
         form_location: false
         preview: 1
       field_type: comment
-      _core:
-        default_config_hash: 2u1516pRLPEEjj2VR3MThKwKK3RmbjpI2CnKvwUJG_w
   -
     collection: ''
     name: field.field.node.blog.field_authors
@@ -1210,8 +1098,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: RLR-cg4JkgDP52sJp856cLP0btRGIdldE04Zph2UIk8
   -
     collection: ''
     name: field.field.node.blog.field_body_paragraph
@@ -1249,8 +1135,6 @@ items:
               weight: -7
               enabled: false
       field_type: entity_reference_revisions
-      _core:
-        default_config_hash: FLtvcFPffBH3zBV90mr2s-PH9FMXSrPlUOTAWEdf8SA
   -
     collection: ''
     name: field.field.node.blog.field_image
@@ -1267,15 +1151,13 @@ items:
       field_name: field_image
       entity_type: node
       bundle: blog
-      label: 'Image (DEPRECATED)'
+      label: Image
       description: ''
       required: false
       translatable: true
       default_value: {  }
       default_value_callback: ''
       settings:
-        handler: 'default:file'
-        handler_settings: {  }
         file_directory: '[date:custom:Y]-[date:custom:m]'
         file_extensions: 'png gif jpg jpeg'
         max_filesize: ''
@@ -1291,45 +1173,9 @@ items:
           title: ''
           width: null
           height: null
+        handler: 'default:file'
+        handler_settings: {  }
       field_type: image
-      _core:
-        default_config_hash: bgBvF28MNkkDTcAUmn21EQapStkUW4CD9Mtd9Ha9hOg
-  -
-    collection: ''
-    name: field.field.node.blog.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.node.field_media_image
-          - media.type.image
-          - node.type.blog
-        module:
-          - media_library_media_modify
-      id: node.blog.field_media_image
-      field_name: field_media_image
-      entity_type: node
-      bundle: blog
-      label: 'Media image'
-      description: ''
-      required: false
-      translatable: false
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:media'
-        handler_settings:
-          target_bundles:
-            image: image
-          sort:
-            field: _none
-            direction: ASC
-          auto_create: false
-          auto_create_bundle: ''
-      field_type: entity_reference_entity_modify
-      _core:
-        default_config_hash: f46zn4uaJdean3NGK8lZ8_kt8kf1D2vh-JeBOF2xydI
   -
     collection: ''
     name: field.field.node.blog.field_meta_tags
@@ -1356,8 +1202,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: metatag
-      _core:
-        default_config_hash: 43SnkPqaaVhhp2JBx3vtRkUmdLNswdhBMP4VKjxI_gc
   -
     collection: ''
     name: field.field.node.blog.field_summary
@@ -1380,11 +1224,8 @@ items:
       translatable: true
       default_value: {  }
       default_value_callback: ''
-      settings:
-        allowed_formats: {  }
+      settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: _d0Wpv5JicuiVOtdyeU3s6lHlMQR-iC4YkBLMDyDBWE
   -
     collection: ''
     name: field.field.node.blog.field_tags
@@ -1415,8 +1256,6 @@ items:
             field: _none
           auto_create: true
       field_type: entity_reference
-      _core:
-        default_config_hash: quGdfscmU2kZSXdGqeqxHMXJ8XqPjq3cuQuN8BYBllw
   -
     collection: ''
     name: field.field.node.blog.field_topics
@@ -1449,8 +1288,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: qJeUuy3m8P3cWrbXno5irZyYFFMKRget3ObasudltjM
   -
     collection: ''
     name: node.type.blog
@@ -1472,8 +1309,6 @@ items:
       new_revision: false
       preview_mode: 1
       display_submitted: true
-      _core:
-        default_config_hash: 2tOuWCHTBNQL6qHpVU0Fp4sBGevWZAkXhAaPBu3HyN8
   -
     collection: ''
     name: pathauto.pattern.node_blog
@@ -1489,7 +1324,7 @@ items:
       pattern: 'blog/[node:title]'
       selection_criteria:
         cbbc8b23-30be-44a8-969b-ef9c72e952ab:
-          id: 'entity_bundle:node'
+          id: node_type
           bundles:
             blog: blog
           negate: false
@@ -1499,8 +1334,6 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: bP415sOfXkCNV1dEP0bCav-jTQIqTk-blXVNZFmcy5g
   -
     collection: ''
     name: search_api.index.blog
@@ -1545,7 +1378,7 @@ items:
           datasource_id: 'entity:node'
           property_path: title
           type: text
-          boost: 8.0
+          boost: !!float 8
         field_tags:
           label: Tags
           datasource_id: 'entity:node'
@@ -1728,10 +1561,7 @@ items:
       options:
         index_directly: true
         cron_limit: 50
-        track_changes_in_references: true
       server: database
-      _core:
-        default_config_hash: 2bH1R-hnrKLJJDI4FUZBg4Nq-pgqOuv3a_Afvx_xo6Q
   -
     collection: ''
     name: views.view.blog
@@ -1752,6 +1582,7 @@ items:
       tag: ''
       base_table: search_api_index_blog
       base_field: search_api_id
+      core: 8.x
       display:
         default:
           display_plugin: default
@@ -1767,7 +1598,7 @@ items:
               type: none
               options: {  }
             query:
-              type: search_api_query
+              type: views_query
               options:
                 bypass_access: false
                 skip_access: false
@@ -1942,8 +1773,6 @@ items:
                   multiple: false
                   remember_roles:
                     authenticated: authenticated
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: false
                 group_info:
                   label: ''
@@ -2001,5 +1830,3 @@ items:
               - url.query_args
               - user.permissions
             tags: {  }
-      _core:
-        default_config_hash: W9W8F8YHcJHXY3T4csMAbUGw6zKUv-A03dYNs7Qa73s
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml
index 21d9c4a..f0419fd 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml
@@ -19,7 +19,6 @@ items:
         config:
           - field.field.node.collection.body
           - field.field.node.collection.field_authors
-          - field.field.node.collection.field_body_paragraph
           - field.field.node.collection.field_collection_items
           - field.field.node.collection.field_collection_type
           - field.field.node.collection.field_image
@@ -32,7 +31,6 @@ items:
         module:
           - image
           - metatag
-          - paragraphs
           - path
           - text
       id: node.collection.default
@@ -42,12 +40,12 @@ items:
       content:
         created:
           type: datetime_timestamp
-          weight: 13
+          weight: 10
           region: content
           settings: {  }
           third_party_settings: {  }
         field_authors:
-          weight: 2
+          weight: 4
           settings:
             match_operator: CONTAINS
             size: 60
@@ -55,18 +53,6 @@ items:
           third_party_settings: {  }
           type: entity_reference_autocomplete
           region: content
-        field_body_paragraph:
-          type: entity_reference_paragraphs
-          weight: 6
-          region: content
-          settings:
-            title: Paragraph
-            title_plural: Paragraphs
-            edit_mode: open
-            add_mode: dropdown
-            form_display_mode: default
-            default_paragraph_type: _none
-          third_party_settings: {  }
         field_collection_items:
           weight: 5
           settings:
@@ -91,13 +77,13 @@ items:
           type: image_image
           region: content
         field_meta_tags:
-          weight: 10
+          weight: 7
           settings: {  }
           third_party_settings: {  }
           type: metatag_firehose
           region: content
         field_summary:
-          weight: 4
+          weight: 2
           settings:
             rows: 5
             placeholder: ''
@@ -105,7 +91,7 @@ items:
           type: text_textarea
           region: content
         field_tags:
-          weight: 8
+          weight: 15
           settings:
             match_operator: CONTAINS
             size: 60
@@ -114,7 +100,7 @@ items:
           type: entity_reference_autocomplete
           region: content
         field_topics:
-          weight: 7
+          weight: 14
           settings:
             match_operator: CONTAINS
             size: 60
@@ -124,7 +110,7 @@ items:
           region: content
         path:
           type: path
-          weight: 11
+          weight: 8
           region: content
           settings: {  }
           third_party_settings: {  }
@@ -132,21 +118,21 @@ items:
           type: boolean_checkbox
           settings:
             display_label: true
-          weight: 15
+          weight: 12
           region: content
           third_party_settings: {  }
         status:
           type: boolean_checkbox
           settings:
             display_label: true
-          weight: 16
+          weight: 13
           region: content
           third_party_settings: {  }
         sticky:
           type: boolean_checkbox
           settings:
             display_label: true
-          weight: 14
+          weight: 11
           region: content
           third_party_settings: {  }
         title:
@@ -159,7 +145,7 @@ items:
           third_party_settings: {  }
         uid:
           type: entity_reference_autocomplete
-          weight: 9
+          weight: 6
           settings:
             match_operator: CONTAINS
             size: 60
@@ -167,43 +153,12 @@ items:
           region: content
           third_party_settings: {  }
         url_redirects:
-          weight: 12
+          weight: 9
           region: content
           settings: {  }
           third_party_settings: {  }
       hidden:
         body: true
-      _core:
-        default_config_hash: nQ_UEFVKl51O_tJ1AN9LAH0VhuJTgpKOszmSUZjYygc
-  -
-    collection: ''
-    name: core.entity_form_display.paragraph.drutopia_collection.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.paragraph.drutopia_collection.field_items
-          - paragraphs.paragraphs_type.drutopia_collection
-      id: paragraph.drutopia_collection.default
-      targetEntityType: paragraph
-      bundle: drutopia_collection
-      mode: default
-      content:
-        field_items:
-          weight: 0
-          settings:
-            match_operator: CONTAINS
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-          type: entity_reference_autocomplete
-          region: content
-      hidden:
-        created: true
-        status: true
-      _core:
-        default_config_hash: _1hZ95TGb11kRSt9dhg0nFE2VsiWz58W7YnNBRFKIO8
   -
     collection: ''
     name: core.entity_view_display.node.collection.default
@@ -214,7 +169,6 @@ items:
         config:
           - field.field.node.collection.body
           - field.field.node.collection.field_authors
-          - field.field.node.collection.field_body_paragraph
           - field.field.node.collection.field_collection_items
           - field.field.node.collection.field_collection_type
           - field.field.node.collection.field_image
@@ -313,10 +267,7 @@ items:
           settings: {  }
           third_party_settings: {  }
       hidden:
-        field_body_paragraph: true
         search_api_excerpt: true
-      _core:
-        default_config_hash: wVi9ZiHfMvJ_gpdc2gUELVYpZVl3lVvKT9vS_3R9MVk
   -
     collection: ''
     name: core.entity_view_display.node.collection.full
@@ -328,7 +279,6 @@ items:
           - core.entity_view_mode.node.full
           - field.field.node.collection.body
           - field.field.node.collection.field_authors
-          - field.field.node.collection.field_body_paragraph
           - field.field.node.collection.field_collection_items
           - field.field.node.collection.field_collection_type
           - field.field.node.collection.field_image
@@ -340,7 +290,6 @@ items:
         module:
           - ds
           - image
-          - paragraphs
           - text
           - user
       third_party_settings:
@@ -369,7 +318,6 @@ items:
               - node_post_date
               - field_authors
               - field_collection_type
-              - field_body_paragraph
               - field_topics
               - field_tags
             right:
@@ -394,15 +342,8 @@ items:
           third_party_settings: {  }
           type: entity_reference_label
           region: left
-        field_body_paragraph:
-          type: paragraph_summary
-          weight: 4
-          region: left
-          label: hidden
-          settings: {  }
-          third_party_settings: {  }
         field_collection_items:
-          weight: 8
+          weight: 7
           label: hidden
           settings:
             view_mode: teaser
@@ -416,7 +357,7 @@ items:
           type: entity_reference_label
           weight: 3
           region: left
-          label: hidden
+          label: visually_hidden
           settings:
             link: false
           third_party_settings: {  }
@@ -430,7 +371,7 @@ items:
           type: image
           region: header
         field_summary:
-          weight: 7
+          weight: 6
           label: hidden
           settings: {  }
           third_party_settings: {  }
@@ -438,7 +379,7 @@ items:
           region: right
         field_tags:
           type: entity_reference_label
-          weight: 6
+          weight: 5
           region: left
           label: hidden
           settings:
@@ -446,9 +387,9 @@ items:
           third_party_settings: {  }
         field_topics:
           type: entity_reference_label
-          weight: 5
+          weight: 4
           region: left
-          label: hidden
+          label: visually_hidden
           settings:
             link: true
           third_party_settings: {  }
@@ -457,8 +398,6 @@ items:
         field_meta_tags: true
         links: true
         search_api_excerpt: true
-      _core:
-        default_config_hash: u9hFi5GI6LLnFCyw2M7JDw0SSDmlT2tpCHBVDYoBO7g
   -
     collection: ''
     name: core.entity_view_display.node.collection.teaser
@@ -469,15 +408,6 @@ items:
         config:
           - core.entity_view_mode.node.teaser
           - field.field.node.collection.body
-          - field.field.node.collection.field_authors
-          - field.field.node.collection.field_body_paragraph
-          - field.field.node.collection.field_collection_items
-          - field.field.node.collection.field_collection_type
-          - field.field.node.collection.field_image
-          - field.field.node.collection.field_meta_tags
-          - field.field.node.collection.field_summary
-          - field.field.node.collection.field_tags
-          - field.field.node.collection.field_topics
           - node.type.collection
         module:
           - text
@@ -501,45 +431,7 @@ items:
           third_party_settings: {  }
           region: content
       hidden:
-        field_authors: true
-        field_body_paragraph: true
-        field_collection_items: true
-        field_collection_type: true
-        field_image: true
-        field_meta_tags: true
-        field_summary: true
-        field_tags: true
-        field_topics: true
         search_api_excerpt: true
-      _core:
-        default_config_hash: UOzCi2kjYaqcRKtMRkEhE6_Asdw7kUZCrcbT6o2frwU
-  -
-    collection: ''
-    name: core.entity_view_display.paragraph.drutopia_collection.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.paragraph.drutopia_collection.field_items
-          - paragraphs.paragraphs_type.drutopia_collection
-      id: paragraph.drutopia_collection.default
-      targetEntityType: paragraph
-      bundle: drutopia_collection
-      mode: default
-      content:
-        field_items:
-          weight: 0
-          label: above
-          settings:
-            link: true
-          third_party_settings: {  }
-          type: entity_reference_label
-          region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 3EjlY1iURckfqQFhAWC_mtd1guLuILhh2IlwrzRhzYI
   -
     collection: ''
     name: field.field.node.collection.body
@@ -565,8 +457,6 @@ items:
       settings:
         display_summary: true
       field_type: text_with_summary
-      _core:
-        default_config_hash: WqgDhaPELkw6JGhrh7TfT43wKws4fg45OgEkunye7ss
   -
     collection: ''
     name: field.field.node.collection.field_authors
@@ -599,69 +489,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: OrTTW4_ECRhwCEGANjteWeZi18YWtx-oqSJtjtsnQfM
-  -
-    collection: ''
-    name: field.field.node.collection.field_body_paragraph
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.node.field_body_paragraph
-          - node.type.collection
-          - paragraphs.paragraphs_type.drutopia_collection
-          - paragraphs.paragraphs_type.image
-          - paragraphs.paragraphs_type.text
-        module:
-          - entity_reference_revisions
-      id: node.collection.field_body_paragraph
-      field_name: field_body_paragraph
-      entity_type: node
-      bundle: collection
-      label: 'Body paragraph'
-      description: ''
-      required: false
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:paragraph'
-        handler_settings:
-          negate: 0
-          target_bundles:
-            drutopia_collection: drutopia_collection
-            image: image
-            text: text
-          target_bundles_drag_drop:
-            drutopia_collection:
-              enabled: true
-              weight: 9
-            faq:
-              weight: 10
-              enabled: false
-            file:
-              weight: 11
-              enabled: false
-            image:
-              enabled: true
-              weight: 12
-            slide:
-              weight: 13
-              enabled: false
-            text:
-              enabled: true
-              weight: 14
-            update:
-              weight: 15
-              enabled: false
-            video:
-              weight: 16
-              enabled: false
-      field_type: entity_reference_revisions
-      _core:
-        default_config_hash: gfZqYddYFY8po0Ek3xn59IJhLaQq9iVMUXKRzrhYMOU
   -
     collection: ''
     name: field.field.node.collection.field_collection_items
@@ -690,8 +517,6 @@ items:
             display_name: entity_reference
             arguments: {  }
       field_type: entity_reference
-      _core:
-        default_config_hash: 6X5yj9boH7NtcRbeF2H7cXLeNdjCfZY9ReiufRdXuXc
   -
     collection: ''
     name: field.field.node.collection.field_collection_type
@@ -724,8 +549,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: kC3_rOUozrdfvnh-qzpCz7MoI8HoyP1J6OM8cOKdKec
   -
     collection: ''
     name: field.field.node.collection.field_image
@@ -767,8 +590,6 @@ items:
         handler: 'default:file'
         handler_settings: {  }
       field_type: image
-      _core:
-        default_config_hash: zBDVKqvoMMh7BWNgskjQQbHyTDLFE8r96x1qWGUX7Zw
   -
     collection: ''
     name: field.field.node.collection.field_meta_tags
@@ -793,8 +614,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: metatag
-      _core:
-        default_config_hash: s5m_9i4ysGOa4EWQLPM8uXAthSHK1wub2Fvl69J6H88
   -
     collection: ''
     name: field.field.node.collection.field_summary
@@ -819,8 +638,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: 4VgNv6j__Zkf6FRVk20T510x6SpcboFHU5NtFipdQyc
   -
     collection: ''
     name: field.field.node.collection.field_tags
@@ -853,8 +670,6 @@ items:
           auto_create: true
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: rXf2ywn1NcjYQ8T6KyCPzRJ6Ajvk8fNa7BwM4uDdg1I
   -
     collection: ''
     name: field.field.node.collection.field_topics
@@ -887,46 +702,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: Pg-JRInG6Nx2HfzJT2lKOaq4x1Y4ZFE5SZM9dFzeGlg
-  -
-    collection: ''
-    name: field.field.paragraph.drutopia_collection.field_items
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.paragraph.field_items
-          - node.type.article
-          - node.type.blog
-          - node.type.people
-          - paragraphs.paragraphs_type.drutopia_collection
-      id: paragraph.drutopia_collection.field_items
-      field_name: field_items
-      entity_type: paragraph
-      bundle: drutopia_collection
-      label: Items
-      description: 'Select any other content on the site to display as a list of teasers by typing words from the title and looking for the autocompletion of the content you want in the collection. You can change the order after adding each item.'
-      required: true
-      translatable: false
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:node'
-        handler_settings:
-          target_bundles:
-            article: article
-            blog: blog
-            people: people
-          sort:
-            field: changed
-            direction: DESC
-          auto_create: false
-          auto_create_bundle: article
-      field_type: entity_reference
-      _core:
-        default_config_hash: 7DUUXZdsPh4mDm9mhYlDJz3claVAxXookJakBJhDocs
   -
     collection: ''
     name: field.storage.node.field_collection_items
@@ -949,8 +724,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: psnh1gqgVQvkgOeMy2UPZCmTlRAkEBYuBOi6jZGOvUc
   -
     collection: ''
     name: field.storage.node.field_collection_type
@@ -974,33 +747,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: RLkCTg6QDZQdy0j5eduNhF5sSLCi-dqmfp8o_JZAkA0
-  -
-    collection: ''
-    name: field.storage.paragraph.field_items
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - node
-          - paragraphs
-      id: paragraph.field_items
-      field_name: field_items
-      entity_type: paragraph
-      type: entity_reference
-      settings:
-        target_type: node
-      module: core
-      locked: false
-      cardinality: -1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: VnnPidg22ez5r9ylXvzs766yDC5mVWjS__wyXmq1yvU
   -
     collection: ''
     name: node.type.collection
@@ -1022,239 +768,6 @@ items:
       new_revision: true
       preview_mode: 1
       display_submitted: false
-      _core:
-        default_config_hash: stQdgWbQWDAjVwOeuvG1Ye8uI8OiGwWQ4sinbQPW2lI
-  -
-    collection: ''
-    name: paragraphs.paragraphs_type.drutopia_collection
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: drutopia_collection
-      label: Collection
-      icon_uuid: null
-      description: 'Allows grouping referenced content together.  For instance, an Issue collection could use collection paragraphs to group articles into three themes within that issue.'
-      behavior_plugins: {  }
-      _core:
-        default_config_hash: xJxbh5L6gM8EZzAr1kp2OBNKKhv_5OE9anEo_btj2cA
-  -
-    collection: ''
-    name: pathauto.pattern.collection_type
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - ctools
-          - taxonomy
-      id: collection_type
-      label: 'Collection type'
-      type: 'canonical_entities:taxonomy_term'
-      pattern: '[term:vocabulary]/[term:name]'
-      selection_criteria:
-        4706378a-3a02-48d7-8672-d8313e9c20f3:
-          id: 'entity_bundle:taxonomy_term'
-          bundles:
-            article_type: collection_type
-          negate: false
-          context_mapping:
-            taxonomy_term: taxonomy_term
-          uuid: 4706378a-3a02-48d7-8672-d8313e9c20f3
-      selection_logic: and
-      weight: -5
-      relationships: {  }
-      _core:
-        default_config_hash: 8ybgXD47lBYtq3zDwOhbr_pdGHwEQdDfLeUvvnBam5A
-  -
-    collection: ''
-    name: pathauto.pattern.node_collection
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - node
-      id: node_collection
-      label: 'Node collection'
-      type: 'canonical_entities:node'
-      pattern: 'collections/[node:title]'
-      selection_criteria:
-        7e8d81ea-6e4f-4fee-a1ad-6f1621656038:
-          id: 'entity_bundle:node'
-          bundles:
-            article: collection
-          negate: false
-          context_mapping:
-            node: node
-          uuid: 7e8d81ea-6e4f-4fee-a1ad-6f1621656038
-      selection_logic: and
-      weight: -5
-      relationships: {  }
-      _core:
-        default_config_hash: ofYqGwKW2yCiN6Z7YvvlFH4XrjfWFRTzDLmpKsnyoF4
-  -
-    collection: ''
-    name: search_api.index.collection
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - node
-          - user
-          - search_api
-        config:
-          - field.storage.node.field_authors
-          - field.storage.node.field_collection_type
-          - field.storage.node.field_summary
-          - field.storage.node.field_tags
-          - field.storage.node.field_topics
-          - search_api.server.database
-          - core.entity_view_mode.node.search_index
-      id: collection
-      name: Collection
-      description: 'An index for the collection content type.'
-      read_only: false
-      field_settings:
-        changed:
-          label: Changed
-          datasource_id: 'entity:node'
-          property_path: changed
-          type: date
-          dependencies:
-            module:
-              - node
-        created:
-          label: 'Authored on'
-          datasource_id: 'entity:node'
-          property_path: created
-          type: date
-          dependencies:
-            module:
-              - node
-        field_authors:
-          label: Authors
-          datasource_id: 'entity:node'
-          property_path: field_authors
-          type: integer
-          dependencies:
-            config:
-              - field.storage.node.field_authors
-        field_collection_type:
-          label: 'Collection type'
-          datasource_id: 'entity:node'
-          property_path: field_collection_type
-          type: integer
-          dependencies:
-            config:
-              - field.storage.node.field_collection_type
-        field_summary:
-          label: Summary
-          datasource_id: 'entity:node'
-          property_path: field_summary
-          type: text
-          dependencies:
-            config:
-              - field.storage.node.field_summary
-        field_tags:
-          label: Tags
-          datasource_id: 'entity:node'
-          property_path: field_tags
-          type: integer
-          dependencies:
-            config:
-              - field.storage.node.field_tags
-        field_topics:
-          label: Topics
-          datasource_id: 'entity:node'
-          property_path: field_topics
-          type: integer
-          dependencies:
-            config:
-              - field.storage.node.field_topics
-        name:
-          label: 'Authored by » User » Name'
-          datasource_id: 'entity:node'
-          property_path: 'uid:entity:name'
-          type: string
-          dependencies:
-            module:
-              - node
-              - user
-              - user
-        promote:
-          label: 'Promoted to front page'
-          datasource_id: 'entity:node'
-          property_path: promote
-          type: boolean
-          dependencies:
-            module:
-              - node
-        rendered_item:
-          label: 'Rendered HTML output'
-          property_path: rendered_item
-          type: text
-          configuration:
-            roles:
-              anonymous: anonymous
-            view_mode:
-              'entity:node':
-                collection: search_index
-        status:
-          label: Published
-          datasource_id: 'entity:node'
-          property_path: status
-          type: boolean
-          dependencies:
-            module:
-              - node
-        sticky:
-          label: 'Sticky at top of lists'
-          datasource_id: 'entity:node'
-          property_path: sticky
-          type: boolean
-          dependencies:
-            module:
-              - node
-        title:
-          label: Title
-          datasource_id: 'entity:node'
-          property_path: title
-          type: string
-          dependencies:
-            module:
-              - node
-        uid:
-          label: 'Authored by'
-          datasource_id: 'entity:node'
-          property_path: uid
-          type: integer
-          dependencies:
-            module:
-              - node
-      datasource_settings:
-        'entity:node':
-          bundles:
-            default: false
-            selected:
-              - collection
-          languages:
-            default: true
-            selected: {  }
-      processor_settings:
-        add_url: {  }
-        aggregated_field: {  }
-        rendered_item: {  }
-      tracker_settings:
-        default:
-          indexing_order: fifo
-      options:
-        index_directly: true
-        cron_limit: 50
-      server: database
-      _core:
-        default_config_hash: _QVCLp7W8HxV52MEnKkYc2bX5i3NFf4ejVOfuTApG9g
   -
     collection: ''
     name: taxonomy.vocabulary.collection_type
@@ -1266,241 +779,6 @@ items:
       vid: collection_type
       description: 'For categorizing collections on aspects unique to collections.'
       weight: 0
-      _core:
-        default_config_hash: NRvgGmvJBASvwlaRtyOhK0ur-e-b02hS5hSe89iTTrc
-  -
-    collection: ''
-    name: views.view.collection
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - search_api.index.collection
-          - system.menu.main
-        module:
-          - search_api
-          - user
-      id: collection
-      label: Collection
-      module: views
-      description: 'Various displays for the collection content type.'
-      tag: ''
-      base_table: search_api_index_collection
-      base_field: search_api_id
-      core: 8.x
-      display:
-        default:
-          display_plugin: default
-          id: default
-          display_title: Master
-          position: 0
-          display_options:
-            access:
-              type: perm
-              options:
-                perm: 'access content'
-            cache:
-              type: none
-              options: {  }
-            query:
-              type: views_query
-              options:
-                bypass_access: false
-                skip_access: false
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            pager:
-              type: mini
-              options:
-                items_per_page: 12
-                offset: 0
-                id: 0
-                total_pages: null
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                tags:
-                  previous: ‹‹
-                  next: ››
-            style:
-              type: default
-              options:
-                row_class: ''
-                default_row_class: false
-                uses_fields: false
-            row:
-              type: search_api
-              options:
-                view_modes:
-                  'entity:node':
-                    collection: card
-            fields:
-              rendered_item:
-                table: search_api_index_collection
-                field: rendered_item
-                id: rendered_item
-                entity_type: null
-                entity_field: null
-                plugin_id: search_api
-                relationship: none
-                group_type: group
-                admin_label: ''
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                link_to_item: false
-                use_highlighting: false
-                multi_type: separator
-                multi_separator: ', '
-            filters: {  }
-            sorts:
-              sticky:
-                id: sticky
-                table: search_api_index_collection
-                field: sticky
-                relationship: none
-                group_type: group
-                admin_label: ''
-                order: DESC
-                exposed: false
-                expose:
-                  label: ''
-                plugin_id: search_api
-              created:
-                id: created
-                table: search_api_index_collection
-                field: created
-                relationship: none
-                group_type: group
-                admin_label: ''
-                order: DESC
-                exposed: false
-                expose:
-                  label: ''
-                plugin_id: search_api
-            title: Collections
-            header: {  }
-            footer: {  }
-            empty: {  }
-            relationships: {  }
-            arguments: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-              - user.permissions
-            tags: {  }
-        block_promoted:
-          display_plugin: block
-          id: block_promoted
-          display_title: 'Block Promoted'
-          position: 2
-          display_options:
-            display_extenders: {  }
-            title: Latest
-            defaults:
-              title: false
-              style: true
-              row: true
-              pager: false
-              link_display: false
-              link_url: false
-            pager:
-              type: some
-              options:
-                items_per_page: 4
-                offset: 0
-            display_description: ''
-            block_description: 'Promoted collections'
-            link_display: page_1
-            link_url: ''
-            block_hide_empty: true
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - user.permissions
-            tags: {  }
-        page_listing:
-          display_plugin: page
-          id: page_listing
-          display_title: Page
-          position: 1
-          display_options:
-            display_extenders: {  }
-            path: collections
-            menu:
-              type: normal
-              title: News
-              description: 'Keep up to date.'
-              expanded: false
-              parent: 'menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd'
-              weight: 0
-              context: '0'
-              menu_name: main
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-              - user.permissions
-            tags: {  }
-      _core:
-        default_config_hash: f8uoIe_CmLkBA5LAlknvx3pT4QCs26VgjFam0s8Wz68
   -
     collection: ''
     name: views.view.collection_select_content
@@ -1911,5 +1189,3 @@ items:
               - user.permissions
             tags:
               - 'config:field.storage.node.field_summary'
-      _core:
-        default_config_hash: v-S3QqIVn35UujN6yge8GibCgD3sPt76Ef-IyBL6zDU
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
index 990ca1f..5061550 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
@@ -20,8 +20,6 @@ items:
       label: 'Default comments'
       target_entity_type_id: node
       description: 'Allows commenting on content'
-      _core:
-        default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
   -
     collection: ''
     name: core.entity_form_display.comment.comment.default
@@ -59,8 +57,6 @@ items:
           third_party_settings: {  }
           region: content
       hidden: {  }
-      _core:
-        default_config_hash: i9gg03KbztdQ0LmR6WLr5smEj5TBKU12U2X8ZlSpKJA
   -
     collection: ''
     name: core.entity_view_display.comment.comment.default
@@ -88,10 +84,7 @@ items:
         links:
           weight: 100
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: f0x0ePQCmvxjco4g7XRIUYd8t7rq3uUvhvzJqtnyStg
+      hidden: {  }
   -
     collection: ''
     name: field.field.comment.comment.comment_body
@@ -116,8 +109,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs
   -
     collection: ''
     name: field.storage.node.comment
@@ -141,8 +132,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc
   -
     collection: ''
     name: rdf.mapping.comment.comment
@@ -180,5 +169,3 @@ items:
           properties:
             - 'schema:author'
           mapping_type: rel
-      _core:
-        default_config_hash: uETe6XupRGKDForx2MpY0pMOEu6CzGgdCAZZOKkbgmk
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
index c9d8513..5387580 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
@@ -19,8 +19,6 @@ items:
       id: administer_site_information
       label: 'Administer site information'
       route: system.site_information_settings
-      _core:
-        default_config_hash: 4SOCGLTpCWgga4_Ohxap04eJSop6vQL-h2XC4VbDIPs
   -
     collection: ''
     name: config_perms.custom_perms_entity.edit_contact_form
@@ -31,8 +29,6 @@ items:
       id: edit_contact_form
       label: 'Edit contact form'
       route: "entity.contact_form.collection\r\nentity.contact_form.edit_form"
-      _core:
-        default_config_hash: eJWhGhpRfmEhpk2aZAe8424DHGi6A4onjpxfouE4eWk
   -
     collection: ''
     name: core.date_format.month_day_year
@@ -44,495 +40,6 @@ items:
       label: 'Month day year'
       locked: false
       pattern: 'F j, Y'
-      _core:
-        default_config_hash: GgGjm7gBYI1AY61q7R4O3PkFlAGcgMUBwG4jKZQKtLc
-  -
-    collection: ''
-    name: core.entity_form_display.media.audio.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.audio.field_media_audio_file
-          - media.type.audio
-        module:
-          - file
-          - path
-      id: media.audio.default
-      targetEntityType: media
-      bundle: audio
-      mode: default
-      content:
-        created:
-          type: datetime_timestamp
-          weight: 10
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        field_media_audio_file:
-          type: file_generic
-          weight: 0
-          region: content
-          settings:
-            progress_indicator: throbber
-          third_party_settings: {  }
-        path:
-          type: path
-          weight: 30
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        status:
-          type: boolean_checkbox
-          weight: 100
-          region: content
-          settings:
-            display_label: true
-          third_party_settings: {  }
-        uid:
-          type: entity_reference_autocomplete
-          weight: 5
-          region: content
-          settings:
-            match_operator: CONTAINS
-            match_limit: 10
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-      hidden:
-        name: true
-      _core:
-        default_config_hash: G2_SKH3jmI9FQeXSUxo3KgQqiyF1hPDEkc7-3-rCSbc
-  -
-    collection: ''
-    name: core.entity_form_display.media.audio.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_form_mode.media.media_library
-          - field.field.media.audio.field_media_audio_file
-          - media.type.audio
-      id: media.audio.media_library
-      targetEntityType: media
-      bundle: audio
-      mode: media_library
-      content: {  }
-      hidden:
-        created: true
-        field_media_audio_file: true
-        name: true
-        path: true
-        status: true
-        uid: true
-      _core:
-        default_config_hash: 28vwMIYtvyjPcD4RyciZXIztxtZgmuWRCNgYemr_SZE
-  -
-    collection: ''
-    name: core.entity_form_display.media.document.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.document.field_media_document
-          - media.type.document
-        module:
-          - file
-          - path
-      id: media.document.default
-      targetEntityType: media
-      bundle: document
-      mode: default
-      content:
-        created:
-          type: datetime_timestamp
-          weight: 10
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        field_media_document:
-          type: file_generic
-          weight: 0
-          region: content
-          settings:
-            progress_indicator: throbber
-          third_party_settings: {  }
-        path:
-          type: path
-          weight: 30
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        status:
-          type: boolean_checkbox
-          weight: 100
-          region: content
-          settings:
-            display_label: true
-          third_party_settings: {  }
-        uid:
-          type: entity_reference_autocomplete
-          weight: 5
-          region: content
-          settings:
-            match_operator: CONTAINS
-            match_limit: 10
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-      hidden:
-        name: true
-      _core:
-        default_config_hash: j3PwHXJrIDYYTMBtwbGTChh6m3fzbh9KJyHZ4wJdb1U
-  -
-    collection: ''
-    name: core.entity_form_display.media.document.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_form_mode.media.media_library
-          - field.field.media.document.field_media_document
-          - media.type.document
-      id: media.document.media_library
-      targetEntityType: media
-      bundle: document
-      mode: media_library
-      content: {  }
-      hidden:
-        created: true
-        field_media_document: true
-        name: true
-        path: true
-        status: true
-        uid: true
-      _core:
-        default_config_hash: dcpfpqyLXOSGpulacMAJW3H-G34_LeNsjdfxd1_oCfY
-  -
-    collection: ''
-    name: core.entity_form_display.media.image.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.image.field_media_image
-          - image.style.media_library
-          - media.type.image
-        module:
-          - image_widget_crop
-          - path
-      id: media.image.default
-      targetEntityType: media
-      bundle: image
-      mode: default
-      content:
-        created:
-          type: datetime_timestamp
-          weight: 10
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        field_media_image:
-          type: image_widget_crop
-          weight: 0
-          region: content
-          settings:
-            progress_indicator: throbber
-            preview_image_style: media_library
-            crop_preview_image_style: crop_thumbnail
-            crop_list:
-              - extra_wide_rectangle
-              - wide_rectangle
-            crop_types_required: {  }
-            warn_multiple_usages: true
-            show_crop_area: false
-            show_default_crop: true
-          third_party_settings: {  }
-        path:
-          type: path
-          weight: 30
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        status:
-          type: boolean_checkbox
-          weight: 100
-          region: content
-          settings:
-            display_label: true
-          third_party_settings: {  }
-        uid:
-          type: entity_reference_autocomplete
-          weight: 5
-          region: content
-          settings:
-            match_operator: CONTAINS
-            match_limit: 10
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-      hidden:
-        name: true
-      _core:
-        default_config_hash: v5qWuH4sE0OlCxD1-nK7_3VpLAN3Doi1y05Hvl-7Zwk
-  -
-    collection: ''
-    name: core.entity_form_display.media.image.main
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_form_mode.media.main
-          - field.field.media.image.field_media_image
-          - image.style.media_library
-          - media.type.image
-        module:
-          - image_widget_crop
-      id: media.image.main
-      targetEntityType: media
-      bundle: image
-      mode: main
-      content:
-        field_media_image:
-          type: image_widget_crop
-          weight: 0
-          region: content
-          settings:
-            progress_indicator: throbber
-            preview_image_style: media_library
-            crop_preview_image_style: crop_thumbnail
-            crop_list:
-              - extra_wide_rectangle
-              - wide_rectangle
-            crop_types_required: {  }
-            warn_multiple_usages: true
-            show_crop_area: false
-            show_default_crop: true
-          third_party_settings: {  }
-      hidden:
-        created: true
-        name: true
-        path: true
-        status: true
-        uid: true
-      _core:
-        default_config_hash: 3U-oqNeYCjMf0Ut-MGSnlAVCChG9hh-CcFHBjll6rco
-  -
-    collection: ''
-    name: core.entity_form_display.media.image.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_form_mode.media.media_library
-          - field.field.media.image.field_media_image
-          - image.style.media_library
-          - media.type.image
-        module:
-          - image_widget_crop
-      id: media.image.media_library
-      targetEntityType: media
-      bundle: image
-      mode: media_library
-      content:
-        field_media_image:
-          type: image_widget_crop
-          weight: 1
-          region: content
-          settings:
-            progress_indicator: throbber
-            preview_image_style: media_library
-            crop_preview_image_style: crop_thumbnail
-            crop_list:
-              - extra_wide_rectangle
-              - wide_rectangle
-            crop_types_required: {  }
-            warn_multiple_usages: true
-            show_crop_area: false
-            show_default_crop: true
-          third_party_settings: {  }
-      hidden:
-        created: true
-        name: true
-        path: true
-        status: true
-        uid: true
-      _core:
-        default_config_hash: wIK8DFl2IN-h0ibfi0dIjMcjCErV1qHMOTfENAHs7qw
-  -
-    collection: ''
-    name: core.entity_form_display.media.remote_video.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.remote_video.field_media_oembed_video
-          - media.type.remote_video
-        module:
-          - media
-          - path
-      id: media.remote_video.default
-      targetEntityType: media
-      bundle: remote_video
-      mode: default
-      content:
-        created:
-          type: datetime_timestamp
-          weight: 10
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        field_media_oembed_video:
-          type: oembed_textfield
-          weight: 0
-          region: content
-          settings:
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-        path:
-          type: path
-          weight: 30
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        status:
-          type: boolean_checkbox
-          weight: 100
-          region: content
-          settings:
-            display_label: true
-          third_party_settings: {  }
-        uid:
-          type: entity_reference_autocomplete
-          weight: 5
-          region: content
-          settings:
-            match_operator: CONTAINS
-            match_limit: 10
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-      hidden:
-        name: true
-      _core:
-        default_config_hash: pM8mGlwfpvfG_y5tZn0lGAXFLXz2_yKkL7MvWZsRqdA
-  -
-    collection: ''
-    name: core.entity_form_display.media.remote_video.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_form_mode.media.media_library
-          - field.field.media.remote_video.field_media_oembed_video
-          - media.type.remote_video
-      id: media.remote_video.media_library
-      targetEntityType: media
-      bundle: remote_video
-      mode: media_library
-      content: {  }
-      hidden:
-        created: true
-        field_media_oembed_video: true
-        name: true
-        path: true
-        status: true
-        uid: true
-      _core:
-        default_config_hash: TBgPW-uaXRaICBwLaVc16rXpRiLSknDIdF9q0XL7qso
-  -
-    collection: ''
-    name: core.entity_form_display.media.video.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.video.field_media_video_file
-          - media.type.video
-        module:
-          - file
-          - path
-      id: media.video.default
-      targetEntityType: media
-      bundle: video
-      mode: default
-      content:
-        created:
-          type: datetime_timestamp
-          weight: 10
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        field_media_video_file:
-          type: file_generic
-          weight: 0
-          region: content
-          settings:
-            progress_indicator: throbber
-          third_party_settings: {  }
-        path:
-          type: path
-          weight: 30
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-        status:
-          type: boolean_checkbox
-          weight: 100
-          region: content
-          settings:
-            display_label: true
-          third_party_settings: {  }
-        uid:
-          type: entity_reference_autocomplete
-          weight: 5
-          region: content
-          settings:
-            match_operator: CONTAINS
-            match_limit: 10
-            size: 60
-            placeholder: ''
-          third_party_settings: {  }
-      hidden:
-        name: true
-      _core:
-        default_config_hash: 0kIIaDTt6dixXy8TZkat2MNGZJ6vkRG8TaBWTy3E1bM
-  -
-    collection: ''
-    name: core.entity_form_display.media.video.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_form_mode.media.media_library
-          - field.field.media.video.field_media_video_file
-          - media.type.video
-      id: media.video.media_library
-      targetEntityType: media
-      bundle: video
-      mode: media_library
-      content: {  }
-      hidden:
-        created: true
-        field_media_video_file: true
-        name: true
-        path: true
-        status: true
-        uid: true
-      _core:
-        default_config_hash: kGv8YsopqHvzTzb7QTINWcv0fnNa5ZDQyZxpOQR2vro
   -
     collection: ''
     name: core.entity_form_display.paragraph.faq.default
@@ -568,8 +75,6 @@ items:
         created: true
         status: true
         uid: true
-      _core:
-        default_config_hash: UR3bECoQY6FKRLCCFWjqe5mQ_ZF5wYv8l8dFkrmWYE4
   -
     collection: ''
     name: core.entity_form_display.paragraph.file.default
@@ -598,8 +103,6 @@ items:
         created: true
         status: true
         uid: true
-      _core:
-        default_config_hash: 47c_p3_AKkkCabhYVnOWmPVzSp8BmBg5ERP84VO4EM0
   -
     collection: ''
     name: core.entity_form_display.paragraph.image.default
@@ -609,34 +112,27 @@ items:
       dependencies:
         config:
           - field.field.paragraph.image.field_image
-          - field.field.paragraph.image.field_media_image
+          - image.style.thumbnail
           - paragraphs.paragraphs_type.image
         module:
-          - media_library_media_modify
+          - image
       id: paragraph.image.default
       targetEntityType: paragraph
       bundle: image
       mode: default
       content:
-        field_media_image:
-          type: media_library_media_modify_widget
+        field_image:
           weight: 0
-          region: content
           settings:
-            media_types: {  }
-            form_mode: default
-            check_selected: false
-            replace_checkbox_by_order_indicator: false
-            multi_edit_on_create: false
-            no_edit_on_create: false
+            progress_indicator: throbber
+            preview_image_style: thumbnail
           third_party_settings: {  }
+          type: image_image
+          region: content
       hidden:
         created: true
-        field_image: true
         status: true
         uid: true
-      _core:
-        default_config_hash: mCiuLvYrXsWNGIOEjtrmrlLYbT39UBsp3wt4xoS0ycg
   -
     collection: ''
     name: core.entity_form_display.paragraph.slide.default
@@ -647,53 +143,46 @@ items:
         config:
           - field.field.paragraph.slide.field_image
           - field.field.paragraph.slide.field_link
-          - field.field.paragraph.slide.field_media_image
           - field.field.paragraph.slide.field_text
+          - image.style.thumbnail
           - paragraphs.paragraphs_type.slide
         module:
+          - image
           - link
-          - media_library_media_modify
           - text
       id: paragraph.slide.default
       targetEntityType: paragraph
       bundle: slide
       mode: default
       content:
-        field_link:
-          type: link_default
-          weight: 1
+        field_image:
+          weight: 5
+          settings:
+            progress_indicator: throbber
+            preview_image_style: thumbnail
+          third_party_settings: {  }
+          type: image_image
           region: content
+        field_link:
+          weight: 4
           settings:
             placeholder_url: ''
             placeholder_title: ''
           third_party_settings: {  }
-        field_media_image:
-          type: media_library_media_modify_widget
-          weight: 0
+          type: link_default
           region: content
-          settings:
-            media_types: {  }
-            form_mode: default
-            check_selected: false
-            replace_checkbox_by_order_indicator: false
-            multi_edit_on_create: false
-            no_edit_on_create: false
-          third_party_settings: {  }
         field_text:
-          type: text_textarea
-          weight: 2
-          region: content
+          weight: 6
           settings:
             rows: 5
             placeholder: ''
           third_party_settings: {  }
+          type: text_textarea
+          region: content
       hidden:
         created: true
-        field_image: true
         status: true
         uid: true
-      _core:
-        default_config_hash: pZma3NRWTI-EBfju5Mh1EayjayIjqdB5jOIrZGvNfa8
   -
     collection: ''
     name: core.entity_form_display.paragraph.text.default
@@ -723,8 +212,6 @@ items:
         created: true
         status: true
         uid: true
-      _core:
-        default_config_hash: HcHUk34p8VqAF8IVnIOT1SpvhP1C7UmNlFz8jHIDwE0
   -
     collection: ''
     name: core.entity_form_display.paragraph.update.default
@@ -762,8 +249,6 @@ items:
         created: true
         status: true
         uid: true
-      _core:
-        default_config_hash: GXL-mQnJwIkuHcYPg2aEDI38w0YZMH6xFa0CJ_PGtis
   -
     collection: ''
     name: core.entity_form_display.paragraph.video.default
@@ -791,469 +276,6 @@ items:
         created: true
         status: true
         uid: true
-      _core:
-        default_config_hash: 06c7Ahwb8yJby6MRemnEP6p683BbgZCUPnF6WE1ni50
-  -
-    collection: ''
-    name: core.entity_form_mode.media.main
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media.main
-      label: Main
-      targetEntityType: media
-      cache: true
-      _core:
-        default_config_hash: ENk37W6NnKGWq84DwzIkfEhYQv_afN8gHHugUQi7jjs
-  -
-    collection: ''
-    name: core.entity_view_display.media.audio.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.audio.field_media_audio_file
-          - media.type.audio
-        module:
-          - file
-      id: media.audio.default
-      targetEntityType: media
-      bundle: audio
-      mode: default
-      content:
-        field_media_audio_file:
-          type: file_audio
-          label: hidden
-          settings:
-            controls: true
-            autoplay: false
-            loop: false
-            multiple_file_display_type: tags
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: rfAE0z_NC8oZIIWcz_BI71xUCTEXycqq7siaMS2E2M0
-  -
-    collection: ''
-    name: core.entity_view_display.media.audio.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.media_library
-          - field.field.media.audio.field_media_audio_file
-          - image.style.thumbnail
-          - media.type.audio
-        module:
-          - image
-      id: media.audio.media_library
-      targetEntityType: media
-      bundle: audio
-      mode: media_library
-      content:
-        thumbnail:
-          type: image
-          label: hidden
-          settings:
-            image_style: thumbnail
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        field_media_audio_file: true
-        name: true
-        search_api_excerpt: true
-        uid: true
-      _core:
-        default_config_hash: 7DNpi1Sl1MWQhNyyLfTpd-yIhueyFZAcL2Snbr2sTUI
-  -
-    collection: ''
-    name: core.entity_view_display.media.document.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.document.field_media_document
-          - media.type.document
-        module:
-          - file
-      id: media.document.default
-      targetEntityType: media
-      bundle: document
-      mode: default
-      content:
-        field_media_document:
-          type: file_default
-          label: hidden
-          settings: {  }
-          third_party_settings: {  }
-          weight: 1
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: WbV90lV3EUgETbXm-h7gUppdt-ECLhXrHI5_l92Md-8
-  -
-    collection: ''
-    name: core.entity_view_display.media.document.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.media_library
-          - field.field.media.document.field_media_document
-          - image.style.thumbnail
-          - media.type.document
-        module:
-          - image
-      id: media.document.media_library
-      targetEntityType: media
-      bundle: document
-      mode: media_library
-      content:
-        thumbnail:
-          type: image
-          label: hidden
-          settings:
-            image_style: thumbnail
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        field_media_document: true
-        name: true
-        search_api_excerpt: true
-        uid: true
-      _core:
-        default_config_hash: QElKo67rYqcbExc-UzpEXj_f14eAMPr57XAF5Pbt_iY
-  -
-    collection: ''
-    name: core.entity_view_display.media.image.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.image.field_media_image
-          - image.style.large
-          - media.type.image
-        module:
-          - image
-      id: media.image.default
-      targetEntityType: media
-      bundle: image
-      mode: default
-      content:
-        field_media_image:
-          type: image
-          label: hidden
-          settings:
-            image_link: ''
-            image_style: large
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 1
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: O6cONwdUd3G9aEefXjJt9-jzCgj-UeIbUVr70hc8L7Y
-  -
-    collection: ''
-    name: core.entity_view_display.media.image.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.media_library
-          - field.field.media.image.field_media_image
-          - image.style.medium
-          - media.type.image
-        module:
-          - image
-      id: media.image.media_library
-      targetEntityType: media
-      bundle: image
-      mode: media_library
-      content:
-        thumbnail:
-          type: image
-          label: hidden
-          settings:
-            image_style: medium
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        field_media_image: true
-        name: true
-        search_api_excerpt: true
-        uid: true
-      _core:
-        default_config_hash: YMZYbnh33BQJRLbrQ3jWBetF1pUdG9gOA7dGUBoiDeg
-  -
-    collection: ''
-    name: core.entity_view_display.media.image.narrow
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.narrow
-          - field.field.media.image.field_media_image
-          - media.type.image
-          - responsive_image.styles.narrow
-        module:
-          - responsive_image
-      id: media.image.narrow
-      targetEntityType: media
-      bundle: image
-      mode: narrow
-      content:
-        field_media_image:
-          type: responsive_image
-          label: hidden
-          settings:
-            responsive_image_style: narrow
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 1
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: jqdouSPdlMuhGbF2hOxwtaBMZy190ZRvQOIYFGk-P9I
-  -
-    collection: ''
-    name: core.entity_view_display.media.image.wide
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.wide
-          - field.field.media.image.field_media_image
-          - media.type.image
-          - responsive_image.styles.drutopia_main
-        module:
-          - responsive_image
-      id: media.image.wide
-      targetEntityType: media
-      bundle: image
-      mode: wide
-      content:
-        field_media_image:
-          type: responsive_image
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_extra_wide
-            image_link: ''
-            image_loading:
-              attribute: eager
-          third_party_settings: {  }
-          weight: 1
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: L-tvHNhWMxmlrY5QcpYWXhODjMwypFqXoEXNSroi5j8
-  -
-    collection: ''
-    name: core.entity_view_display.media.remote_video.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.remote_video.field_media_oembed_video
-          - media.type.remote_video
-        module:
-          - media
-      id: media.remote_video.default
-      targetEntityType: media
-      bundle: remote_video
-      mode: default
-      content:
-        field_media_oembed_video:
-          type: oembed
-          label: hidden
-          settings:
-            max_width: 0
-            max_height: 0
-            loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: z8VkL4rSXlcRRvvZGTQYRJ8CVzOKwsK4z-2LusSkO5Q
-  -
-    collection: ''
-    name: core.entity_view_display.media.remote_video.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.media_library
-          - field.field.media.remote_video.field_media_oembed_video
-          - image.style.medium
-          - media.type.remote_video
-        module:
-          - image
-      id: media.remote_video.media_library
-      targetEntityType: media
-      bundle: remote_video
-      mode: media_library
-      content:
-        thumbnail:
-          type: image
-          label: hidden
-          settings:
-            image_style: medium
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        field_media_oembed_video: true
-        name: true
-        search_api_excerpt: true
-        uid: true
-      _core:
-        default_config_hash: V6aNSetHlDgDfn65BhxM6lScmnrnL0aBxkTU9va5GgU
-  -
-    collection: ''
-    name: core.entity_view_display.media.video.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.field.media.video.field_media_video_file
-          - media.type.video
-        module:
-          - file
-      id: media.video.default
-      targetEntityType: media
-      bundle: video
-      mode: default
-      content:
-        field_media_video_file:
-          type: file_video
-          label: hidden
-          settings:
-            controls: true
-            autoplay: false
-            loop: false
-            multiple_file_display_type: tags
-            muted: false
-            width: 640
-            height: 480
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        name: true
-        search_api_excerpt: true
-        thumbnail: true
-        uid: true
-      _core:
-        default_config_hash: j4MJgDdEXztLGlE1HOfShdrBXLbbJRWHxayzF0V9R4A
-  -
-    collection: ''
-    name: core.entity_view_display.media.video.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.media_library
-          - field.field.media.video.field_media_video_file
-          - image.style.thumbnail
-          - media.type.video
-        module:
-          - image
-      id: media.video.media_library
-      targetEntityType: media
-      bundle: video
-      mode: media_library
-      content:
-        thumbnail:
-          type: image
-          label: hidden
-          settings:
-            image_style: thumbnail
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: content
-      hidden:
-        created: true
-        field_media_video_file: true
-        name: true
-        search_api_excerpt: true
-        uid: true
-      _core:
-        default_config_hash: ra9pCZSNfC2E0v0rxibirEcUAgp79s6oke7osDjpst0
   -
     collection: ''
     name: core.entity_view_display.paragraph.faq.default
@@ -1274,7 +296,7 @@ items:
       content:
         field_faq:
           weight: 0
-          label: hidden
+          label: visually_hidden
           settings:
             active: null
             heightStyle: auto
@@ -1288,10 +310,7 @@ items:
               ds_limit: ''
           type: faqfield_accordion
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: OjvNYYHOUtgOHQRicWbzhlQmBYeQgpmFXmi-wGpCBO4
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.file.default
@@ -1316,10 +335,7 @@ items:
           third_party_settings: {  }
           type: file_default
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 7APNi5gpaAg2_8CMsnLPZDur8I52PYdXwRHzYO3SLbg
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.image.default
@@ -1329,32 +345,25 @@ items:
       dependencies:
         config:
           - field.field.paragraph.image.field_image
-          - field.field.paragraph.image.field_media_image
           - image.style.large
           - paragraphs.paragraphs_type.image
         module:
-          - media
+          - image
       id: paragraph.image.default
       targetEntityType: paragraph
       bundle: image
       mode: default
       content:
-        field_media_image:
-          type: media_thumbnail
+        field_image:
+          weight: 0
           label: hidden
           settings:
-            image_link: ''
             image_style: large
-            image_loading:
-              attribute: lazy
+            image_link: ''
           third_party_settings: {  }
-          weight: 0
+          type: image
           region: content
-      hidden:
-        field_image: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: EZcpSrf0LkFkRJ6caGJtQaQJB7fbzzVNOjOBrjV2QW0
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.slide.columnar
@@ -1366,21 +375,30 @@ items:
           - core.entity_view_mode.paragraph.columnar
           - field.field.paragraph.slide.field_image
           - field.field.paragraph.slide.field_link
-          - field.field.paragraph.slide.field_media_image
           - field.field.paragraph.slide.field_text
           - paragraphs.paragraphs_type.slide
+          - responsive_image.styles.narrow
         module:
           - link
-          - media_responsive_thumbnail
+          - responsive_image
           - text
       id: paragraph.slide.columnar
       targetEntityType: paragraph
       bundle: slide
       mode: columnar
       content:
+        field_image:
+          weight: 0
+          label: visually_hidden
+          settings:
+            responsive_image_style: narrow
+            image_link: ''
+          third_party_settings: {  }
+          type: responsive_image
+          region: content
         field_link:
-          type: link
-          label: hidden
+          weight: 1
+          label: visually_hidden
           settings:
             trim_length: 80
             url_only: false
@@ -1388,31 +406,16 @@ items:
             rel: ''
             target: ''
           third_party_settings: {  }
-          weight: 1
-          region: content
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: ''
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
+          type: link
           region: content
         field_text:
-          type: text_default
-          label: hidden
+          weight: 2
+          label: visually_hidden
           settings: {  }
           third_party_settings: {  }
-          weight: 2
+          type: text_default
           region: content
-      hidden:
-        field_image: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 3DuBaTqp1Siiz3TRwDjaqP9OEA1aRgFjQzPVAPf5WSM
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.slide.default
@@ -1423,22 +426,29 @@ items:
         config:
           - field.field.paragraph.slide.field_image
           - field.field.paragraph.slide.field_link
-          - field.field.paragraph.slide.field_media_image
           - field.field.paragraph.slide.field_text
+          - image.style.focal_point_2600x1300
           - paragraphs.paragraphs_type.slide
-          - responsive_image.styles.drutopia_main
         module:
+          - image
           - link
-          - media_responsive_thumbnail
           - text
       id: paragraph.slide.default
       targetEntityType: paragraph
       bundle: slide
       mode: default
       content:
+        field_image:
+          weight: 0
+          label: visually_hidden
+          settings:
+            image_style: focal_point_2600x1300
+          third_party_settings: {  }
+          type: image_url
+          region: content
         field_link:
-          type: link
-          label: hidden
+          weight: 2
+          label: visually_hidden
           settings:
             trim_length: 80
             url_only: false
@@ -1446,31 +456,16 @@ items:
             rel: ''
             target: ''
           third_party_settings: {  }
-          weight: 2
-          region: content
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_main
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
+          type: link
           region: content
         field_text:
-          type: text_default
-          label: hidden
+          weight: 1
+          label: visually_hidden
           settings: {  }
           third_party_settings: {  }
-          weight: 1
+          type: text_default
           region: content
-      hidden:
-        field_image: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: ohH3LV4HCmywa9RKlBnqXM7-CltOakwn08h2XRzlE5A
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.text.default
@@ -1495,10 +490,7 @@ items:
           third_party_settings: {  }
           type: text_default
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: UqJ8MrV9NzsI3Y7YOmxgPliS0FlCUFjBiUNdxx8CZ9g
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.update.default
@@ -1557,10 +549,7 @@ items:
           third_party_settings: {  }
           type: datetime_default
           region: left
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: qDNGlVh5FS_YT6M5ZIb3A2fCPt6vUmXfKXlTJxcL1QM
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.paragraph.video.default
@@ -1580,7 +569,7 @@ items:
       content:
         field_video_embed:
           weight: 0
-          label: hidden
+          label: visually_hidden
           settings:
             responsive: true
             width: 854
@@ -1589,10 +578,7 @@ items:
           third_party_settings: {  }
           type: video_embed_field_video
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 7N7ip2NAorA5LEffe4X0RaQB3n3Nh9af-V2A7DH-YGo
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_mode.block_content.columnar
@@ -1606,38 +592,6 @@ items:
       label: Columnar
       targetEntityType: block_content
       cache: true
-      _core:
-        default_config_hash: QqgQqXTAzP3BZhl5XLw2R5EE1BsJTCwptXnMkjY8xZw
-  -
-    collection: ''
-    name: core.entity_view_mode.media.narrow
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media.narrow
-      label: Narrow
-      targetEntityType: media
-      cache: true
-      _core:
-        default_config_hash: FNlRm8KB_uxHKVIuv4uEA3sQbmGiBKQ_r9BbgH61Bp8
-  -
-    collection: ''
-    name: core.entity_view_mode.media.wide
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media.wide
-      label: Wide
-      targetEntityType: media
-      cache: true
-      _core:
-        default_config_hash: kYbmr_oacOcMdwBxezolZwPMWVT7saq972LWg92nKZk
   -
     collection: ''
     name: core.entity_view_mode.node.box
@@ -1651,8 +605,6 @@ items:
       label: Box
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: 72C_fCp3_JLorvt4YLz5w9UeUuor4vY465KrhUFEBxM
   -
     collection: ''
     name: core.entity_view_mode.node.card
@@ -1666,8 +618,6 @@ items:
       label: Card
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: z6QSG0XSjPK_V4notuY8MaeIAO_QnwfvuH825TyLiHg
   -
     collection: ''
     name: core.entity_view_mode.node.media
@@ -1681,8 +631,6 @@ items:
       label: 'Media object'
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: zCJHOoAhXJBG7URAzV10-MNcnU7eNX9VTz4LvWS625I
   -
     collection: ''
     name: core.entity_view_mode.node.micro
@@ -1696,8 +644,6 @@ items:
       label: Micro
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: REKLyEtFZOM1LgQ-KVSwvqkcwNlS7EvkWbdV12zinFw
   -
     collection: ''
     name: core.entity_view_mode.node.simple_card
@@ -1711,8 +657,6 @@ items:
       label: 'Simple card'
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: Crt6i6j8yM0YLdbxgS7BCzDtadVne43fhOy0WVkoB1o
   -
     collection: ''
     name: core.entity_view_mode.node.small_card
@@ -1726,8 +670,6 @@ items:
       label: 'Small card'
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: I68oVlHUQbsqRH-WCvFJRANAwaYqU1nl3ZHVstUkWkg
   -
     collection: ''
     name: core.entity_view_mode.node.tile
@@ -1741,8 +683,6 @@ items:
       label: Tile
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: nfevs6UIIvKBEKDLqjESVCx8H-owjCTzCHcyb398q3w
   -
     collection: ''
     name: core.entity_view_mode.paragraph.columnar
@@ -1756,228 +696,6 @@ items:
       label: Columnar
       targetEntityType: paragraph
       cache: true
-      _core:
-        default_config_hash: hFG3sm7kkwkMu9ruyw2Ys51J421IyluY9DhnSsT6tMM
-  -
-    collection: ''
-    name: crop.type.extra_wide_rectangle
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: extra_wide_rectangle
-      label: 'Extra-wide rectangle'
-      description: 'Ten units wide to five units tall.'
-      aspect_ratio: '2:1'
-      soft_limit_width: 600
-      soft_limit_height: 300
-      hard_limit_width: 200
-      hard_limit_height: 100
-      _core:
-        default_config_hash: '-gaXv1-FB193LGMSMf1VVMvjs_aPtJgC9W9k3TsyMos'
-  -
-    collection: ''
-    name: crop.type.square
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      label: Square
-      id: square
-      description: ''
-      aspect_ratio: '1:1'
-      soft_limit_width: 300
-      soft_limit_height: 300
-      hard_limit_width: 100
-      hard_limit_height: 100
-      _core:
-        default_config_hash: tDFmNCLELYpI263QvSxywmus0IGl_7APIIuRwTJrSJE
-  -
-    collection: ''
-    name: crop.type.wide_rectangle
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: wide_rectangle
-      label: 'Wide rectangle'
-      description: 'Ten units wide to six units tall.'
-      aspect_ratio: '5:3'
-      soft_limit_width: 1000
-      soft_limit_height: 600
-      hard_limit_width: 500
-      hard_limit_height: 300
-      _core:
-        default_config_hash: dL4rMqEd9txKq-rSlwyG8SC45WD7TLoAlsYsQe75B_4
-  -
-    collection: ''
-    name: field.field.media.audio.field_media_audio_file
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.media.field_media_audio_file
-          - media.type.audio
-        module:
-          - file
-      id: media.audio.field_media_audio_file
-      field_name: field_media_audio_file
-      entity_type: media
-      bundle: audio
-      label: 'Audio file'
-      description: ''
-      required: true
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:file'
-        handler_settings: {  }
-        file_directory: '[date:custom:Y]-[date:custom:m]'
-        file_extensions: 'mp3 wav aac'
-        max_filesize: ''
-        description_field: false
-      field_type: file
-      _core:
-        default_config_hash: UlZPIbHcLyNqGY5bvydCTijGcKDmwn4Fo8oYZT85wlk
-  -
-    collection: ''
-    name: field.field.media.document.field_media_document
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.media.field_media_document
-          - media.type.document
-        module:
-          - file
-        enforced:
-          module:
-            - media
-      id: media.document.field_media_document
-      field_name: field_media_document
-      entity_type: media
-      bundle: document
-      label: Document
-      description: ''
-      required: true
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:file'
-        handler_settings: {  }
-        file_directory: '[date:custom:Y]-[date:custom:m]'
-        file_extensions: 'txt rtf doc docx ppt pptx xls xlsx pdf odf odg odp ods odt fodt fods fodp fodg key numbers pages'
-        max_filesize: ''
-        description_field: false
-      field_type: file
-      _core:
-        default_config_hash: DY5HtJTxUjFRGU_PaY6ifo2nhR-nAZ0y0s6kLmUbv5g
-  -
-    collection: ''
-    name: field.field.media.image.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.media.field_media_image
-          - media.type.image
-        module:
-          - image
-        enforced:
-          module:
-            - media
-      id: media.image.field_media_image
-      field_name: field_media_image
-      entity_type: media
-      bundle: image
-      label: Image
-      description: ''
-      required: true
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:file'
-        handler_settings: {  }
-        file_directory: '[date:custom:Y]-[date:custom:m]'
-        file_extensions: 'png gif jpg jpeg webp'
-        max_filesize: ''
-        max_resolution: ''
-        min_resolution: ''
-        alt_field: true
-        alt_field_required: true
-        title_field: false
-        title_field_required: false
-        default_image:
-          uuid: ''
-          alt: ''
-          title: ''
-          width: null
-          height: null
-      field_type: image
-      _core:
-        default_config_hash: G50TJOA95bCLfsZZR93jMEuPCFNOxeEklwM_co0wqdU
-  -
-    collection: ''
-    name: field.field.media.remote_video.field_media_oembed_video
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.media.field_media_oembed_video
-          - media.type.remote_video
-      id: media.remote_video.field_media_oembed_video
-      field_name: field_media_oembed_video
-      entity_type: media
-      bundle: remote_video
-      label: 'Video URL'
-      description: ''
-      required: true
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings: {  }
-      field_type: string
-      _core:
-        default_config_hash: Eo4HHenV5iZat_kEWgr_wydD3TgwURMCzwt-7qIEyoM
-  -
-    collection: ''
-    name: field.field.media.video.field_media_video_file
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.media.field_media_video_file
-          - media.type.video
-        module:
-          - file
-      id: media.video.field_media_video_file
-      field_name: field_media_video_file
-      entity_type: media
-      bundle: video
-      label: 'Video file'
-      description: ''
-      required: true
-      translatable: true
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:file'
-        handler_settings: {  }
-        file_directory: '[date:custom:Y]-[date:custom:m]'
-        file_extensions: mp4
-        max_filesize: ''
-        description_field: false
-      field_type: file
-      _core:
-        default_config_hash: 6kMMjmk2r_csGQ52qI9BUaO8r_oAzNLbxlclaj-JlDQ
   -
     collection: ''
     name: field.field.paragraph.faq.field_faq
@@ -2003,8 +721,6 @@ items:
       settings:
         default_format: basic_html
       field_type: faqfield
-      _core:
-        default_config_hash: HhZz537H5gJ7zksj2I2dU3yg8L0OnjPwibq-57NpPl8
   -
     collection: ''
     name: field.field.paragraph.file.field_file
@@ -2035,8 +751,6 @@ items:
         handler: 'default:file'
         handler_settings: {  }
       field_type: file
-      _core:
-        default_config_hash: i0b97odFJz3_v7ctsvVTJCH3HXJVTjnrcfuONJU0J_o
   -
     collection: ''
     name: field.field.paragraph.image.field_image
@@ -2053,15 +767,13 @@ items:
       field_name: field_image
       entity_type: paragraph
       bundle: image
-      label: 'Image (deprecated)'
+      label: Image
       description: ''
       required: false
       translatable: false
       default_value: {  }
       default_value_callback: ''
       settings:
-        handler: 'default:file'
-        handler_settings: {  }
         file_directory: '[date:custom:Y]-[date:custom:m]'
         file_extensions: 'png gif jpg jpeg'
         max_filesize: ''
@@ -2077,45 +789,9 @@ items:
           title: ''
           width: null
           height: null
+        handler: 'default:file'
+        handler_settings: {  }
       field_type: image
-      _core:
-        default_config_hash: fKswwNfm7A_JZRKaPI9D4jCj9XuH1XkJw_tu5G7HqII
-  -
-    collection: ''
-    name: field.field.paragraph.image.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.paragraph.field_media_image
-          - media.type.image
-          - paragraphs.paragraphs_type.image
-        module:
-          - media_library_media_modify
-      id: paragraph.image.field_media_image
-      field_name: field_media_image
-      entity_type: paragraph
-      bundle: image
-      label: 'Media image'
-      description: ''
-      required: false
-      translatable: false
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:media'
-        handler_settings:
-          target_bundles:
-            image: image
-          sort:
-            field: _none
-            direction: ASC
-          auto_create: false
-          auto_create_bundle: ''
-      field_type: entity_reference_entity_modify
-      _core:
-        default_config_hash: 68hqAsoHkTnQEbmJR8h5NyCZtNhgS6VoiwU2rSIRJ1M
   -
     collection: ''
     name: field.field.paragraph.slide.field_image
@@ -2132,15 +808,13 @@ items:
       field_name: field_image
       entity_type: paragraph
       bundle: slide
-      label: 'Image (DEPRECATED)'
+      label: Image
       description: ''
       required: false
       translatable: true
       default_value: {  }
       default_value_callback: ''
       settings:
-        handler: 'default:file'
-        handler_settings: {  }
         file_directory: '[date:custom:Y]-[date:custom:m]'
         file_extensions: 'png gif jpg jpeg'
         max_filesize: ''
@@ -2156,9 +830,9 @@ items:
           title: ''
           width: null
           height: null
+        handler: 'default:file'
+        handler_settings: {  }
       field_type: image
-      _core:
-        default_config_hash: 90ikg0ITXrEXTkygUKQ3Lrh0WndunNnHBUfezA-8Tcs
   -
     collection: ''
     name: field.field.paragraph.slide.field_link
@@ -2185,44 +859,6 @@ items:
         link_type: 17
         title: 1
       field_type: link
-      _core:
-        default_config_hash: 3SQrcvd8PXzK2VjPW70QylqO9ngUJgi5IWFMCgn-z_4
-  -
-    collection: ''
-    name: field.field.paragraph.slide.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.paragraph.field_media_image
-          - media.type.image
-          - paragraphs.paragraphs_type.slide
-        module:
-          - media_library_media_modify
-      id: paragraph.slide.field_media_image
-      field_name: field_media_image
-      entity_type: paragraph
-      bundle: slide
-      label: 'Media image'
-      description: ''
-      required: false
-      translatable: false
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:media'
-        handler_settings:
-          target_bundles:
-            image: image
-          sort:
-            field: _none
-            direction: ASC
-          auto_create: false
-          auto_create_bundle: ''
-      field_type: entity_reference_entity_modify
-      _core:
-        default_config_hash: Y1AH7iGXAPYpIo1CWJxk0aVTKSNGq0mFrkSh6KmYVn8
   -
     collection: ''
     name: field.field.paragraph.slide.field_text
@@ -2245,11 +881,8 @@ items:
       translatable: true
       default_value: {  }
       default_value_callback: ''
-      settings:
-        allowed_formats: {  }
+      settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: aGheEFevpljRn84GcfwTuh_hfNL7BuAoE6LHfr9sPvM
   -
     collection: ''
     name: field.field.paragraph.text.field_text
@@ -2272,11 +905,8 @@ items:
       translatable: false
       default_value: {  }
       default_value_callback: ''
-      settings:
-        allowed_formats: {  }
+      settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: WiG8dWcaC4ohSz2wUvsXJa_knYBY-8XBkXTLo4Grr4I
   -
     collection: ''
     name: field.field.paragraph.update.field_text
@@ -2299,11 +929,8 @@ items:
       translatable: true
       default_value: {  }
       default_value_callback: ''
-      settings:
-        allowed_formats: {  }
+      settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: CKDEwRBG2PB0gfdtmfr5OEgYoHP4EDVoeySFoW5rums
   -
     collection: ''
     name: field.field.paragraph.update.field_update_date
@@ -2331,8 +958,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: datetime
-      _core:
-        default_config_hash: yagpX5FEGlwqGGzCIQtfIfP_rj9gDApFUEL3UTNzMSg
   -
     collection: ''
     name: field.field.paragraph.video.field_video_embed
@@ -2361,8 +986,6 @@ items:
           youtube: '0'
           youtube_playlist: '0'
       field_type: video_embed_field
-      _core:
-        default_config_hash: Yrm-bWfkd2hARu0QJI5GATWCD4Sf6COaEHduLWg21M0
   -
     collection: ''
     name: field.storage.block_content.field_slide
@@ -2387,159 +1010,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: AxkDEkx9vK76lF4X6JBx0k4oWSPR6RhfYLRM6QWiIbw
-  -
-    collection: ''
-    name: field.storage.media.field_media_audio_file
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - file
-          - media
-      id: media.field_media_audio_file
-      field_name: field_media_audio_file
-      entity_type: media
-      type: file
-      settings:
-        target_type: file
-        display_field: false
-        display_default: false
-        uri_scheme: public
-      module: file
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: JCHoh95CpUeBx9ch24Tmi6ru0nwmNz8xWVH4Qs7RnTg
-  -
-    collection: ''
-    name: field.storage.media.field_media_document
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - file
-          - media
-        enforced:
-          module:
-            - media
-      id: media.field_media_document
-      field_name: field_media_document
-      entity_type: media
-      type: file
-      settings:
-        target_type: file
-        display_field: false
-        display_default: false
-        uri_scheme: public
-      module: file
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: BdkTx7IL59MCw5a_fOZprPTOGM_wcjz-Fm8g7HV3vFk
-  -
-    collection: ''
-    name: field.storage.media.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - file
-          - image
-          - media
-        enforced:
-          module:
-            - media
-      id: media.field_media_image
-      field_name: field_media_image
-      entity_type: media
-      type: image
-      settings:
-        target_type: file
-        display_field: false
-        display_default: false
-        uri_scheme: public
-        default_image:
-          uuid: null
-          alt: ''
-          title: ''
-          width: null
-          height: null
-      module: image
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: 0N0KSFk57p6qsq3qM4lYVGSuROvzXK-tSsdwByqUh3g
-  -
-    collection: ''
-    name: field.storage.media.field_media_oembed_video
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media.field_media_oembed_video
-      field_name: field_media_oembed_video
-      entity_type: media
-      type: string
-      settings:
-        max_length: 255
-        case_sensitive: false
-        is_ascii: false
-      module: core
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: cNf_852Dq-fNnSaMI4LxL-J6N7bLkHuDbD9EUqOn4_U
-  -
-    collection: ''
-    name: field.storage.media.field_media_video_file
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - file
-          - media
-      id: media.field_media_video_file
-      field_name: field_media_video_file
-      entity_type: media
-      type: file
-      settings:
-        target_type: file
-        display_field: false
-        display_default: false
-        uri_scheme: public
-      module: file
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: z5mgbn1PIVZ5TNMByBmivqo_u3Rdk58UIzpyN4ypTeM
   -
     collection: ''
     name: field.storage.node.field_body_paragraph
@@ -2564,8 +1034,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: apBTEXiNuvZPiGbTYCwsasekxQ4YqUOvtnEuzATjiwc
   -
     collection: ''
     name: field.storage.node.field_image
@@ -2601,34 +1069,6 @@ items:
           - target_id
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: xujY74EBripC-8AA-UCTh5fUytzlg3kcQBM29IH41mQ
-  -
-    collection: ''
-    name: field.storage.node.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-          - media_library_media_modify
-          - node
-      id: node.field_media_image
-      field_name: field_media_image
-      entity_type: node
-      type: entity_reference_entity_modify
-      settings:
-        target_type: media
-      module: media_library_media_modify
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: u1BJrs9USBwZjpS7g60ZH8u2sKaLWtoujJwVNcYIYDE
   -
     collection: ''
     name: field.storage.node.field_paragraph
@@ -2653,8 +1093,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: GJ3c5-oxhWRoRHwb-EAbBMWh5oJaRrwXWBE79MNqHEI
   -
     collection: ''
     name: field.storage.node.field_summary
@@ -2677,8 +1115,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: N5_02nQrQQDjBfs7YVGK9j_5tAg0GnCop4tHxV2fXmQ
   -
     collection: ''
     name: field.storage.node.field_tags
@@ -2702,8 +1138,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: IdZ8A-giJtLe4z8yyZiu1PBa_sy0uqG91XEblrIHBVs
   -
     collection: ''
     name: field.storage.node.field_topics
@@ -2727,8 +1161,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: 4nfCwbS1LYl0l2T7piSaWE_e5X9jKehpN0X8fUOvn8A
   -
     collection: ''
     name: field.storage.paragraph.field_faq
@@ -2751,8 +1183,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: asVsdD_z0Ht6Asv-BLRI6upQtFeds9ILrYpqbxmbctE
   -
     collection: ''
     name: field.storage.paragraph.field_file
@@ -2779,8 +1209,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: VbzWOLBtW6nflFtbjF45aMNo80tQ8kmayJvlMULfT8o
   -
     collection: ''
     name: field.storage.paragraph.field_image
@@ -2814,8 +1242,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: LgkUWAI6XZ77w8nYvv2A8WD1l_n6tBX3j8eSjHhzPfk
   -
     collection: ''
     name: field.storage.paragraph.field_link
@@ -2838,34 +1264,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: shpX7SN4SMQrtD1yinDZI59p7VHAGCVOs0P3E73LNyQ
-  -
-    collection: ''
-    name: field.storage.paragraph.field_media_image
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-          - media_library_media_modify
-          - paragraphs
-      id: paragraph.field_media_image
-      field_name: field_media_image
-      entity_type: paragraph
-      type: entity_reference_entity_modify
-      settings:
-        target_type: media
-      module: media_library_media_modify
-      locked: false
-      cardinality: 1
-      translatable: true
-      indexes: {  }
-      persist_with_no_fields: false
-      custom_storage: false
-      _core:
-        default_config_hash: ey-tX87OAJ8GQEP3qMmQZiOC0ug1m91GqqkKq5Bq6k8
   -
     collection: ''
     name: field.storage.paragraph.field_text
@@ -2888,8 +1286,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: iECtyKuz0YAntb4ScZLLMyh96KH9p9IDmgJrKB0WosQ
   -
     collection: ''
     name: field.storage.paragraph.field_update_date
@@ -2913,8 +1309,6 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: yD0qQkEgcvBrVG0iaF0vQLoF0NrZAL6ZyoHAag8OpfY
   -
     collection: ''
     name: field.storage.paragraph.field_video_embed
@@ -2937,504 +1331,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: 7pnKv1o8OLIFTOvfreN2O4S13MgT8mqaaGDhUoC8z88
-  -
-    collection: ''
-    name: image.style.drutopia_extra_wide_extra_large
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.extra_wide_rectangle
-        module:
-          - crop
-      name: drutopia_extra_wide_extra_large
-      label: 'Extra-wide extra-large'
-      effects:
-        d113d848-f9e6-4fd2-8c98-9b859796e840:
-          uuid: d113d848-f9e6-4fd2-8c98-9b859796e840
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: extra_wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        c4263bcc-2975-4d54-99ca-296c5b6131f5:
-          uuid: c4263bcc-2975-4d54-99ca-296c5b6131f5
-          id: image_scale
-          weight: 2
-          data:
-            width: 2600
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: PXhHY3h02Ao3iBYcAQTuJ9LhQ5ckRxBL91-vvmgWA7g
-  -
-    collection: ''
-    name: image.style.drutopia_extra_wide_extra_small
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.extra_wide_rectangle
-        module:
-          - crop
-      name: drutopia_extra_wide_extra_small
-      label: 'Extra-wide extra-small'
-      effects:
-        99a5677f-a2b4-4c3b-a6ae-ab59b5eee3e9:
-          uuid: 99a5677f-a2b4-4c3b-a6ae-ab59b5eee3e9
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: extra_wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        dda19dc4-0ccc-42b1-ae8f-65df895b1075:
-          uuid: dda19dc4-0ccc-42b1-ae8f-65df895b1075
-          id: image_scale
-          weight: 2
-          data:
-            width: 270
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: c-uUWpF34rkPWBXjgYY-1shoaUQAkY8VW7PcLfVzMAs
-  -
-    collection: ''
-    name: image.style.drutopia_extra_wide_large
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.extra_wide_rectangle
-        module:
-          - crop
-      name: drutopia_extra_wide_large
-      label: 'Extra-wide large'
-      effects:
-        534259e4-b61a-4a96-b131-50742a98770c:
-          uuid: 534259e4-b61a-4a96-b131-50742a98770c
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: extra_wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        da282f38-1997-4208-bfd9-a6f5bebd2930:
-          uuid: da282f38-1997-4208-bfd9-a6f5bebd2930
-          id: image_scale
-          weight: 2
-          data:
-            width: 1900
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: X9tDFMDI1F-0mmEmXTK3g_nTmdA4e0oRh2h6YA-p9so
-  -
-    collection: ''
-    name: image.style.drutopia_extra_wide_medium
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.extra_wide_rectangle
-        module:
-          - crop
-      name: drutopia_extra_wide_medium
-      label: 'Extra-wide medium'
-      effects:
-        fc5b7ebc-0309-45f4-8d0c-2adec1ea5960:
-          uuid: fc5b7ebc-0309-45f4-8d0c-2adec1ea5960
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: extra_wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        a920756b-b3e1-4143-a54d-78b42bc9fcdc:
-          uuid: a920756b-b3e1-4143-a54d-78b42bc9fcdc
-          id: image_scale
-          weight: 2
-          data:
-            width: 1300
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: H3KInR1AvRnzjtUcaEfaXIZHE60b4WiqZvocT0octA8
-  -
-    collection: ''
-    name: image.style.drutopia_extra_wide_small
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.extra_wide_rectangle
-        module:
-          - crop
-      name: drutopia_extra_wide_small
-      label: 'Extra-wide small'
-      effects:
-        84311a0a-d6a5-43ca-8fe9-15dd8bfee5c4:
-          uuid: 84311a0a-d6a5-43ca-8fe9-15dd8bfee5c4
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: extra_wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        9bd514b3-1894-4e9e-889c-8588c2c5b6b9:
-          uuid: 9bd514b3-1894-4e9e-889c-8588c2c5b6b9
-          id: image_scale
-          weight: 2
-          data:
-            width: 650
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: 5QIlla3TxySeT5paJmoeqraqs1oe6OG6nYjGpFBoNio
-  -
-    collection: ''
-    name: image.style.drutopia_square_extra_large
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.square
-        module:
-          - crop
-      name: drutopia_square_extra_large
-      label: 'Square extra-large'
-      effects:
-        9d3d487e-7c7c-4245-b48e-10fa2d7fcde0:
-          uuid: 9d3d487e-7c7c-4245-b48e-10fa2d7fcde0
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: square
-            automatic_crop_provider: automated_crop_default
-        e7fdbc5d-7a1a-4c18-a422-7c4bc2fdc82a:
-          uuid: e7fdbc5d-7a1a-4c18-a422-7c4bc2fdc82a
-          id: image_scale
-          weight: 2
-          data:
-            width: 1300
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: CGXRhZowgLgmR1CW9PTuH4_kI4yl8jmxOCyzrcXkB8s
-  -
-    collection: ''
-    name: image.style.drutopia_square_extra_small
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.square
-        module:
-          - crop
-      name: drutopia_square_extra_small
-      label: 'Square extra-small '
-      effects:
-        6b4924cb-48f6-43c2-b837-206e952e58b2:
-          uuid: 6b4924cb-48f6-43c2-b837-206e952e58b2
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: square
-            automatic_crop_provider: automated_crop_default
-        0a847a91-370f-4044-965f-3ee80816925e:
-          uuid: 0a847a91-370f-4044-965f-3ee80816925e
-          id: image_scale
-          weight: 2
-          data:
-            width: 135
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: a4g3N9iSVS0w4My8vKRAJVqXGFBLbBARijt_Bzxjs5o
-  -
-    collection: ''
-    name: image.style.drutopia_square_large
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.square
-        module:
-          - crop
-      name: drutopia_square_large
-      label: 'Square large'
-      effects:
-        1a1643eb-5557-4367-a03d-5aa277f9dad0:
-          uuid: 1a1643eb-5557-4367-a03d-5aa277f9dad0
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: square
-            automatic_crop_provider: automated_crop_default
-        e5572093-6c4a-4578-bbf7-8c97649dd59f:
-          uuid: e5572093-6c4a-4578-bbf7-8c97649dd59f
-          id: image_scale
-          weight: 2
-          data:
-            width: 950
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: 6qzuaSacNLzuiIi1Wl-ldYKZgfRmjLhjBXQVTRCZG-s
-  -
-    collection: ''
-    name: image.style.drutopia_square_medium
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.square
-        module:
-          - crop
-      name: drutopia_square_medium
-      label: 'Square medium'
-      effects:
-        20ae03dc-f974-4bca-8fa0-5fd1d98b6f91:
-          uuid: 20ae03dc-f974-4bca-8fa0-5fd1d98b6f91
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: square
-            automatic_crop_provider: automated_crop_default
-        ebced429-7f52-4fd7-8f4b-8eb637fd7b56:
-          uuid: ebced429-7f52-4fd7-8f4b-8eb637fd7b56
-          id: image_scale
-          weight: 2
-          data:
-            width: 650
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: wiWS9f9KS8VAgCv0Jf1xH1QwVxqm_NJWkvlcORNCI_g
-  -
-    collection: ''
-    name: image.style.drutopia_square_small
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.square
-        module:
-          - crop
-      name: drutopia_square_small
-      label: 'Square small'
-      effects:
-        f501ba24-4feb-44a7-8a09-b29f98cd9b25:
-          uuid: f501ba24-4feb-44a7-8a09-b29f98cd9b25
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: square
-            automatic_crop_provider: automated_crop_default
-        e935798f-d97a-4f96-9cbd-20ed7ae9a358:
-          uuid: e935798f-d97a-4f96-9cbd-20ed7ae9a358
-          id: image_scale
-          weight: 2
-          data:
-            width: 325
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: toUvv7Z-gBe0OOMy_xCFIe_gAKi9l7i5_si2FPxqAqI
-  -
-    collection: ''
-    name: image.style.drutopia_wide
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.wide_rectangle
-        module:
-          - crop
-      name: drutopia_wide
-      label: 'Wide (1090)'
-      effects:
-        09959c15-59ce-4f6d-90df-e2d7cf32bce5:
-          uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5
-          id: image_scale
-          weight: -9
-          data:
-            width: 1090
-            height: null
-            upscale: false
-        1a353a64-72a1-44d5-b757-0288cd4fb157:
-          uuid: 1a353a64-72a1-44d5-b757-0288cd4fb157
-          id: crop_crop
-          weight: -10
-          data:
-            crop_type: wide_rectangle
-            automatic_crop_provider: automated_crop_default
-      _core:
-        default_config_hash: kNNDAZPw3BxoRNwagvduKCcDVVVtpuNFPNX4tj_ufig
-  -
-    collection: ''
-    name: image.style.drutopia_wide_extra_large
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.wide_rectangle
-        module:
-          - crop
-      name: drutopia_wide_extra_large
-      label: 'Wide extra-large'
-      effects:
-        ec86d675-795f-4a16-b497-3838af74d1c4:
-          uuid: ec86d675-795f-4a16-b497-3838af74d1c4
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        69c087e5-402d-4849-be76-16eb22dd7fc1:
-          uuid: 69c087e5-402d-4849-be76-16eb22dd7fc1
-          id: image_scale
-          weight: 2
-          data:
-            width: 2600
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: '-IL2VFbEBYRJD_SOOmtiIS2Cv35Vfk1asab0JlGhvhA'
-  -
-    collection: ''
-    name: image.style.drutopia_wide_extra_small
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.wide_rectangle
-        module:
-          - crop
-      name: drutopia_wide_extra_small
-      label: 'Wide extra-small'
-      effects:
-        8b4d9126-dd97-4b10-89d0-be415358d3ad:
-          uuid: 8b4d9126-dd97-4b10-89d0-be415358d3ad
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        f33c7363-1707-457f-bd02-58058c40f5d4:
-          uuid: f33c7363-1707-457f-bd02-58058c40f5d4
-          id: image_scale
-          weight: 2
-          data:
-            width: 270
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: zR-DPkkCP0aNRxhTjNasr1aYbZG7uL5bm14tnq8voZA
-  -
-    collection: ''
-    name: image.style.drutopia_wide_large
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.wide_rectangle
-        module:
-          - crop
-      name: drutopia_wide_large
-      label: 'Wide large'
-      effects:
-        2dc5870d-380f-4214-ab18-1f4b97f662ac:
-          uuid: 2dc5870d-380f-4214-ab18-1f4b97f662ac
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        b4a65084-2cba-475a-8452-840d6e2eee5a:
-          uuid: b4a65084-2cba-475a-8452-840d6e2eee5a
-          id: image_scale
-          weight: 2
-          data:
-            width: 1900
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: 5ES-pOsiQ5NKYhLXPVH4wo94Yk73gsZluOJZtod83dY
-  -
-    collection: ''
-    name: image.style.drutopia_wide_medium
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.wide_rectangle
-        module:
-          - crop
-      name: drutopia_wide_medium
-      label: 'Wide medium'
-      effects:
-        ebe52955-3408-4181-8cb0-26aa351e348e:
-          uuid: ebe52955-3408-4181-8cb0-26aa351e348e
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        6fa0acf6-4530-4488-aa0a-10342e34cd51:
-          uuid: 6fa0acf6-4530-4488-aa0a-10342e34cd51
-          id: image_scale
-          weight: 2
-          data:
-            width: 1300
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: L1IxLUShVV_NQDFMwExe3T0Ubt9f4UPZh4yhksmsnDE
-  -
-    collection: ''
-    name: image.style.drutopia_wide_small
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - crop.type.wide_rectangle
-        module:
-          - crop
-      name: drutopia_wide_small
-      label: 'Wide small'
-      effects:
-        816ee922-2f69-4770-8c87-74b09ad53a0f:
-          uuid: 816ee922-2f69-4770-8c87-74b09ad53a0f
-          id: crop_crop
-          weight: 1
-          data:
-            crop_type: wide_rectangle
-            automatic_crop_provider: automated_crop_default
-        aaabf105-6aa7-4d46-80ce-9674b0c54f95:
-          uuid: aaabf105-6aa7-4d46-80ce-9674b0c54f95
-          id: image_scale
-          weight: 2
-          data:
-            width: 650
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: b07us1-9XDjdOGTsn6ZPtECcGNWEgtzF8XXTO_JHy5s
   -
     collection: ''
     name: image.style.focal_point_1300x650
@@ -3455,8 +1351,6 @@ items:
             width: 1300
             height: 650
             crop_type: focal_point
-      _core:
-        default_config_hash: JhakHi5Bp4GURB73dGJlxCGA5BT0Hp8UBH53VPE91OA
   -
     collection: ''
     name: image.style.focal_point_195x260
@@ -3477,30 +1371,6 @@ items:
             width: 195
             height: 260
             crop_type: focal_point
-      _core:
-        default_config_hash: BcDSdo--ZBYhsTxtWzQhPtO2oD6dFpgLGulG9Uq3hJI
-  -
-    collection: ''
-    name: image.style.focal_point_220_square
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - focal_point
-      name: focal_point_220_square
-      label: 'Medium square (220x220) focal point'
-      effects:
-        f6232ea6-e067-4638-a052-3744ec14a073:
-          uuid: f6232ea6-e067-4638-a052-3744ec14a073
-          id: focal_point_scale_and_crop
-          weight: 1
-          data:
-            width: 220
-            height: 220
-            crop_type: focal_point
-      _core:
-        default_config_hash: SgOXMfUaOC0ZUeczRr3HYchXj4gUjwMcADniCYJLymc
   -
     collection: ''
     name: image.style.focal_point_2600x1300
@@ -3521,8 +1391,6 @@ items:
             width: 2600
             height: 1300
             crop_type: focal_point
-      _core:
-        default_config_hash: Mc09CCd6YUU46FOF_XJ_Odx0Jjo56ltgpi1EPnjq0Ks
   -
     collection: ''
     name: image.style.focal_point_325x195
@@ -3543,8 +1411,6 @@ items:
             width: 325
             height: 195
             crop_type: focal_point
-      _core:
-        default_config_hash: 1l_YGYrTVB3-oyvoPxSKtsQDYo_yl8IVYJZLBHVw0aw
   -
     collection: ''
     name: image.style.focal_point_390x520
@@ -3565,30 +1431,6 @@ items:
             width: 390
             height: 520
             crop_type: focal_point
-      _core:
-        default_config_hash: furwmdLfWJQuM0stMUMiGCAK9Bf8FFUtma5qfos2fRA
-  -
-    collection: ''
-    name: image.style.focal_point_480_square
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - focal_point
-      name: focal_point_480_square
-      label: 'Large square (480×480) focal point'
-      effects:
-        436dfbfa-0150-47e4-b412-b32f7526f872:
-          uuid: 436dfbfa-0150-47e4-b412-b32f7526f872
-          id: focal_point_scale_and_crop
-          weight: 1
-          data:
-            width: 480
-            height: 480
-            crop_type: focal_point
-      _core:
-        default_config_hash: 8kxkJflOy1gPVfj36En0POkNqcXVCe31GYg8BKQGnIA
   -
     collection: ''
     name: image.style.focal_point_650x390
@@ -3609,8 +1451,6 @@ items:
             width: 650
             height: 390
             crop_type: focal_point
-      _core:
-        default_config_hash: GXhi1QLJL-gzU50nzrkjTu91_gOPg_xJG0jywojwycg
   -
     collection: ''
     name: image.style.focal_point_780x1040
@@ -3631,30 +1471,24 @@ items:
             width: 780
             height: 1040
             crop_type: focal_point
-      _core:
-        default_config_hash: 1qee2igdHVzG2UwKjYE1V0Ro8NylR43Y_kSWuZTaeSE
   -
     collection: ''
     name: image.style.small_square
     data:
       langcode: en
       status: true
-      dependencies:
-        module:
-          - focal_point
+      dependencies: {  }
       name: small_square
-      label: 'Small square (170x170) focal point'
+      label: 'Small square (170x170)'
       effects:
-        5b1257a2-35db-4203-a97e-5d3e5e138bc5:
-          uuid: 5b1257a2-35db-4203-a97e-5d3e5e138bc5
-          id: focal_point_scale_and_crop
-          weight: 2
+        fa950bf3-2e2e-44b9-bf11-26bee6a3218a:
+          uuid: fa950bf3-2e2e-44b9-bf11-26bee6a3218a
+          id: image_scale_and_crop
+          weight: 1
           data:
             width: 170
             height: 170
-            crop_type: focal_point
-      _core:
-        default_config_hash: AP-6TgQrlEF2Os--UDSAteBO1NhO2xE41ipv1mYeVMA
+            anchor: center-center
   -
     collection: ''
     name: image.style.square_thumbnail
@@ -3673,107 +1507,6 @@ items:
             width: 100
             height: 100
             anchor: center-center
-      _core:
-        default_config_hash: 49qs8-_yJXtaSNo-W2WzjD9qWXxQ05omG4iB8SejKQc
-  -
-    collection: ''
-    name: media.type.audio
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: audio
-      label: Audio
-      description: 'A locally hosted audio file.'
-      source: audio_file
-      queue_thumbnail_downloads: false
-      new_revision: true
-      source_configuration:
-        source_field: field_media_audio_file
-      field_map:
-        name: name
-      _core:
-        default_config_hash: eJw8n6Tk2tO3ZysuEeGR1gZa1yRffaZzR4t0Q7iNurs
-  -
-    collection: ''
-    name: media.type.document
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: document
-      label: Document
-      description: 'An uploaded file or document, such as a PDF.'
-      source: file
-      queue_thumbnail_downloads: false
-      new_revision: true
-      source_configuration:
-        source_field: field_media_document
-      field_map:
-        name: name
-      _core:
-        default_config_hash: _D9q3XSnP6ik9we9UuoTvZsQKPuYNp_G9PfwVtWzgnQ
-  -
-    collection: ''
-    name: media.type.image
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: image
-      label: Image
-      description: 'Use local images for reusable media.'
-      source: image
-      queue_thumbnail_downloads: false
-      new_revision: true
-      source_configuration:
-        source_field: field_media_image
-      field_map:
-        name: name
-      _core:
-        default_config_hash: 6Qope5wG7HUpV0tPOBMtDI_GZkHFcF1Xj4hgD9Cu_hM
-  -
-    collection: ''
-    name: media.type.remote_video
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: remote_video
-      label: 'Remote video'
-      description: 'A remotely hosted video from YouTube or Vimeo.'
-      source: 'oembed:video'
-      queue_thumbnail_downloads: false
-      new_revision: true
-      source_configuration:
-        source_field: field_media_oembed_video
-        thumbnails_directory: 'public://oembed_thumbnails/[date:custom:Y-m]'
-        providers:
-          - YouTube
-          - Vimeo
-      field_map:
-        title: name
-      _core:
-        default_config_hash: hIBTnDGgDKnCiP6HUZm1m7600DHUEpC6FN3LQ4sUgZ4
-  -
-    collection: ''
-    name: media.type.video
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      id: video
-      label: Video
-      description: 'A locally hosted video file.'
-      source: video_file
-      queue_thumbnail_downloads: false
-      new_revision: true
-      source_configuration:
-        source_field: field_media_video_file
-      field_map:
-        name: name
-      _core:
-        default_config_hash: hzgvcRgZHltqWf8hBmttoWh95tCJoPL25lPq9YSIRsY
   -
     collection: ''
     name: paragraphs.paragraphs_type.faq
@@ -3784,11 +1517,8 @@ items:
       id: faq
       label: FAQ
       icon_uuid: null
-      icon_default: null
       description: ''
       behavior_plugins: {  }
-      _core:
-        default_config_hash: K2p0W4MCUvuBElHhE7QN_XCg9YrdswPjuV_ZvlIE_Mo
   -
     collection: ''
     name: paragraphs.paragraphs_type.file
@@ -3799,11 +1529,8 @@ items:
       id: file
       label: File
       icon_uuid: null
-      icon_default: null
       description: null
       behavior_plugins: {  }
-      _core:
-        default_config_hash: Q24y2Xn5CuJ9BqbH3W5K15MKTH1brFSCfCw-CPOyICk
   -
     collection: ''
     name: paragraphs.paragraphs_type.image
@@ -3814,11 +1541,8 @@ items:
       id: image
       label: Image
       icon_uuid: null
-      icon_default: null
       description: null
       behavior_plugins: {  }
-      _core:
-        default_config_hash: io0rtYy4rt2Jmwje9xibomS8ro9j39M2qvbOQorEN7U
   -
     collection: ''
     name: paragraphs.paragraphs_type.slide
@@ -3829,11 +1553,8 @@ items:
       id: slide
       label: Slide
       icon_uuid: null
-      icon_default: null
       description: null
       behavior_plugins: {  }
-      _core:
-        default_config_hash: WE7I6KkN7GEqUYHkwhNLMOMtit1N3A31l_n3_msd-WM
   -
     collection: ''
     name: paragraphs.paragraphs_type.text
@@ -3844,11 +1565,8 @@ items:
       id: text
       label: Text
       icon_uuid: null
-      icon_default: null
       description: null
       behavior_plugins: {  }
-      _core:
-        default_config_hash: DiWAHNz80wuBze_Xi5-N6ldgWFEVtERfuOTyS41yVa0
   -
     collection: ''
     name: paragraphs.paragraphs_type.update
@@ -3859,11 +1577,8 @@ items:
       id: update
       label: Update
       icon_uuid: null
-      icon_default: null
       description: null
       behavior_plugins: {  }
-      _core:
-        default_config_hash: XmA4e9klQYkiFJvobPFvooyxlCliVUxeNFWn5a5fFj8
   -
     collection: ''
     name: paragraphs.paragraphs_type.video
@@ -3874,49 +1589,8 @@ items:
       id: video
       label: Video
       icon_uuid: null
-      icon_default: null
       description: 'For adding an embedded video from YouTube or Vimeo.'
       behavior_plugins: {  }
-      _core:
-        default_config_hash: YvM1yNE63kk13pVhYUIsv6XMWVzOipnNQQARGiYfAmk
-  -
-    collection: ''
-    name: pathauto.pattern.generic_content
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - node
-      id: generic_content
-      label: 'Generic content'
-      type: 'canonical_entities:node'
-      pattern: '[node:content-type]/[node:title]'
-      selection_criteria: {  }
-      selection_logic: and
-      weight: 0
-      relationships: {  }
-      _core:
-        default_config_hash: HXi80aTzhUO2qnTzoUvXR-MbpO673Ud07zTY3c1iEpI
-  -
-    collection: ''
-    name: pathauto.pattern.generic_term
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - taxonomy
-      id: generic_term
-      label: 'Generic term'
-      type: 'canonical_entities:taxonomy_term'
-      pattern: '[term:vocabulary]/[term:name]'
-      selection_criteria: {  }
-      selection_logic: and
-      weight: 0
-      relationships: {  }
-      _core:
-        default_config_hash: yo_6TShaM6J7zPC0iPyzTbGoX55GFyWdn4a9UOH9TJc
   -
     collection: ''
     name: rdf.mapping.taxonomy_term.tags
@@ -3940,8 +1614,6 @@ items:
         description:
           properties:
             - 'schema:description'
-      _core:
-        default_config_hash: o5duwyS1CTHx3tYOZhuu91kspe8VQjQsnwZjAJv9njk
   -
     collection: ''
     name: rdf.mapping.taxonomy_term.topics
@@ -3965,121 +1637,6 @@ items:
         description:
           properties:
             - 'schema:description'
-      _core:
-        default_config_hash: laEV9Mm5bDiVsaTGWDxNoK9cf39u8fgRStlg7b6KFts
-  -
-    collection: ''
-    name: responsive_image.styles.drutopia_card
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - image.style.drutopia_wide_extra_small
-          - image.style.drutopia_wide_medium
-          - image.style.drutopia_wide_small
-        module:
-          - drutopia_core
-      id: drutopia_card
-      label: Card
-      image_style_mappings:
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_wide_small
-          breakpoint_id: drutopia_core.fullhd
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_wide_small
-          breakpoint_id: drutopia_core.widescreen
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_wide_extra_small
-          breakpoint_id: drutopia_core.desktop
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_wide_small
-          breakpoint_id: drutopia_core.tablet
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_wide_medium
-          breakpoint_id: drutopia_core.mobile
-          multiplier: 1x
-      breakpoint_group: drutopia_core
-      fallback_image_style: drutopia_wide_extra_small
-      _core:
-        default_config_hash: DyJYr1VGP_Okl7KSvoJ9hsLs5gakhjh7xx4eMOnBC5I
-  -
-    collection: ''
-    name: responsive_image.styles.drutopia_main
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - image.style.drutopia_extra_wide_extra_large
-          - image.style.drutopia_extra_wide_extra_small
-          - image.style.drutopia_extra_wide_large
-          - image.style.drutopia_extra_wide_medium
-          - image.style.drutopia_extra_wide_small
-        module:
-          - drutopia_core
-      id: drutopia_main
-      label: Main
-      image_style_mappings:
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_extra_wide_extra_large
-          breakpoint_id: drutopia_core.fullhd
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_extra_wide_large
-          breakpoint_id: drutopia_core.widescreen
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_extra_wide_medium
-          breakpoint_id: drutopia_core.desktop
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_extra_wide_small
-          breakpoint_id: drutopia_core.tablet
-          multiplier: 1x
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_extra_wide_extra_small
-          breakpoint_id: drutopia_core.mobile
-          multiplier: 1x
-      breakpoint_group: drutopia_core
-      fallback_image_style: drutopia_extra_wide_extra_small
-      _core:
-        default_config_hash: iH_ZVxuN4bXJ5TwGVmTH-JQQ0NU1DpZKPda9GwMkp3w
-  -
-    collection: ''
-    name: responsive_image.styles.drutopia_wide
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - image.style.drutopia_wide
-      id: drutopia_wide
-      label: Wide
-      image_style_mappings:
-        -
-          image_mapping_type: image_style
-          image_mapping: drutopia_wide
-          breakpoint_id: responsive_image.viewport_sizing
-          multiplier: 1x
-      breakpoint_group: responsive_image
-      fallback_image_style: drutopia_wide
-      _core:
-        default_config_hash: 6gGx8qIdqXjaHZtprlhfS-cZSjh7CX_tNCVfuokwYys
   -
     collection: ''
     name: responsive_image.styles.narrow
@@ -4106,8 +1663,6 @@ items:
               - focal_point_650x390
       breakpoint_group: responsive_image
       fallback_image_style: focal_point_325x195
-      _core:
-        default_config_hash: o1xlBzV3-T8wXZvIqrg_N8yXmAzCqFb6fs9bpfroyaA
   -
     collection: ''
     name: responsive_image.styles.short
@@ -4134,41 +1689,6 @@ items:
               - focal_point_780x1040
       breakpoint_group: responsive_image
       fallback_image_style: focal_point_195x260
-      _core:
-        default_config_hash: 0izBPJXHhozLxU5koRWYJCjEqRn5fwtfgRfLmDFhhso
-  -
-    collection: ''
-    name: responsive_image.styles.square
-    data:
-      uuid: 9e0dd61f-2bde-4d7a-a7a1-fd0453d9ff2b
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - image.style.drutopia_square_extra_large
-          - image.style.drutopia_square_extra_small
-          - image.style.drutopia_square_large
-          - image.style.drutopia_square_medium
-          - image.style.drutopia_square_small
-      _core:
-        default_config_hash: JMf-xC8fggihQjiOPJXjO4aHdh7JTRktK2GO7J9X0nQ
-      id: square
-      label: Square
-      image_style_mappings:
-        -
-          image_mapping_type: sizes
-          image_mapping:
-            sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw'
-            sizes_image_styles:
-              - drutopia_square_extra_large
-              - drutopia_square_extra_small
-              - drutopia_square_large
-              - drutopia_square_medium
-              - drutopia_square_small
-          breakpoint_id: responsive_image.viewport_sizing
-          multiplier: 1x
-      breakpoint_group: responsive_image
-      fallback_image_style: drutopia_square_extra_small
   -
     collection: ''
     name: responsive_image.styles.tall
@@ -4195,8 +1715,34 @@ items:
               - focal_point_780x1040
       breakpoint_group: responsive_image
       fallback_image_style: focal_point_195x260
-      _core:
-        default_config_hash: IjrIkEw9KTR6GXbfSGdFw4BbQSQWMfN1fbgsiobcUBI
+  -
+    collection: ''
+    name: responsive_image.styles.wide
+    data:
+      langcode: en
+      status: true
+      dependencies:
+        config:
+          - image.style.focal_point_1300x650
+          - image.style.focal_point_2600x1300
+          - image.style.focal_point_325x195
+          - image.style.focal_point_650x390
+      id: wide
+      label: Wide
+      image_style_mappings:
+        -
+          breakpoint_id: responsive_image.viewport_sizing
+          multiplier: 1x
+          image_mapping_type: sizes
+          image_mapping:
+            sizes: '(min-width: 1290px) 1290px, 100vw'
+            sizes_image_styles:
+              - focal_point_1300x650
+              - focal_point_2600x1300
+              - focal_point_325x195
+              - focal_point_650x390
+      breakpoint_group: responsive_image
+      fallback_image_style: focal_point_325x195
   -
     collection: ''
     name: search_api.server.database
@@ -4219,8 +1765,6 @@ items:
           suggest_suffix: true
           suggest_words: true
         matching: words
-      _core:
-        default_config_hash: Mpbiccb26BfqxqdE7n8wu_l8L__Hj_Q5vp4corfOhrI
   -
     collection: ''
     name: taxonomy.vocabulary.tags
@@ -4231,9 +1775,8 @@ items:
       name: Tags
       vid: tags
       description: 'Use tags to group content if you need categories beyond the given topics.'
+      hierarchy: 0
       weight: 0
-      _core:
-        default_config_hash: LGDZxL814z0e8kyjxRu-2kU4eDZ9n94wzbcB3WNGpQ0
   -
     collection: ''
     name: taxonomy.vocabulary.topics
@@ -4244,9 +1787,8 @@ items:
       name: Topics
       vid: topics
       description: 'Use topics to group content into categories.'
+      hierarchy: 0
       weight: 0
-      _core:
-        default_config_hash: BaPpT1TGJvkIY5lSC9Nb3-2lBeAUKChQM0yRyTAVurk
   -
     collection: ''
     name: user.role.administrator
@@ -4258,56 +1800,24 @@ items:
       label: Administrator
       weight: 5
       is_admin: true
-      _core:
-        default_config_hash: deBO6rveioT0_Xi1uj--U3HrKSa0JjKdvdHRKy0rXNo
   -
     collection: ''
     name: user.role.contributor
     data:
       langcode: en
       status: true
-      dependencies:
-        module:
-          - contextual
-          - exclude_node_title
-          - file
-          - node
-          - system
-          - taxonomy
-          - content_moderation
-        config:
-          - taxonomy.vocabulary.tags
-          - workflows.workflow.workflow_buttons_trash_publishing
-          - node.type.people
-          - node.type.article
-          - node.type.blog
-          - node.type.page
+      dependencies: {  }
       id: contributor
       label: Contributor
       weight: 2
       is_admin: null
-      _core:
-        default_config_hash: wx_SmNDtHorXJ90rDiwqo6EvHgyvz6_SZFsFO77cdvY
       permissions:
-        - 'access content overview'
         - 'access contextual links'
-        - 'access media overview'
-        - 'create media'
-        - 'create terms in tags'
-        - 'delete own files'
-        - 'edit terms in tags'
-        - 'update media'
-        - 'use exclude node title'
-        - 'view all revisions'
-        - 'view all media revisions'
-        - 'view own unpublished content'
-        - 'view the administration theme'
-        - 'use workflow_buttons_trash_publishing transition create_new_draft'
-        - 'use workflow_buttons_trash_publishing transition save_draft_leave_current_published'
-        - 'use workflow_buttons_trash_publishing transition save_unpublished'
+        - 'access in-place editing'
         - 'edit own comments'
         - 'skip comment approval'
         - 'create people content'
+        - 'delete own people content'
         - 'edit own people content'
         - 'create article content'
         - 'delete own article content'
@@ -4316,6 +1826,7 @@ items:
         - 'delete own blog content'
         - 'edit own blog content'
         - 'create page content'
+        - 'delete own page content'
         - 'edit own page content'
   -
     collection: ''
@@ -4323,174 +1834,43 @@ items:
     data:
       langcode: en
       status: true
-      dependencies:
-        module:
-          - contextual
-          - exclude_node_title
-          - file
-          - media
-          - node
-          - path
-          - system
-          - taxonomy
-          - toolbar
-          - tour
-          - redirect
-          - filter
-          - content_moderation
-        config:
-          - filter.format.restricted_html
-          - workflows.workflow.workflow_buttons_trash_publishing
-          - node.type.people
-          - node.type.landing_page
-          - node.type.page
+      dependencies: {  }
       id: editor
       label: Editor
       weight: 3
       is_admin: null
-      _core:
-        default_config_hash: rlOWgxSj7Nc4dVgLS2xaxjHVZNv9u9Csoy8JavNvygc
       permissions:
-        - 'access administration pages'
-        - 'access content overview'
+        - 'use text format restricted_html'
         - 'access contextual links'
-        - 'access files overview'
-        - 'access media overview'
-        - 'access site in maintenance mode'
+        - 'access in-place editing'
         - 'access toolbar'
         - 'access tour'
-        - 'access user profiles'
-        - 'administer nodes'
-        - 'administer taxonomy'
-        - 'administer users'
-        - 'create media'
+        - 'bypass node access'
         - 'create url aliases'
-        - 'delete all revisions'
-        - 'delete own files'
-        - 'revert all revisions'
-        - 'update any media'
-        - 'use exclude node title'
-        - 'view all media revisions'
-        - 'view all revisions'
-        - 'view own unpublished content'
-        - 'view own unpublished media'
-        - 'view the administration theme'
-        - 'administer redirects'
-        - 'use text format restricted_html'
-        - 'use workflow_buttons_trash_publishing transition delete'
-        - 'use workflow_buttons_trash_publishing transition publish'
-        - 'use workflow_buttons_trash_publishing transition restore_draft'
-        - 'use workflow_buttons_trash_publishing transition restore_publish'
-        - 'use workflow_buttons_trash_publishing transition unpublish'
-        - 'use workflow_buttons_trash_publishing transition update'
         - 'administer comments'
         - 'skip comment approval'
-        - 'create people content'
-        - 'edit any people content'
-        - 'create landing_page content'
-        - 'edit any landing_page content'
-        - 'create page content'
-        - 'edit any page content'
   -
     collection: ''
     name: user.role.manager
     data:
       langcode: en
       status: true
-      dependencies:
-        module:
-          - config_perms
-          - contextual
-          - exclude_node_title
-          - file
-          - media
-          - node
-          - path
-          - system
-          - taxonomy
-          - toolbar
-          - tour
-          - metatag
-          - redirect
-          - filter
-          - role_delegation
-          - block
-          - block_content
-          - content_moderation
-          - menu_admin_per_menu
-        config:
-          - filter.format.restricted_html
-          - workflows.workflow.workflow_buttons_trash_publishing
-          - node.type.people
-          - node.type.landing_page
-          - node.type.page
+      dependencies: {  }
       id: manager
       label: Manager
       weight: 4
       is_admin: null
-      _core:
-        default_config_hash: p1SmYFXVP1KLKKQI-wkTYJ2dVCvR7HgO7SL3BAKTyTE
       permissions:
-        - 'access administration pages'
-        - 'access content overview'
+        - 'use text format restricted_html'
         - 'access contextual links'
-        - 'access files overview'
-        - 'access media overview'
-        - 'access site in maintenance mode'
+        - 'access in-place editing'
         - 'access toolbar'
         - 'access tour'
         - 'access user contact forms'
-        - 'access user profiles'
-        - 'Administer account settings'
-        - 'Administer date-time'
-        - 'administer nodes'
-        - 'Administer site information'
-        - 'administer taxonomy'
         - 'administer url aliases'
-        - 'administer users'
-        - 'create media'
+        - 'administer eu cookie compliance popup'
+        - 'bypass node access'
         - 'create url aliases'
-        - 'delete all revisions'
-        - 'delete own files'
-        - 'revert all revisions'
-        - 'update any media'
-        - 'use exclude node title'
-        - 'view all media revisions'
-        - 'view all revisions'
-        - 'view own unpublished content'
-        - 'view own unpublished media'
-        - 'view the administration theme'
-        - 'administer meta tags'
-        - 'administer redirect settings'
-        - 'administer redirects'
-        - 'administer block content'
-        - 'administer block types'
-        - 'administer blocks'
-        - 'administer main menu items'
-        - 'use text format restricted_html'
-        - 'assign manager role'
-        - 'assign editor role'
-        - 'assign contributor role'
-        - 'access block library'
-        - 'create basic block content'
-        - 'create slide block content'
-        - 'edit any basic block content'
-        - 'edit any slide block content'
-        - 'revert any basic block content revisions'
-        - 'revert any slide block content revisions'
-        - 'use workflow_buttons_trash_publishing transition delete'
-        - 'use workflow_buttons_trash_publishing transition publish'
-        - 'use workflow_buttons_trash_publishing transition restore_draft'
-        - 'use workflow_buttons_trash_publishing transition restore_publish'
-        - 'use workflow_buttons_trash_publishing transition unpublish'
-        - 'use workflow_buttons_trash_publishing transition update'
-        - 'view any basic block content history'
-        - 'view any slide block content history'
+        - 'edit gdpr_checklist checklistapi checklist'
         - 'administer comments'
         - 'skip comment approval'
-        - 'create people content'
-        - 'edit any people content'
-        - 'create landing_page content'
-        - 'edit any landing_page content'
-        - 'create page content'
-        - 'edit any page content'
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
index 9feccff..42fdd32 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
@@ -34,8 +34,6 @@ items:
         on_label: 'On'
         off_label: 'Off'
       field_type: boolean
-      _core:
-        default_config_hash: KZ4pDrGhkRiIo7Ee-E4HGZp7YPXKS_FLR0nLeUQ3P2U
   -
     collection: ''
     name: core.entity_form_display.node.landing_page.default
@@ -108,19 +106,11 @@ items:
             match_operator: CONTAINS
             size: 60
             placeholder: ''
-            match_limit: 10
           region: content
           third_party_settings: {  }
-        url_redirects:
-          weight: 50
-          settings: {  }
-          third_party_settings: {  }
-          region: content
       hidden:
         promote: true
         sticky: true
-      _core:
-        default_config_hash: CVRMZfgFZQ-7Fglznug8VWRO5ACmCl4KpQqjG2GNk0o
   -
     collection: ''
     name: core.entity_view_display.node.landing_page.default
@@ -143,9 +133,6 @@ items:
         field_body_paragraph: true
         field_meta_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: vMs2OGAJMnWt1vLVre5A7Ch4SlU4gL-OTPzWjBXCAZ8
   -
     collection: ''
     name: core.entity_view_display.node.landing_page.full
@@ -188,7 +175,7 @@ items:
       content:
         field_body_paragraph:
           weight: 0
-          label: hidden
+          label: visually_hidden
           settings:
             view_mode: default
             link: ''
@@ -198,9 +185,6 @@ items:
       hidden:
         field_meta_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 496HTAIE5jzDV02vjWsHBSVRzHTzT6RuZ0ZxpFD8QOY
   -
     collection: ''
     name: core.entity_view_display.node.landing_page.teaser
@@ -224,9 +208,6 @@ items:
         field_body_paragraph: true
         field_meta_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: jCHE-D3rybQAAcV2w67fm98NDaZvTk1BBTGWRQvt__I
   -
     collection: ''
     name: field.field.node.landing_page.field_body_paragraph
@@ -278,8 +259,6 @@ items:
               enabled: true
               weight: 8
       field_type: entity_reference_revisions
-      _core:
-        default_config_hash: SY6szifQZxW4ucxM-P_RlOcopaMTOymNXiEZPLSvDec
   -
     collection: ''
     name: field.field.node.landing_page.field_meta_tags
@@ -306,8 +285,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: metatag
-      _core:
-        default_config_hash: 0TxksFlbv1taSWO5o9DKYQD7j4RPtqVhI7iV_bEGjTQ
   -
     collection: ''
     name: node.type.landing_page
@@ -322,15 +299,13 @@ items:
           available_menus:
             - main
           parent: 'main:'
-      name: 'Landing page (DEPRECATED)'
+      name: 'Landing page'
       type: landing_page
-      description: 'Use Page instead.  (Landing pages can be used for custom pages such as the home page.)'
+      description: 'Landing pages can be used for custom pages such as the home page.'
       help: ''
       new_revision: true
       preview_mode: 1
       display_submitted: false
-      _core:
-        default_config_hash: Ghp4m6xuyfm3HxwelseF-cvCwlzIk6DMQLQqkDy_Jsk
   -
     collection: ''
     name: pathauto.pattern.node_landing_page
@@ -346,7 +321,7 @@ items:
       pattern: '[node:title]'
       selection_criteria:
         e3e7a232-e1e0-455e-8b69-c99b582dc4f0:
-          id: 'entity_bundle:node'
+          id: node_type
           bundles:
             landing_page: landing_page
           negate: false
@@ -356,5 +331,3 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: vBkdZgjK3wVtoRA2ztmoGyr7IyCGmjkC1xiODFYqp_A
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
index 0f085b8..ec5d9fa 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
@@ -34,8 +34,6 @@ items:
         on_label: 'On'
         off_label: 'Off'
       field_type: boolean
-      _core:
-        default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
   -
     collection: ''
     name: core.entity_form_display.node.page.default
@@ -119,20 +117,12 @@ items:
             match_operator: CONTAINS
             size: 60
             placeholder: ''
-            match_limit: 10
-          third_party_settings: {  }
-          region: content
-        url_redirects:
-          weight: 50
-          settings: {  }
           third_party_settings: {  }
           region: content
       hidden:
         body: true
         promote: true
         sticky: true
-      _core:
-        default_config_hash: wAhpJRljOWQclUjA76cSgdVfWaKkYjrwCnvblTo9dJU
   -
     collection: ''
     name: core.entity_view_display.node.page.default
@@ -177,9 +167,6 @@ items:
         field_meta_tags: true
         field_summary: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: IJqwajtBIucTAaMgGd7kE-hw_HVZOxJuku1ohZjxVUU
   -
     collection: ''
     name: core.entity_view_display.node.page.full
@@ -242,9 +229,6 @@ items:
         body: true
         field_meta_tags: true
         field_summary: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: GWD2zN3yeaHHDWEwl0eHfRw1NBwOIZZBWlgaPWHfDk8
   -
     collection: ''
     name: core.entity_view_display.node.page.teaser
@@ -310,9 +294,6 @@ items:
         field_body_paragraph: true
         field_meta_tags: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 0t_mvsiSfXpVDeIsN_YEaJrW-nvZpZgnWZZXQ3HCttI
   -
     collection: ''
     name: field.field.node.page.body
@@ -337,10 +318,7 @@ items:
       default_value_callback: ''
       settings:
         display_summary: true
-        required_summary: false
       field_type: text_with_summary
-      _core:
-        default_config_hash: KgVkxLl_K3E3lvN6CEoWQIDT0V8J4Mv-fVYrAIc7-FE
   -
     collection: ''
     name: field.field.node.page.field_body_paragraph
@@ -364,7 +342,7 @@ items:
       field_name: field_body_paragraph
       entity_type: node
       bundle: page
-      label: Description
+      label: 'Body paragraph'
       description: ''
       required: false
       translatable: true
@@ -405,8 +383,6 @@ items:
               enabled: true
               weight: -9
       field_type: entity_reference_revisions
-      _core:
-        default_config_hash: IZb3avpMcvY5tiws_RxDuZ-maGL9HNzmMeeCsP6u74k
   -
     collection: ''
     name: field.field.node.page.field_meta_tags
@@ -433,8 +409,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: metatag
-      _core:
-        default_config_hash: n2TFzOb_KtFLLjQrHXe-YhLMnwPwXTqsBVkr0aTK_EA
   -
     collection: ''
     name: field.field.node.page.field_summary
@@ -452,15 +426,13 @@ items:
       entity_type: node
       bundle: page
       label: Summary
-      description: 'Enter a short description of what this page is about. The summary is visible in search results.'
+      description: 'Enter a short description of what this page is about. The summary is visible in certain displays.'
       required: true
       translatable: true
       default_value: {  }
       default_value_callback: ''
       settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: 3fRsavd-D5Yd1aEOmpsLBDtqsve6MU4iQ71v5i26aPk
   -
     collection: ''
     name: node.type.page
@@ -476,15 +448,13 @@ items:
             - footer
             - main
           parent: 'main:'
-      name: Page
+      name: 'Basic page'
       type: page
-      description: "Use <em>pages</em> for your static content, such as an 'About us' page."
+      description: 'Use <em>basic pages</em> for your static content, such as an ''About us'' page.'
       help: ''
       new_revision: true
       preview_mode: 1
       display_submitted: false
-      _core:
-        default_config_hash: W-6WEzqubJ1pK5rQ6ffOA2sSmmaICuTkPHn4sMyTYdY
   -
     collection: ''
     name: pathauto.pattern.node_page
@@ -500,7 +470,7 @@ items:
       pattern: '[node:title]'
       selection_criteria:
         2e17ea21-8c33-444d-981e-2a2df6651647:
-          id: 'entity_bundle:node'
+          id: node_type
           bundles:
             page: page
           negate: false
@@ -510,8 +480,6 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: Yj5YMfGaGLJFZKIyrOXa62nFXYbfI_5MplyMv78eh38
   -
     collection: ''
     name: rdf.mapping.node.page
@@ -556,5 +524,3 @@ items:
             callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount'
             arguments:
               interaction_type: UserComments
-      _core:
-        default_config_hash: 32LxRnl4Wesvzqyfp7HnD0-U9-wxrLBn76pqY5XGNAE
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
index 899906c..0679c4c 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
@@ -34,8 +34,6 @@ items:
         on_label: 'On'
         off_label: 'Off'
       field_type: boolean
-      _core:
-        default_config_hash: vjAdEwFkNHAmhmslEPv5BP-dYKY6Wi_YlmsU55nVVbk
   -
     collection: ''
     name: core.base_field_override.node.people.title
@@ -57,8 +55,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: string
-      _core:
-        default_config_hash: MqZid1EqJeqdHcR7HbHVZKvtTA8LBlBAm5LVV10RuJo
   -
     collection: ''
     name: core.entity_form_display.node.people.default
@@ -69,15 +65,15 @@ items:
         config:
           - field.field.node.people.body
           - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
+          - field.field.node.people.field_image
           - field.field.node.people.field_meta_tags
           - field.field.node.people.field_people_position
           - field.field.node.people.field_people_type
           - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
+          - image.style.thumbnail
           - node.type.people
         module:
-          - media_library_media_modify
+          - focal_point
           - metatag
           - paragraphs
           - path
@@ -90,13 +86,11 @@ items:
         created:
           type: datetime_timestamp
           weight: 7
-          region: content
           settings: {  }
           third_party_settings: {  }
-        field_body_paragraph:
-          type: entity_reference_paragraphs
-          weight: 5
           region: content
+        field_body_paragraph:
+          weight: 5
           settings:
             title: Paragraph
             title_plural: Paragraphs
@@ -105,162 +99,92 @@ items:
             form_display_mode: default
             default_paragraph_type: text
           third_party_settings: {  }
-        field_media_image:
-          type: media_library_media_modify_widget
-          weight: 4
+          type: entity_reference_paragraphs
           region: content
+        field_image:
+          weight: 3
           settings:
-            media_types: {  }
-            form_mode: main
-            check_selected: false
-            replace_checkbox_by_order_indicator: false
-            multi_edit_on_create: false
-            no_edit_on_create: false
+            progress_indicator: throbber
+            preview_image_style: thumbnail
+            preview_link: true
+            offsets: '50,50'
           third_party_settings: {  }
+          type: image_focal_point
+          region: content
         field_meta_tags:
-          type: metatag_firehose
           weight: 26
-          region: content
-          settings:
-            sidebar: true
-            use_details: true
+          settings: {  }
           third_party_settings: {  }
-        field_people_position:
-          type: string_textfield
-          weight: 1
+          type: metatag_firehose
           region: content
+        field_people_position:
+          weight: 1
           settings:
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        field_people_type:
-          type: options_select
-          weight: 2
+          type: string_textfield
           region: content
+        field_people_type:
+          weight: 2
           settings: {  }
           third_party_settings: {  }
-        field_summary:
-          type: text_textarea
-          weight: 4
+          type: options_select
           region: content
+        field_summary:
+          weight: 4
           settings:
             rows: 5
             placeholder: ''
           third_party_settings: {  }
-        field_topics:
-          type: options_select
-          weight: 2
+          type: text_textarea
           region: content
-          settings: {  }
-          third_party_settings: {  }
         path:
           type: path
           weight: 10
-          region: content
           settings: {  }
           third_party_settings: {  }
+          region: content
         promote:
           type: boolean_checkbox
-          weight: 8
-          region: content
           settings:
             display_label: true
+          weight: 8
           third_party_settings: {  }
+          region: content
         status:
           type: boolean_checkbox
-          weight: 120
-          region: content
           settings:
             display_label: true
+          weight: 120
+          region: content
           third_party_settings: {  }
         sticky:
           type: boolean_checkbox
-          weight: 9
-          region: content
           settings:
             display_label: true
+          weight: 9
           third_party_settings: {  }
+          region: content
         title:
           type: string_textfield
           weight: 0
-          region: content
           settings:
             size: 60
             placeholder: ''
           third_party_settings: {  }
+          region: content
         uid:
           type: entity_reference_autocomplete
           weight: 6
-          region: content
           settings:
             match_operator: CONTAINS
-            match_limit: 10
             size: 60
             placeholder: ''
           third_party_settings: {  }
-        url_redirects:
-          weight: 50
-          region: content
-          settings: {  }
-          third_party_settings: {  }
-      hidden:
-        body: true
-      _core:
-        default_config_hash: NPwjaMcfu2o4PR0qQ9uMcYhS3-ei2beZP_1f1VSIQZo
-  -
-    collection: ''
-    name: core.entity_view_display.node.people.card
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.node.card
-          - field.field.node.people.body
-          - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
-          - field.field.node.people.field_meta_tags
-          - field.field.node.people.field_people_position
-          - field.field.node.people.field_people_type
-          - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
-          - node.type.people
-          - responsive_image.styles.drutopia_card
-        module:
-          - media_responsive_thumbnail
-          - user
-      id: node.people.card
-      targetEntityType: node
-      bundle: people
-      mode: card
-      content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: content
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: ds_content
-        links:
-          settings: {  }
-          third_party_settings: {  }
-          weight: 100
           region: content
       hidden:
         body: true
-        field_body_paragraph: true
-        field_meta_tags: true
-        field_people_position: true
-        field_people_type: true
-        field_summary: true
-        field_topics: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 5aDOMfLAFwDCqdovft_rABpy4XtO8GoXknScnpzs-rc
   -
     collection: ''
     name: core.entity_view_display.node.people.default
@@ -271,15 +195,32 @@ items:
         config:
           - field.field.node.people.body
           - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
+          - field.field.node.people.field_image
           - field.field.node.people.field_meta_tags
           - field.field.node.people.field_people_position
           - field.field.node.people.field_people_type
           - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
           - node.type.people
         module:
+          - ds
           - user
+      third_party_settings:
+        ds:
+          layout:
+            id: ds_1col
+            library: null
+            disable_css: false
+            entity_classes: all_classes
+            settings:
+              wrappers:
+                ds_content: div
+              outer_wrapper: div
+              attributes: ''
+              link_attribute: ''
+              link_custom: ''
+              classes:
+                layout_class: {  }
+          regions: {  }
       id: node.people.default
       targetEntityType: node
       bundle: people
@@ -288,16 +229,12 @@ items:
       hidden:
         body: true
         field_body_paragraph: true
-        field_media_image: true
+        field_image: true
         field_meta_tags: true
         field_people_position: true
         field_people_type: true
         field_summary: true
-        field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: tCFeKhOJxXt3B-PQDaxWeXZ1xA6aorgYutmLgU9MBMs
   -
     collection: ''
     name: core.entity_view_display.node.people.full
@@ -309,18 +246,17 @@ items:
           - core.entity_view_mode.node.full
           - field.field.node.people.body
           - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
+          - field.field.node.people.field_image
           - field.field.node.people.field_meta_tags
           - field.field.node.people.field_people_position
           - field.field.node.people.field_people_type
           - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
-          - image.style.focal_point_480_square
           - node.type.people
+          - responsive_image.styles.tall
         module:
           - ds
           - entity_reference_revisions
-          - media
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -330,8 +266,6 @@ items:
             disable_css: true
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 left: div
                 right: div
@@ -339,10 +273,11 @@ items:
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             left:
-              - field_media_image
+              - field_image
             right:
               - field_people_position
               - field_body_paragraph
@@ -354,61 +289,48 @@ items:
       mode: full
       content:
         field_body_paragraph:
-          type: entity_reference_revisions_entity_view
+          weight: 2
           label: hidden
           settings:
             view_mode: default
             link: ''
           third_party_settings: {  }
-          weight: 2
+          type: entity_reference_revisions_entity_view
           region: right
-        field_media_image:
-          type: media_thumbnail
+        field_image:
+          weight: 0
           label: hidden
           settings:
+            responsive_image_style: tall
             image_link: ''
-            image_style: focal_point_480_square
-            image_loading:
-              attribute: eager
           third_party_settings: {  }
-          weight: 0
+          type: responsive_image
           region: left
         field_people_position:
           type: string
+          weight: 1
           label: hidden
           settings:
             link_to_entity: false
           third_party_settings: {  }
-          weight: 1
           region: right
         field_people_type:
-          type: entity_reference_label
+          weight: 3
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 3
-          region: right
-        field_topics:
           type: entity_reference_label
-          label: visually_hidden
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 3
           region: right
         links:
-          settings: {  }
-          third_party_settings: {  }
           weight: 4
           region: right
+          settings: {  }
+          third_party_settings: {  }
       hidden:
         body: true
         field_meta_tags: true
         field_summary: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: Mt7FyLGRorTo8uJXIEmizBwrHvXuLGzgzOGyDgTBClo
   -
     collection: ''
     name: core.entity_view_display.node.people.search_index
@@ -420,16 +342,16 @@ items:
           - core.entity_view_mode.node.search_index
           - field.field.node.people.body
           - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
+          - field.field.node.people.field_image
           - field.field.node.people.field_meta_tags
           - field.field.node.people.field_people_position
           - field.field.node.people.field_people_type
           - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
           - node.type.people
         module:
           - ds
           - entity_reference_revisions
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -449,7 +371,7 @@ items:
                 layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - field_people_position
               - field_body_paragraph
               - field_people_type
@@ -467,15 +389,15 @@ items:
             view_mode: default
             link: ''
           third_party_settings: {  }
-        field_media_image:
-          type: entity_reference_entity_view
-          label: hidden
-          settings:
-            view_mode: media_library
-            link: false
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
           region: ds_content
+          label: hidden
+          settings:
+            responsive_image_style: ''
+            image_link: ''
+          third_party_settings: {  }
         field_people_position:
           type: string
           weight: 1
@@ -486,82 +408,17 @@ items:
           third_party_settings: {  }
         field_people_type:
           type: entity_reference_label
-          label: hidden
-          settings:
-            link: true
-          third_party_settings: {  }
           weight: 3
           region: ds_content
-        field_topics:
-          type: entity_reference_label
           label: hidden
           settings:
             link: true
           third_party_settings: {  }
-          weight: 5
-          region: content
       hidden:
         body: true
         field_meta_tags: true
         field_summary: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: DoARGnH5OJ9fs67pcBro3YUedclcPt7AhXHzfwtENV0
-  -
-    collection: ''
-    name: core.entity_view_display.node.people.simple_card
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.node.simple_card
-          - field.field.node.people.body
-          - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
-          - field.field.node.people.field_meta_tags
-          - field.field.node.people.field_people_position
-          - field.field.node.people.field_people_type
-          - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
-          - node.type.people
-          - responsive_image.styles.drutopia_card
-        module:
-          - media_responsive_thumbnail
-          - user
-      id: node.people.simple_card
-      targetEntityType: node
-      bundle: people
-      mode: simple_card
-      content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: drutopia_card
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
-          weight: 0
-          region: ds_content
-        links:
-          settings: {  }
-          third_party_settings: {  }
-          weight: 100
-          region: content
-      hidden:
-        body: true
-        field_body_paragraph: true
-        field_meta_tags: true
-        field_people_position: true
-        field_people_type: true
-        field_summary: true
-        field_topics: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: rIiXKZ3XTcCVwxhadn5a_e9GMBwCMjPgDyeUozFDTGA
   -
     collection: ''
     name: core.entity_view_display.node.people.small_card
@@ -573,18 +430,17 @@ items:
           - core.entity_view_mode.node.small_card
           - field.field.node.people.body
           - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
+          - field.field.node.people.field_image
           - field.field.node.people.field_meta_tags
           - field.field.node.people.field_people_position
           - field.field.node.people.field_people_type
           - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
           - node.type.people
-          - responsive_image.styles.tall
+          - responsive_image.styles.short
         module:
           - ds
           - field_group
-          - media_responsive_thumbnail
+          - responsive_image
           - user
       third_party_settings:
         ds:
@@ -594,18 +450,17 @@ items:
             disable_css: false
             entity_classes: all_classes
             settings:
-              classes:
-                layout_class: {  }
               wrappers:
                 ds_content: div
               outer_wrapper: div
               attributes: ''
               link_attribute: ''
               link_custom: ''
-              label: ''
+              classes:
+                layout_class: {  }
           regions:
             ds_content:
-              - field_media_image
+              - field_image
               - group_card_content
               - node_title
               - field_people_position
@@ -624,55 +479,49 @@ items:
             children:
               - node_title
               - field_people_position
-            label: 'Card content'
             parent_name: ''
-            region: ds_content
             weight: 1
             format_type: html_element
             format_settings:
-              classes: ''
               id: ''
+              classes: ''
               element: div
               show_label: false
               label_element: h3
               attributes: ''
               effect: none
               speed: fast
+            label: 'Card content'
+            region: hidden
       id: node.people.small_card
       targetEntityType: node
       bundle: people
       mode: small_card
       content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
-          settings:
-            responsive_image_style: tall
-            image_link: ''
-            image_loading:
-              attribute: lazy
-          third_party_settings: {  }
+        field_image:
+          type: responsive_image
           weight: 0
           region: ds_content
+          label: visually_hidden
+          settings:
+            responsive_image_style: short
+            image_link: content
+          third_party_settings: {  }
         field_people_position:
           type: string
-          label: hidden
+          weight: 2
+          region: ds_content
+          label: visually_hidden
           settings:
             link_to_entity: false
           third_party_settings: {  }
-          weight: 2
-          region: ds_content
       hidden:
         body: true
         field_body_paragraph: true
         field_meta_tags: true
         field_people_type: true
         field_summary: true
-        field_topics: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: KUWAn610cSZRNTW1F_99tuhyvrPNw5dFrRI1QcFLNHw
   -
     collection: ''
     name: core.entity_view_display.node.people.teaser
@@ -684,56 +533,80 @@ items:
           - core.entity_view_mode.node.teaser
           - field.field.node.people.body
           - field.field.node.people.field_body_paragraph
-          - field.field.node.people.field_media_image
+          - field.field.node.people.field_image
           - field.field.node.people.field_meta_tags
           - field.field.node.people.field_people_position
           - field.field.node.people.field_people_type
           - field.field.node.people.field_summary
-          - field.field.node.people.field_topics
           - node.type.people
-          - responsive_image.styles.square
+          - responsive_image.styles.narrow
         module:
-          - media_responsive_thumbnail
+          - ds
+          - responsive_image
           - text
           - user
+      third_party_settings:
+        ds:
+          layout:
+            id: ds_2col
+            library: ds/ds_2col
+            disable_css: true
+            entity_classes: all_classes
+            settings:
+              wrappers:
+                left: div
+                right: div
+              outer_wrapper: div
+              attributes: ''
+              link_attribute: ''
+              link_custom: ''
+              classes:
+                layout_class: {  }
+          regions:
+            left:
+              - field_image
+            right:
+              - node_title
+              - field_people_position
+              - field_summary
+          fields:
+            node_title:
+              plugin_id: node_title
+              weight: 1
+              label: hidden
+              formatter: default
+              settings:
+                link: true
+                wrapper: h2
+                class: ''
       id: node.people.teaser
       targetEntityType: node
       bundle: people
       mode: teaser
       content:
-        field_media_image:
-          type: media_responsive_thumbnail
-          label: hidden
+        field_image:
+          type: responsive_image
+          weight: 0
+          label: visually_hidden
           settings:
-            responsive_image_style: square
+            responsive_image_style: narrow
             image_link: content
-            image_loading:
-              attribute: lazy
           third_party_settings: {  }
-          weight: 1
-          region: content
+          region: left
         field_people_position:
           type: string
+          weight: 2
           label: hidden
           settings:
             link_to_entity: false
           third_party_settings: {  }
-          weight: 0
-          region: content
+          region: right
         field_summary:
           type: text_default
+          weight: 3
           label: hidden
           settings: {  }
           third_party_settings: {  }
-          weight: 2
-          region: content
-        field_topics:
-          type: entity_reference_label
-          label: visually_hidden
-          settings:
-            link: true
-          third_party_settings: {  }
-          weight: 3
           region: right
       hidden:
         body: true
@@ -741,9 +614,6 @@ items:
         field_meta_tags: true
         field_people_type: true
         links: true
-        search_api_excerpt: true
-      _core:
-        default_config_hash: 6UsXg98S3yB0706GQUMSob_d-01TNRgJH6oX1yByj3M
   -
     collection: ''
     name: field.field.node.people.body
@@ -768,10 +638,7 @@ items:
       default_value_callback: ''
       settings:
         display_summary: true
-        required_summary: false
       field_type: text_with_summary
-      _core:
-        default_config_hash: xdjrhlTT57lrbvjwGE7YenUm47NjrulXSWoDLcds_BE
   -
     collection: ''
     name: field.field.node.people.field_body_paragraph
@@ -822,44 +689,47 @@ items:
               weight: 10
               enabled: false
       field_type: entity_reference_revisions
-      _core:
-        default_config_hash: 0bKKOd0u6BWVA8_qN4zyQ9RnJerQ1i_ojb8vX7xsS-c
   -
     collection: ''
-    name: field.field.node.people.field_media_image
+    name: field.field.node.people.field_image
     data:
       langcode: en
       status: true
       dependencies:
         config:
-          - field.storage.node.field_media_image
-          - media.type.image
+          - field.storage.node.field_image
           - node.type.people
         module:
-          - media_library_media_modify
-      id: node.people.field_media_image
-      field_name: field_media_image
+          - image
+      id: node.people.field_image
+      field_name: field_image
       entity_type: node
       bundle: people
-      label: 'Media image'
+      label: Image
       description: ''
       required: false
-      translatable: false
+      translatable: true
       default_value: {  }
       default_value_callback: ''
       settings:
-        handler: 'default:media'
-        handler_settings:
-          target_bundles:
-            image: image
-          sort:
-            field: changed
-            direction: DESC
-          auto_create: false
-          auto_create_bundle: ''
-      field_type: entity_reference_entity_modify
-      _core:
-        default_config_hash: DC1ZnohEB2ZR4ChhatkaoGcq6IbFJH5CmRa-6xWV-Y0
+        file_directory: '[date:custom:Y]-[date:custom:m]'
+        file_extensions: 'png gif jpg jpeg'
+        max_filesize: ''
+        max_resolution: ''
+        min_resolution: ''
+        alt_field: true
+        alt_field_required: true
+        title_field: false
+        title_field_required: false
+        default_image:
+          uuid: ''
+          alt: ''
+          title: ''
+          width: null
+          height: null
+        handler: 'default:file'
+        handler_settings: {  }
+      field_type: image
   -
     collection: ''
     name: field.field.node.people.field_meta_tags
@@ -884,8 +754,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: metatag
-      _core:
-        default_config_hash: Jy6WGV-PE3Q3sRQDpqRpANnTUDnjwcR0z2sZRDH6-Ng
   -
     collection: ''
     name: field.field.node.people.field_people_position
@@ -908,8 +776,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: string
-      _core:
-        default_config_hash: r5QzktN_-nSrvYsgpD2K04j__Gxnsx5YrqAxvKPGMns
   -
     collection: ''
     name: field.field.node.people.field_people_type
@@ -941,8 +807,6 @@ items:
           auto_create: false
           auto_create_bundle: ''
       field_type: entity_reference
-      _core:
-        default_config_hash: dtMxnws7m6b4_vE_RgmtnEGbj5rgmHSYYMKDsZIA3ok
   -
     collection: ''
     name: field.field.node.people.field_summary
@@ -967,43 +831,6 @@ items:
       default_value_callback: ''
       settings: {  }
       field_type: text_long
-      _core:
-        default_config_hash: EXOljgShOmy983x8K_RBAJkJ2cWknYTQvOdpbfg3EC4
-  -
-    collection: ''
-    name: field.field.node.people.field_topics
-    data:
-      uuid: 6dd9b232-291e-4fca-b2ee-0f39184f8e0a
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - field.storage.node.field_topics
-          - node.type.people
-          - taxonomy.vocabulary.topics
-      id: node.people.field_topics
-      field_name: field_topics
-      entity_type: node
-      bundle: people
-      label: Topics
-      description: 'Add any topics used across this site that this person has particular experience or involvement in.'
-      required: false
-      translatable: false
-      default_value: {  }
-      default_value_callback: ''
-      settings:
-        handler: 'default:taxonomy_term'
-        handler_settings:
-          target_bundles:
-            topics: topics
-          sort:
-            field: name
-            direction: asc
-          auto_create: false
-          auto_create_bundle: ''
-      field_type: entity_reference
-      _core:
-        default_config_hash: K3btHZ3JKmqsqxayLMy-xog1XK47ZkM-y6FVZ7Am2Qo
   -
     collection: ''
     name: field.storage.node.field_authors
@@ -1026,8 +853,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: CdsNvWBIHAJza9u2WNrUp4ObkJX91d1EFwUFnlQvAtc
   -
     collection: ''
     name: field.storage.node.field_people_position
@@ -1052,8 +877,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: J4f7770QL2eOcA794z9cqefQlXK0ywmFLi7RqaBWX1k
   -
     collection: ''
     name: field.storage.node.field_people_type
@@ -1077,8 +900,6 @@ items:
       indexes: {  }
       persist_with_no_fields: false
       custom_storage: false
-      _core:
-        default_config_hash: chcdF2_EWxzeKzeYwGT_Ivlt4nHXOD-QUYTWx3XRMIA
   -
     collection: ''
     name: node.type.people
@@ -1093,15 +914,13 @@ items:
           available_menus:
             - main
           parent: 'main:'
-      name: Person
+      name: People
       type: people
-      description: 'Use the <em>person</em> content type for people such as staff, volunteers, contributors.'
+      description: 'Use <em>people</em> content type for people such as staff, volunteers, contributors.'
       help: ''
       new_revision: true
       preview_mode: 1
       display_submitted: false
-      _core:
-        default_config_hash: r-xpZkuQAhoS4D3-p5F5vtrQEsjx_GbmDMUVrgvV3Qs
   -
     collection: ''
     name: pathauto.pattern.people_node
@@ -1117,7 +936,7 @@ items:
       pattern: 'people/[node:title]'
       selection_criteria:
         c9467269-b644-451e-b21f-01808d094c28:
-          id: 'entity_bundle:node'
+          id: node_type
           bundles:
             people: people
           negate: false
@@ -1127,8 +946,6 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: VhDRsybkLGADMPlVIVSlNWoEHaybjdmU4tkhryK7XdQ
   -
     collection: ''
     name: pathauto.pattern.people_type
@@ -1155,8 +972,6 @@ items:
       selection_logic: and
       weight: -5
       relationships: {  }
-      _core:
-        default_config_hash: kJvjcFRrqkBrjz3kIhGL4LHVUyWJezs8GJHnm3dJvPg
   -
     collection: ''
     name: search_api.index.people
@@ -1200,7 +1015,7 @@ items:
           datasource_id: 'entity:node'
           property_path: title
           type: text
-          boost: 8.0
+          boost: !!float 8
         created:
           label: 'Authored on'
           datasource_id: 'entity:node'
@@ -1376,8 +1191,6 @@ items:
         index_directly: true
         cron_limit: 50
       server: database
-      _core:
-        default_config_hash: MppSSFf9_oAEuTYEXp1R5nK30k5xRKvptoEDwKw9v6o
   -
     collection: ''
     name: taxonomy.vocabulary.people_type
@@ -1389,8 +1202,6 @@ items:
       vid: people_type
       description: 'For categorizing people content.'
       weight: 0
-      _core:
-        default_config_hash: JO19BdRf7-8_1H53_vF57ekuHcSK6kTi9i2f3LD-uWY
   -
     collection: ''
     name: views.view.content_by_author
@@ -1410,6 +1221,7 @@ items:
       tag: ''
       base_table: node_field_data
       base_field: nid
+      core: 8.x
       display:
         default:
           display_plugin: default
@@ -1529,8 +1341,6 @@ items:
                 id: status
                 expose:
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                 group: 1
             sorts:
               created:
@@ -1636,8 +1446,6 @@ items:
               - 'user.node_grants:view'
               - user.permissions
             tags: {  }
-      _core:
-        default_config_hash: 3vI7yksWCvIULEcbQRRzGJbNzM1sqI-lQMQeKHXzcjM
   -
     collection: ''
     name: views.view.people
@@ -1652,7 +1460,6 @@ items:
         module:
           - search_api
           - user
-          - views_plain
       id: people
       label: People
       module: views
@@ -1660,14 +1467,57 @@ items:
       tag: ''
       base_table: search_api_index_people
       base_field: search_api_id
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: 'Our people'
+            access:
+              type: perm
+              options:
+                perm: 'access content'
+            cache:
+              type: none
+              options: {  }
+            query:
+              type: views_query
+              options:
+                bypass_access: false
+                skip_access: false
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Apply
+                reset_button: false
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: true
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: none
+              options:
+                offset: 0
+            style:
+              type: default
+              options:
+                grouping:
+                  -
+                    field: field_people_type
+                    rendered: true
+                    rendered_strip: false
+                row_class: ''
+                default_row_class: false
+                uses_fields: true
+            row:
+              type: search_api
+              options:
+                view_modes:
+                  'entity:node':
+                    people: small_card
             fields:
               field_people_type:
                 id: field_people_type
@@ -1676,8 +1526,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                plugin_id: search_api_field
                 label: ''
                 exclude: true
                 alter:
@@ -1757,6 +1605,8 @@ items:
                       display_method: label
                     topics:
                       display_method: label
+                entity_type: node
+                plugin_id: search_api_field
               title:
                 id: title
                 table: search_api_datasource_people_entity_node
@@ -1764,8 +1614,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                plugin_id: search_api_field
                 label: ''
                 exclude: false
                 alter:
@@ -1828,28 +1676,9 @@ items:
                   use_highlighting: false
                   multi_type: separator
                   multi_separator: ', '
-            pager:
-              type: none
-              options:
-                offset: 0
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access content'
-            cache:
-              type: none
-              options: {  }
-            empty: {  }
+                entity_type: node
+                plugin_id: search_api_field
+            filters: {  }
             sorts:
               field_people_type:
                 id: field_people_type
@@ -1858,11 +1687,11 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: search_api
                 order: ASC
+                exposed: false
                 expose:
                   label: ''
-                exposed: false
+                plugin_id: search_api
               created:
                 id: created
                 table: search_api_index_people
@@ -1870,52 +1699,30 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: search_api
                 order: DESC
+                exposed: false
                 expose:
                   label: ''
-                exposed: false
-            arguments: {  }
-            filters: {  }
-            style:
-              type: plain_style
-              options:
-                grouping:
-                  -
-                    field: field_people_type
-                    rendered: true
-                    rendered_strip: false
-                uses_fields: true
-            row:
-              type: search_api
-              options:
-                view_modes:
-                  'entity:node':
-                    people: teaser
-            query:
-              type: search_api_query
-              options:
-                bypass_access: false
-                skip_access: false
-            relationships: {  }
+                plugin_id: search_api
             header: {  }
             footer: {  }
+            empty: {  }
+            relationships: {  }
+            arguments: {  }
             display_extenders: {  }
+            title: 'Our people'
           cache_metadata:
             max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
-              - 'user.node_grants:view'
               - user.permissions
             tags:
               - 'config:field.storage.node.field_people_type'
-              - 'config:search_api.index.people'
-              - 'search_api_list:people'
         page_listing:
+          display_plugin: page
           id: page_listing
           display_title: Page
-          display_plugin: page
           position: 1
           display_options:
             display_extenders: {  }
@@ -1924,22 +1731,16 @@ items:
               type: normal
               title: People
               description: 'Learn about our team'
-              weight: 0
-              enabled: true
               expanded: false
-              menu_name: main
               parent: 'menu_link_content:33435872-bdbe-4833-9477-c057c2c33359'
+              weight: 0
               context: '0'
+              menu_name: main
           cache_metadata:
             max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
-              - 'user.node_grants:view'
               - user.permissions
             tags:
               - 'config:field.storage.node.field_people_type'
-              - 'config:search_api.index.people'
-              - 'search_api_list:people'
-      _core:
-        default_config_hash: N1tfpVuHaGzNVTaQpYlhjjyIPe1X9mscVaPbU44J77o
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
index 4729109..efd3b68 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
@@ -52,8 +52,6 @@ items:
           negate: true
           context_mapping:
             node: '@node.node_route_context:node'
-      _core:
-        default_config_hash: MRx48Mtce75hvDAK9VAUIcM1HZnpBlYuDp-SsC5kf2w
   -
     collection: ''
     name: views.view.related_content
@@ -74,6 +72,7 @@ items:
       tag: ''
       base_table: node_field_data
       base_field: nid
+      core: 8.x
       display:
         default:
           display_plugin: default
@@ -194,8 +193,6 @@ items:
                   multiple: false
                   remember_roles:
                     authenticated: authenticated
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: false
                 group_info:
                   label: ''
@@ -304,5 +301,3 @@ items:
               - 'user.node_grants:view'
               - user.permissions
             tags: {  }
-      _core:
-        default_config_hash: oAtaO3ho1pXlY8O_tnrNCQMfHekkzCNSasXW_RYExLQ
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
index 34ca266..8e16e74 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
@@ -29,8 +29,6 @@ items:
           context_mapping: {  }
           uuid: f502a545-a711-401c-8e94-6e727993abb4
       allow_other_conditions: false
-      _core:
-        default_config_hash: ddeT3L9Xq8y_TDPJxLXDM1i3UEFHxVGo9zXUxIDsvCE
   -
     collection: ''
     name: facets.facet.search_content_type
@@ -87,8 +85,6 @@ items:
       empty_behavior:
         behavior: none
       show_title: false
-      _core:
-        default_config_hash: k1PFdr_CIrIeS0KGckN85rrs-Pyl4WR64yyTgJ3VNj0
   -
     collection: ''
     name: facets.facet.search_date
@@ -148,8 +144,6 @@ items:
       empty_behavior:
         behavior: none
       show_title: false
-      _core:
-        default_config_hash: syu_tLhMKbEI3qeAzecwvNMGieJLpJSIm7B_x7Kvtd0
   -
     collection: ''
     name: facets.facet.search_topics
@@ -206,8 +200,6 @@ items:
       empty_behavior:
         behavior: none
       show_title: false
-      _core:
-        default_config_hash: dOZjHLs_u2M53WmjpSKWztyhsfl3i8mRHHxB430TWrE
   -
     collection: ''
     name: facets.facet_source.search_api__views_page__search__page_1
@@ -220,8 +212,6 @@ items:
       filter_key: null
       url_processor: query_string
       breadcrumb: {  }
-      _core:
-        default_config_hash: NWruDTMV7miFQxlcWeWCv9-OEnAQuThLC9lbAG8xPK4
   -
     collection: ''
     name: search_api.index.content
@@ -341,7 +331,7 @@ items:
           datasource_id: 'entity:node'
           property_path: title
           type: text
-          boost: 8.0
+          boost: !!float 8
           dependencies:
             module:
               - node
@@ -488,8 +478,6 @@ items:
         index_directly: true
         cron_limit: 50
       server: database
-      _core:
-        default_config_hash: q4urWOU1mmYKKSBzYuwpRBTSIJnFwzapGP4bnCajbFs
   -
     collection: ''
     name: views.view.search
@@ -509,6 +497,7 @@ items:
       tag: ''
       base_table: search_api_index_content
       base_field: search_api_id
+      core: 8.x
       display:
         default:
           display_plugin: default
@@ -670,8 +659,6 @@ items:
                     authenticated: authenticated
                     anonymous: '0'
                     administrator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: false
                 group_info:
                   label: ''
@@ -742,5 +729,3 @@ items:
               - url
               - url.query_args
             tags: {  }
-      _core:
-        default_config_hash: GJZuVolkBuJ-bZTQ2IJQ-K6zss_KefjDBUJYOM0idYs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
index 3649012..e9bd309 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
@@ -31,5 +31,3 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: _6IJ94Rz4TMt7cLH-8HeTgFxkumIB4cO-46roFGqRvw
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
index 448df87..c75d283 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
@@ -20,8 +20,6 @@ items:
       label: 'Basic block'
       revision: 0
       description: 'A basic block contains a title and a body.'
-      _core:
-        default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
   -
     collection: ''
     name: block_content.type.slide
@@ -33,8 +31,6 @@ items:
       label: Slide
       revision: 1
       description: ''
-      _core:
-        default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw
   -
     collection: ''
     name: contact.form.feedback
@@ -50,8 +46,6 @@ items:
       weight: 0
       message: 'Your message has been sent.'
       redirect: ''
-      _core:
-        default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
   -
     collection: ''
     name: core.entity_form_display.block_content.basic.default
@@ -87,8 +81,6 @@ items:
           third_party_settings: {  }
           region: content
       hidden: {  }
-      _core:
-        default_config_hash: 6qtUzM5E9WGaNTRlMmYhrScXEP509jFMzRWm3gqFXvQ
   -
     collection: ''
     name: core.entity_form_display.block_content.slide.default
@@ -127,8 +119,6 @@ items:
             placeholder: ''
           third_party_settings: {  }
       hidden: {  }
-      _core:
-        default_config_hash: 7cKjgY8GVkmEzOYGZdSAsWt1T5V3L5rEKw19Llx246c
   -
     collection: ''
     name: core.entity_view_display.block_content.basic.default
@@ -153,10 +143,7 @@ items:
           settings: {  }
           third_party_settings: {  }
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: CmZdrveBfdzcVjaY5Iy891AdoO9AoBMJ4pdhu0WwXkI
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.block_content.slide.columnar
@@ -179,7 +166,7 @@ items:
         field_slide:
           type: entity_reference_revisions_entity_view
           weight: 0
-          label: hidden
+          label: visually_hidden
           settings:
             view_mode: columnar
             link: ''
@@ -187,10 +174,7 @@ items:
             ds:
               ds_limit: ''
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: Qy6nDH_-O3SoksTn8t8slyCbTE2fP_sYtISt1_hZKZc
+      hidden: {  }
   -
     collection: ''
     name: core.entity_view_display.block_content.slide.default
@@ -211,16 +195,13 @@ items:
         field_slide:
           type: entity_reference_revisions_entity_view
           weight: 0
-          label: hidden
+          label: visually_hidden
           settings:
             view_mode: default
             link: ''
           third_party_settings: {  }
           region: content
-      hidden:
-        search_api_excerpt: true
-      _core:
-        default_config_hash: Ifn3KdN-1MT1MGhO0hGpyV6avfoMPpy6q2yuD5tsEgg
+      hidden: {  }
   -
     collection: ''
     name: editor.editor.basic_html
@@ -231,55 +212,44 @@ items:
         config:
           - filter.format.basic_html
         module:
-          - ckeditor5
+          - ckeditor
       format: basic_html
-      editor: ckeditor5
+      editor: ckeditor
       settings:
         toolbar:
-          items:
-            - bold
-            - italic
-            - '|'
-            - link
-            - '|'
-            - bulletedList
-            - numberedList
-            - '|'
-            - blockQuote
-            - drupalInsertImage
-            - '|'
-            - heading
-            - code
-            - '|'
-            - sourceEditing
+          rows:
+            -
+              -
+                name: Formatting
+                items:
+                  - Bold
+                  - Italic
+              -
+                name: Linking
+                items:
+                  - DrupalLink
+                  - DrupalUnlink
+              -
+                name: Lists
+                items:
+                  - BulletedList
+                  - NumberedList
+              -
+                name: Media
+                items:
+                  - Blockquote
+                  - DrupalImage
+              -
+                name: 'Block Formatting'
+                items:
+                  - Format
+              -
+                name: Tools
+                items:
+                  - Source
         plugins:
-          ckeditor5_heading:
-            enabled_headings:
-              - heading2
-              - heading3
-              - heading4
-              - heading5
-              - heading6
-          ckeditor5_imageResize:
-            allow_resize: true
-          ckeditor5_list:
-            reversed: false
-            startIndex: true
-          ckeditor5_sourceEditing:
-            allowed_tags:
-              - '<cite>'
-              - '<dl>'
-              - '<dt>'
-              - '<dd>'
-              - '<a hreflang>'
-              - '<blockquote cite>'
-              - '<ul type>'
-              - '<ol start type>'
-              - '<h2 id>'
-              - '<h3 id>'
-              - '<h4 id>'
-              - '<h5 id>'
-              - '<h6 id>'
+          stylescombo:
+            styles: ''
       image_upload:
         status: true
         scheme: public
@@ -288,8 +258,6 @@ items:
         max_dimensions:
           width: 0
           height: 0
-      _core:
-        default_config_hash: lZlUTSJqWaN3iU0I0fhvQVgqf4ps9fxPPC-g_9aWIRc
   -
     collection: ''
     name: editor.editor.full_html
@@ -300,52 +268,52 @@ items:
         config:
           - filter.format.full_html
         module:
-          - ckeditor5
+          - ckeditor
       format: full_html
-      editor: ckeditor5
+      editor: ckeditor
       settings:
         toolbar:
-          items:
-            - bold
-            - italic
-            - underline
-            - strikethrough
-            - code
-            - superscript
-            - subscript
-            - removeFormat
-            - '|'
-            - link
-            - '|'
-            - bulletedList
-            - numberedList
-            - '|'
-            - blockQuote
-            - drupalInsertImage
-            - insertTable
-            - specialCharacters
-            - horizontalLine
-            - '|'
-            - heading
-            - '|'
-            - undo
-            - redo
-            - sourceEditing
+          rows:
+            -
+              -
+                name: Formatting
+                items:
+                  - Bold
+                  - Italic
+                  - Strike
+                  - Superscript
+                  - Subscript
+                  - '-'
+                  - RemoveFormat
+              -
+                name: Linking
+                items:
+                  - DrupalLink
+                  - DrupalUnlink
+              -
+                name: Lists
+                items:
+                  - BulletedList
+                  - NumberedList
+              -
+                name: Media
+                items:
+                  - Blockquote
+                  - DrupalImage
+                  - Table
+                  - HorizontalRule
+              -
+                name: 'Block Formatting'
+                items:
+                  - Format
+              -
+                name: Tools
+                items:
+                  - ShowBlocks
+                  - Source
         plugins:
-          ckeditor5_heading:
-            enabled_headings:
-              - heading2
-              - heading3
-              - heading4
-              - heading5
-              - heading6
-          ckeditor5_imageResize:
-            allow_resize: true
-          ckeditor5_list:
-            reversed: true
-            startIndex: true
-          ckeditor5_sourceEditing:
-            allowed_tags: {  }
+          stylescombo:
+            styles: ''
       image_upload:
         status: true
         scheme: public
@@ -354,8 +322,6 @@ items:
         max_dimensions:
           width: 0
           height: 0
-      _core:
-        default_config_hash: xaB_r7M0ei85xf3DREBJ7vg7cWRdpnGUqxRNGcjsO3w
   -
     collection: ''
     name: field.field.block_content.basic.body
@@ -380,11 +346,7 @@ items:
       default_value_callback: ''
       settings:
         display_summary: false
-        required_summary: false
-        allowed_formats: {  }
       field_type: text_with_summary
-      _core:
-        default_config_hash: j00Gfs9AFqwK4x9RIsISLbPO7vA12psPR4s60wOIwQo
   -
     collection: ''
     name: field.field.block_content.slide.field_slide
@@ -430,8 +392,6 @@ items:
               weight: 10
               enabled: false
       field_type: entity_reference_revisions
-      _core:
-        default_config_hash: DTGKvSTSWQLuPM_GVGwvK_Uqu5RQfCkI6pyro9U2PVw
   -
     collection: ''
     name: filter.format.basic_html
@@ -478,8 +438,6 @@ items:
           status: true
           weight: 11
           settings: {  }
-      _core:
-        default_config_hash: 73bBl0mQ4I5Md9_FoI1V9MErX_I6ykC9gNKwLqb80Ko
   -
     collection: ''
     name: filter.format.full_html
@@ -517,17 +475,6 @@ items:
           status: true
           weight: 11
           settings: {  }
-        filter_html:
-          id: filter_html
-          provider: filter
-          status: false
-          weight: -10
-          settings:
-            allowed_html: ''
-            filter_html_help: true
-            filter_html_nofollow: false
-      _core:
-        default_config_hash: KMhXYrB50PHlC9zRDcIi-BZAV9qSWhsxVvhznwJBvUM
   -
     collection: ''
     name: filter.format.restricted_html
@@ -561,5 +508,3 @@ items:
           weight: 0
           settings:
             filter_url_length: 72
-      _core:
-        default_config_hash: svzvsrZlfyHwBHGze539jJhmQPyb-CLVSc_jNHreKLw
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml
index 3139018..e97cd11 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml
@@ -15,18 +15,9 @@ items:
     data:
       disabled: false
       field_template: false
-      ft_default: default
-      ft_show_colon: false
-      ft_layout_builder: false
-      ft_expert_prefix_suffix_textarea: false
-      ft_bc: false
-      ft_default_bc: false
+      ft-default: default
+      ft-show-colon: false
       classes:
         region: {  }
         field: {  }
       use_field_names: true
-      exclude_layout_builder_blocks_on_block_field: false
-      layout_icon_image_bc: false
-      layout_suggestion_bc: false
-      _core:
-        default_config_hash: YPUqVPBFEsvwMa23vT1yY60XrIdvCZdkOZICIV0BtbU
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.empty_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.empty_page.yml
deleted file mode 100644
index 10f8095..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.empty_page.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d9d25e40-2fd6-433d-8d2d-449d4813f8de
-langcode: en
-status: true
-dependencies:
-  module:
-    - empty_page
-id: config_sync.module.empty_page
-snapshotSet: config_sync
-extensionType: module
-extensionName: empty_page
-items:
-  -
-    collection: ''
-    name: empty_page.settings
-    data:
-      new_id: 1
-      _core:
-        default_config_hash: 1qKVk03zhLAZj-W36dakmXWDO3mx28TRgx9iDzHpqMs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.entity_reference_override.yml b/config/sync/config_snapshot.snapshot.config_sync.module.entity_reference_override.yml
deleted file mode 100644
index d69284a..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.entity_reference_override.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 9b387109-e0e2-4ed4-bf6c-f6092dc77b86
-langcode: en
-status: true
-dependencies:
-  module:
-    - entity_reference_override
-id: config_sync.module.entity_reference_override
-snapshotSet: config_sync
-extensionType: module
-extensionName: entity_reference_override
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml b/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
index 89c0a8d..f303ff8 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
@@ -15,10 +15,7 @@ items:
     data:
       nid_list: {  }
       translation_sync: true
-      search: false
-      type: remove
-      _core:
-        default_config_hash: 0yJNd4uWv8TzhYEPQBDiApPL2e8ar88kBmQrzDjNCqc
+      search: 0
       content_types:
         landing_page: user
       content_type_modes:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.field.yml b/config/sync/config_snapshot.snapshot.config_sync.module.field.yml
index edba56d..8ba0746 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.field.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.field.yml
@@ -14,5 +14,3 @@ items:
     name: field.settings
     data:
       purge_batch_size: 50
-      _core:
-        default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml b/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml
index e103163..91d5162 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml
@@ -14,5 +14,3 @@ items:
     name: field_ui.settings
     data:
       field_prefix: field_
-      _core:
-        default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.file.yml b/config/sync/config_snapshot.snapshot.config_sync.module.file.yml
index 1fa337c..a8e5714 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.file.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.file.yml
@@ -19,15 +19,6 @@ items:
       icon:
         directory: core/modules/file/icons
       make_unused_managed_files_temporary: false
-      filename_sanitization:
-        transliterate: false
-        replace_whitespace: false
-        replace_non_alphanumeric: false
-        deduplicate_separators: false
-        lowercase: false
-        replacement_character: '-'
-      _core:
-        default_config_hash: 2bwjZB1IjEYbppgZT3g7YW_5h_LDZYNa3DaDEfWX82U
   -
     collection: ''
     name: views.view.files
@@ -45,527 +36,29 @@ items:
       tag: default
       base_table: file_managed
       base_field: fid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: Files
-            fields:
-              fid:
-                id: fid
-                table: file_managed
-                field: fid
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: fid
-                plugin_id: field
-                label: Fid
-                exclude: true
-                alter:
-                  alter_text: false
-                  make_link: false
-                  absolute: false
-                  word_boundary: false
-                  ellipsis: false
-                  strip_tags: false
-                  trim: false
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              filename:
-                id: filename
-                table: file_managed
-                field: filename
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: filename
-                plugin_id: field
-                label: Name
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: false
-                  ellipsis: false
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: file_link
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              filemime:
-                id: filemime
-                table: file_managed
-                field: filemime
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: filemime
-                plugin_id: field
-                label: 'MIME type'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: file_filemime
-              filesize:
-                id: filesize
-                table: file_managed
-                field: filesize
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: filesize
-                plugin_id: field
-                label: Size
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: file_size
-              status:
-                id: status
-                table: file_managed
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: status
-                plugin_id: field
-                label: Status
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: boolean
-                settings:
-                  format: custom
-                  format_custom_false: Temporary
-                  format_custom_true: Permanent
-              created:
-                id: created
-                table: file_managed
-                field: created
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: created
-                plugin_id: field
-                label: 'Upload date'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: timestamp
-                settings:
-                  date_format: medium
-                  custom_date_format: ''
-                  timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-              changed:
-                id: changed
-                table: file_managed
-                field: changed
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: changed
-                plugin_id: field
-                label: 'Changed date'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: timestamp
-                settings:
-                  date_format: medium
-                  custom_date_format: ''
-                  timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-              count:
-                id: count
-                table: file_usage
-                field: count
-                relationship: fid
-                group_type: sum
-                admin_label: ''
-                plugin_id: numeric
-                label: 'Used in'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: true
-                  path: 'admin/content/files/usage/{{ fid }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: true
-                format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz
-                prefix: ''
-                suffix: ''
-              operations:
-                id: operations
-                table: file_managed
-                field: operations
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                plugin_id: entity_operations
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                destination: false
-            pager:
-              type: mini
+            access:
+              type: perm
               options:
-                offset: 0
-                items_per_page: 50
-                total_pages: 0
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
+                perm: 'access files overview'
+            cache:
+              type: tag
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
             exposed_form:
               type: basic
               options:
@@ -576,157 +69,35 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
+            pager:
+              type: mini
               options:
-                perm: 'access files overview'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                plugin_id: text_custom
-                empty: true
-                content: 'No files available.'
-            sorts: {  }
-            arguments: {  }
-            filters:
-              filename:
-                id: filename
-                table: file_managed
-                field: filename
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: filename
-                plugin_id: string
-                operator: word
-                value: ''
-                group: 1
-                exposed: true
+                items_per_page: 50
+                offset: 0
+                id: 0
+                total_pages: 0
+                tags:
+                  previous: '‹ Previous'
+                  next: 'Next ›'
                 expose:
-                  operator_id: filemime_op
-                  label: Filename
-                  description: ''
-                  use_operator: false
-                  operator: filename_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: filename
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              filemime:
-                id: filemime
-                table: file_managed
-                field: filemime
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: filemime
-                plugin_id: string
-                operator: word
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: filemime_op
-                  label: 'MIME type'
-                  description: ''
-                  use_operator: false
-                  operator: filemime_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: filemime
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              status:
-                id: status
-                table: file_managed
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: file
-                entity_field: status
-                plugin_id: file_status
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: status_op
-                  label: Status
-                  description: ''
-                  use_operator: false
-                  operator: status_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: status
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
             style:
               type: table
               options:
                 grouping: {  }
                 row_class: ''
                 default_row_class: true
+                override: true
+                sticky: false
+                caption: ''
+                summary: ''
+                description: ''
                 columns:
                   fid: fid
                   filename: filename
@@ -736,7 +107,6 @@ items:
                   created: created
                   changed: changed
                   count: count
-                default: changed
                 info:
                   fid:
                     sortable: false
@@ -794,22 +164,570 @@ items:
                     separator: ''
                     empty_column: false
                     responsive: priority-medium
-                override: true
-                sticky: false
-                summary: ''
+                default: changed
                 empty_table: true
-                caption: ''
-                description: ''
             row:
               type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
+            fields:
+              fid:
+                id: fid
+                table: file_managed
+                field: fid
+                alter:
+                  alter_text: false
+                  make_link: false
+                  absolute: false
+                  trim: false
+                  word_boundary: false
+                  ellipsis: false
+                  strip_tags: false
+                  html: false
+                hide_empty: false
+                empty_zero: false
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: Fid
+                exclude: true
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_alter_empty: true
+                plugin_id: field
+                entity_type: file
+                entity_field: fid
+              filename:
+                id: filename
+                table: file_managed
+                field: filename
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: Name
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: false
+                  ellipsis: false
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                click_sort_column: value
+                type: file_link
+                group_column: value
+                group_columns: {  }
+                group_rows: true
+                delta_limit: 0
+                delta_offset: 0
+                delta_reversed: false
+                delta_first_last: false
+                multi_type: separator
+                separator: ', '
+                field_api_classes: false
+                plugin_id: field
+                entity_type: file
+                entity_field: filename
+              filemime:
+                id: filemime
+                table: file_managed
+                field: filemime
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: 'MIME type'
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: file_filemime
+                plugin_id: field
+                entity_type: file
+                entity_field: filemime
+              filesize:
+                id: filesize
+                table: file_managed
+                field: filesize
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: Size
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: file_size
+                plugin_id: field
+                entity_type: file
+                entity_field: filesize
+              status:
+                id: status
+                table: file_managed
+                field: status
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: Status
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: boolean
+                settings:
+                  format: custom
+                  format_custom_false: Temporary
+                  format_custom_true: Permanent
+                plugin_id: field
+                entity_type: file
+                entity_field: status
+              created:
+                id: created
+                table: file_managed
+                field: created
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: 'Upload date'
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: timestamp
+                settings:
+                  date_format: medium
+                  custom_date_format: ''
+                  timezone: ''
+                plugin_id: field
+                entity_type: file
+                entity_field: created
+              changed:
+                id: changed
+                table: file_managed
+                field: changed
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: 'Changed date'
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: timestamp
+                settings:
+                  date_format: medium
+                  custom_date_format: ''
+                  timezone: ''
+                plugin_id: field
+                entity_type: file
+                entity_field: changed
+              count:
+                id: count
+                table: file_usage
+                field: count
+                relationship: fid
+                group_type: sum
+                admin_label: ''
+                label: 'Used in'
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: true
+                  path: 'admin/content/files/usage/{{ fid }}'
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                set_precision: false
+                precision: 0
+                decimal: .
+                separator: ','
+                format_plural: true
+                format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz
+                prefix: ''
+                suffix: ''
+                plugin_id: numeric
+            filters:
+              filename:
+                id: filename
+                table: file_managed
+                field: filename
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: word
+                value: ''
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: filemime_op
+                  label: Filename
+                  description: ''
+                  use_operator: false
+                  operator: filename_op
+                  identifier: filename
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                plugin_id: string
+                entity_type: file
+                entity_field: filename
+              filemime:
+                id: filemime
+                table: file_managed
+                field: filemime
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: word
+                value: ''
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: filemime_op
+                  label: 'MIME type'
+                  description: ''
+                  use_operator: false
+                  operator: filemime_op
+                  identifier: filemime
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                plugin_id: string
+                entity_type: file
+                entity_field: filemime
+              status:
+                id: status
+                table: file_managed
+                field: status
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: in
+                value: {  }
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: status_op
+                  label: Status
+                  description: ''
+                  use_operator: false
+                  operator: status_op
+                  identifier: status
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                  reduce: false
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                plugin_id: file_status
+                entity_type: file
+                entity_field: status
+            sorts: {  }
+            title: Files
+            header: {  }
+            footer: {  }
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                empty: true
+                content: 'No files available.'
+                plugin_id: text_custom
             relationships:
               fid:
                 id: fid
@@ -819,26 +737,34 @@ items:
                 group_type: group
                 admin_label: 'File usage'
                 required: true
+            arguments: {  }
             group_by: true
             show_admin_links: true
-            header: {  }
-            footer: {  }
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
         page_1:
+          display_plugin: page
           id: page_1
           display_title: 'Files overview'
-          display_plugin: page
           position: 1
           display_options:
+            path: admin/content/files
+            menu:
+              type: tab
+              title: Files
+              description: ''
+              menu_name: admin
+              weight: 0
+              context: ''
+            display_description: ''
             defaults:
               pager: true
               relationships: false
@@ -851,32 +777,59 @@ items:
                 group_type: group
                 admin_label: 'File usage'
                 required: false
-            display_description: ''
             display_extenders: {  }
-            path: admin/content/files
-            menu:
-              type: tab
-              title: Files
-              description: ''
-              weight: 0
-              menu_name: admin
-              context: ''
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
         page_2:
+          display_plugin: page
           id: page_2
           display_title: 'File usage'
-          display_plugin: page
           position: 2
           display_options:
-            title: 'File usage'
+            display_description: ''
+            path: admin/content/files/usage/%
+            empty: {  }
+            defaults:
+              empty: false
+              pager: false
+              filters: false
+              filter_groups: false
+              fields: false
+              group_by: false
+              title: false
+              arguments: false
+              style: false
+              row: false
+              relationships: false
+            pager:
+              type: mini
+              options:
+                items_per_page: 10
+                offset: 0
+                id: 0
+                total_pages: 0
+                tags:
+                  previous: '‹ Previous'
+                  next: 'Next ›'
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+            filters: {  }
+            filter_groups:
+              operator: AND
+              groups: {  }
             fields:
               entity_label:
                 id: entity_label
@@ -885,7 +838,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: entity_label
                 label: Entity
                 exclude: false
                 alter:
@@ -928,6 +880,7 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 link_to_entity: true
+                plugin_id: entity_label
               type:
                 id: type
                 table: file_usage
@@ -935,7 +888,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: standard
                 label: 'Entity type'
                 exclude: false
                 alter:
@@ -977,6 +929,7 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: standard
               module:
                 id: module
                 table: file_usage
@@ -984,7 +937,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: standard
                 label: 'Registering module'
                 exclude: false
                 alter:
@@ -1026,6 +978,7 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: standard
               count:
                 id: count
                 table: file_usage
@@ -1033,7 +986,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: numeric
                 label: 'Use count'
                 exclude: false
                 alter:
@@ -1083,25 +1035,9 @@ items:
                 format_plural_string: !!binary MQNAY291bnQ=
                 prefix: ''
                 suffix: ''
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 10
-                total_pages: 0
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            empty: {  }
+                plugin_id: numeric
+            group_by: false
+            title: 'File usage'
             arguments:
               fid:
                 id: fid
@@ -1110,9 +1046,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: file
-                entity_field: fid
-                plugin_id: file_fid
                 default_action: 'not found'
                 exception:
                   value: all
@@ -1123,11 +1056,12 @@ items:
                 default_argument_type: fixed
                 default_argument_options:
                   argument: ''
+                default_argument_skip_url: false
                 summary_options:
                   base_path: ''
                   count: true
-                  override: false
                   items_per_page: 25
+                  override: false
                 summary:
                   sort_order: asc
                   number_of_records: 0
@@ -1139,22 +1073,25 @@ items:
                 validate_options: {  }
                 break_phrase: false
                 not: false
-            filters: {  }
-            filter_groups:
-              operator: AND
-              groups: {  }
+                plugin_id: file_fid
+                entity_type: file
+                entity_field: fid
             style:
               type: table
               options:
                 grouping: {  }
                 row_class: ''
                 default_row_class: true
+                override: true
+                sticky: false
+                caption: ''
+                summary: ''
+                description: ''
                 columns:
                   entity_label: entity_label
                   type: type
                   module: module
                   count: count
-                default: entity_label
                 info:
                   entity_label:
                     sortable: true
@@ -1184,27 +1121,11 @@ items:
                     separator: ''
                     empty_column: false
                     responsive: ''
-                override: true
-                sticky: false
-                summary: ''
+                default: entity_label
                 empty_table: true
-                caption: ''
-                description: ''
             row:
               type: fields
               options: {  }
-            defaults:
-              empty: false
-              title: false
-              pager: false
-              group_by: false
-              style: false
-              row: false
-              relationships: false
-              fields: false
-              arguments: false
-              filters: false
-              filter_groups: false
             relationships:
               fid:
                 id: fid
@@ -1214,17 +1135,12 @@ items:
                 group_type: group
                 admin_label: 'File usage'
                 required: true
-            group_by: false
-            display_description: ''
             display_extenders: {  }
-            path: admin/content/files/usage/%
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
-      _core:
-        default_config_hash: ja1IXL3-eSj1lJFQKxyY6-b0yfBsQzvngMbe0J2F22w
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml b/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml
index 77e2628..69d835d 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml
@@ -20,12 +20,6 @@ items:
       format: plain_text
       weight: 10
       filters:
-        filter_autop:
-          id: filter_autop
-          provider: filter
-          status: true
-          weight: 0
-          settings: {  }
         filter_html_escape:
           id: filter_html_escape
           provider: filter
@@ -39,13 +33,15 @@ items:
           weight: 0
           settings:
             filter_url_length: 72
-      _core:
-        default_config_hash: JLMwODO0epnA_H-jFlH9ezVfa5YBJniRv3MmLqYNl_Q
+        filter_autop:
+          id: filter_autop
+          provider: filter
+          status: true
+          weight: 0
+          settings: {  }
   -
     collection: ''
     name: filter.settings
     data:
       fallback_format: plain_text
       always_show_fallback_choice: false
-      _core:
-        default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.fitvids.yml b/config/sync/config_snapshot.snapshot.config_sync.module.fitvids.yml
deleted file mode 100644
index c664c07..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.fitvids.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 61c7e3b0-a3cf-4e14-8ada-96b3515eaa49
-langcode: en
-status: true
-dependencies:
-  module:
-    - fitvids
-id: config_sync.module.fitvids
-snapshotSet: config_sync
-extensionType: module
-extensionName: fitvids
-items:
-  -
-    collection: ''
-    name: fitvids.settings
-    data:
-      selectors: .node
-      custom_vendors: ''
-      ignore_selectors: ''
-      _core:
-        default_config_hash: 2VIFfYIzLIphEpkJSH9KfhEE0P66ieHfusDj6QMJIzY
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.focal_point.yml b/config/sync/config_snapshot.snapshot.config_sync.module.focal_point.yml
index 0afe671..65f6368 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.focal_point.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.focal_point.yml
@@ -24,13 +24,9 @@ items:
       soft_limit_height: null
       hard_limit_width: null
       hard_limit_height: null
-      _core:
-        default_config_hash: flCi9IdafdLXlJqvoHguutUOiC05-aynK4niYN4YZ3o
   -
     collection: ''
     name: focal_point.settings
     data:
       crop_type: focal_point
       default_value: '50,50'
-      _core:
-        default_config_hash: 8JOAPEbjHMB4rDFCsu3EXEx6L2UDQ5SSDyN0d7S0Ic0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml b/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml
deleted file mode 100644
index 2caa2f9..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-uuid: 112fc9df-12c5-47c2-b337-13ca9ae78619
-langcode: en
-status: true
-dependencies:
-  module:
-    - footnotes
-id: config_sync.module.footnotes
-snapshotSet: config_sync
-extensionType: module
-extensionName: footnotes
-items:
-  -
-    collection: ''
-    name: editor.editor.footnote
-    data:
-      status: true
-      dependencies:
-        config:
-          - filter.format.footnote
-        module:
-          - ckeditor5
-      format: footnote
-      editor: ckeditor5
-      settings:
-        toolbar:
-          items:
-            - bold
-            - italic
-            - link
-      image_upload: {  }
-      _core:
-        default_config_hash: SyHxfjreOgdyYXaIXOlKvLazJjPl6X-6ywdJeSruOzg
-  -
-    collection: ''
-    name: filter.format.footnote
-    data:
-      status: true
-      dependencies:
-        module:
-          - footnotes
-      name: Footnote
-      format: footnote
-      filters:
-        filter_html:
-          id: filter_html
-          provider: filter
-          status: true
-          weight: -10
-          settings:
-            allowed_html: '<br> <p> <strong> <em> <a href>'
-            filter_html_help: true
-            filter_html_nofollow: false
-        filter_footnotes:
-          id: filter_footnotes
-          provider: footnotes
-          status: false
-          weight: 0
-          settings:
-            footnotes_collapse: false
-            footnotes_css: true
-            footnotes_dialog: false
-            footnotes_footer_disable: false
-      _core:
-        default_config_hash: SYAah-i4HbJnc3ZnKC9NmY4M0UAFYpfobYzxg0eMunM
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.geo_citation.yml b/config/sync/config_snapshot.snapshot.config_sync.module.geo_citation.yml
deleted file mode 100644
index ea5b97c..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.geo_citation.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 0bfcde9c-b413-4ee6-ab85-c4c823b7b0cf
-langcode: en
-status: true
-dependencies:
-  module:
-    - geo_citation
-id: config_sync.module.geo_citation
-snapshotSet: config_sync
-extensionType: module
-extensionName: geo_citation
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.geo_upgrade.yml b/config/sync/config_snapshot.snapshot.config_sync.module.geo_upgrade.yml
index 3bf0253..f9ac5b8 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.geo_upgrade.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.geo_upgrade.yml
@@ -25,5 +25,3 @@ items:
         enforced:
           module:
             - geo_upgrade
-      _core:
-        default_config_hash: qrV84-4qLrEFSQJkWXn80yslYe3h2wodjTiKPxACrI8
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.google_analytics.yml b/config/sync/config_snapshot.snapshot.config_sync.module.google_analytics.yml
deleted file mode 100644
index c656ad6..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.google_analytics.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-uuid: 67f6d737-d57d-473f-9d08-d615a61d68dd
-langcode: en
-status: true
-dependencies:
-  module:
-    - google_analytics
-id: config_sync.module.google_analytics
-snapshotSet: config_sync
-extensionType: module
-extensionName: google_analytics
-items:
-  -
-    collection: ''
-    name: google_analytics.settings
-    data:
-      account: ''
-      domain_mode: 0
-      cross_domains: ''
-      visibility:
-        request_path_mode: 0
-        request_path_pages: |-
-          /admin
-          /admin/*
-          /batch
-          /node/add*
-          /node/*/*
-          /user/*/*
-        user_role_mode: 0
-        user_role_roles: {  }
-        user_account_mode: 1
-      track:
-        outbound: true
-        mailto: true
-        tel: true
-        files: true
-        files_extensions: '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip'
-        colorbox: true
-        linkid: false
-        urlfragments: false
-        userid: false
-        messages: {  }
-        site_search: false
-        adsense: false
-        displayfeatures: true
-      privacy:
-        anonymizeip: true
-      custom:
-        parameters: {  }
-      codesnippet:
-        create: {  }
-        before: ''
-        after: ''
-      translation_set: false
-      cache: false
-      debug: false
-      _core:
-        default_config_hash: dwMYPgAnj9KBO77SLEv9Z42NDJAbuxe0uU9eGC8qw3M
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml b/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml
index 4ac536a..fa290ad 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml
@@ -14,5 +14,4 @@ items:
     name: hal.settings
     data:
       link_domain: null
-      _core:
-        default_config_hash: YD6v6hkrHtj51mcZHn6s2HulUJHWVZ_D7Y_SllXF6WE
+      bc_file_uri_as_url_normalizer: false
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.honeypot.yml b/config/sync/config_snapshot.snapshot.config_sync.module.honeypot.yml
deleted file mode 100644
index 3c9e978..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.honeypot.yml
+++ /dev/null
@@ -1,102 +0,0 @@
-uuid: d580896c-bb86-4366-beb9-6f12f2e9ed92
-langcode: en
-status: true
-dependencies:
-  module:
-    - honeypot
-id: config_sync.module.honeypot
-snapshotSet: config_sync
-extensionType: module
-extensionName: honeypot
-items:
-  -
-    collection: ''
-    name: honeypot.settings
-    data:
-      unprotected_forms:
-        - user_login_form
-        - search_form
-        - search_block_form
-        - views_exposed_form
-        - honeypot_settings_form
-      protect_all_forms: false
-      log: false
-      element_name: url
-      time_limit: 5
-      expire: 300
-      form_settings:
-        user_register_form: false
-        user_pass: false
-        feedback_contact_message_form: false
-        _contact_message_form: false
-      _core:
-        default_config_hash: 9bVDfWSa_In6VzTXmy04jJ_3ZQobihKjO9isuuUCPaw
-  -
-    collection: ''
-    name: tour.tour.honeypot
-    data:
-      id: honeypot
-      module: honeypot
-      label: Honeypot
-      langcode: en
-      routes:
-        -
-          route_name: honeypot.config
-      tips:
-        honeypot-configuration:
-          id: honeypot-configuration
-          plugin: text
-          label: Honeypot
-          weight: -10
-          body: "Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots.\r\n\r\nClick Next to be guided through this configuration page."
-          position: top-start
-        protect-all-forms:
-          id: protect-all-forms
-          plugin: text
-          label: 'Protect all forms'
-          weight: -9
-          selector: '#edit-protect-all-forms'
-          body: "Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed.\r\n\r\nNote: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time."
-          position: bottom-start
-        log-blocked-form-submissions:
-          id: log-blocked-form-submissions
-          plugin: text
-          label: 'Log blocked form submissions'
-          weight: -8
-          selector: '#edit-log'
-          body: 'Check this box to log every form submission using watchdog. If you have Database Logging enabled, you can view these log entries in the Recent log messages page under Reports.'
-          position: bottom-start
-        honeypot-element-name:
-          id: honeypot-element-name
-          plugin: text
-          label: 'Honeypot Element Name'
-          weight: -7
-          selector: '#edit-element-name'
-          body: "Spam bots typically fill out any field they believe will help get links back to their site, so tempting them with a field named something like 'url', 'homepage', or 'link' makes it hard for them to resist filling in the field—and easy to catch them in the trap and reject their submissions!"
-          position: top-start
-        honeypot-time-limit:
-          id: honeypot-time-limit
-          plugin: text
-          label: 'Honeypot Time Limit'
-          weight: -6
-          selector: '#edit-time-limit'
-          body: "If you enter a positive value, Honeypot will require that all protected forms take at least that many seconds long to fill out. Most forms take at least 5-10 seconds to complete (if you're a human), so setting this to a value < 5 will help protect against spam bots. Set to 0 to disable."
-          position: top-start
-        honeypot-expire:
-          id: honeypot-expire
-          plugin: text
-          label: 'Honeypot Expire'
-          weight: -5
-          selector: '#edit-expire'
-          body: "If you enter a positive value, Honeypot will require that all protected forms take at least that many seconds long to fill out. Most forms take at least 5-10 seconds to complete (if you're a human), so setting this to a value < 5 will help protect against spam bots. Set to 0 to disable."
-          position: top-start
-        honeypot-form-specific-settings:
-          id: honeypot-form-specific-settings
-          plugin: text
-          label: 'Honeypot form-specific settings'
-          weight: -4
-          selector: '#edit-form-settings'
-          body: 'If you would like to choose particular forms to be protected by Honeypot, check the forms you wish to protect in this section. Most common types of forms are available for protection.'
-          position: top-start
-      _core:
-        default_config_hash: A_dlRbNEX9_hOqUkQ5m4AskEmat7VEA8qvFt7tVeufQ
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.image.yml b/config/sync/config_snapshot.snapshot.config_sync.module.image.yml
index 06c23ca..5c882e0 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.image.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.image.yml
@@ -16,8 +16,6 @@ items:
       preview_image: core/modules/image/sample.png
       allow_insecure_derivatives: false
       suppress_itok_output: false
-      _core:
-        default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw
   -
     collection: ''
     name: image.style.large
@@ -36,8 +34,6 @@ items:
             width: 480
             height: 480
             upscale: false
-      _core:
-        default_config_hash: J2n0RpFzS0-bgSyxjs6rSdgxB1rb-bTAgqywNx_964M
   -
     collection: ''
     name: image.style.medium
@@ -56,8 +52,6 @@ items:
             width: 220
             height: 220
             upscale: false
-      _core:
-        default_config_hash: Y9NmnZHQq20ASSyTNA6JnwtWrJJiSajOehGDtmUFdM0
   -
     collection: ''
     name: image.style.thumbnail
@@ -76,25 +70,3 @@ items:
             width: 100
             height: 100
             upscale: false
-      _core:
-        default_config_hash: cCiWdBHgLwj5omG35lsKc4LkW4MBdmcctkVop4ol5x0
-  -
-    collection: ''
-    name: image.style.wide
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      name: wide
-      label: 'Wide (1090)'
-      effects:
-        09959c15-59ce-4f6d-90df-e2d7cf32bce5:
-          uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5
-          id: image_scale
-          weight: 1
-          data:
-            width: 1090
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: LswCVLg8z4Zk1u6pV1Dpj1qUj5YY2CQ7_ojx7bJQ8qk
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.image_widget_crop.yml b/config/sync/config_snapshot.snapshot.config_sync.module.image_widget_crop.yml
deleted file mode 100644
index e9aeb4d..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.image_widget_crop.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-uuid: 6343a179-9aa1-44fa-802d-fcdf473575d7
-langcode: en
-status: true
-dependencies:
-  module:
-    - image_widget_crop
-id: config_sync.module.image_widget_crop
-snapshotSet: config_sync
-extensionType: module
-extensionName: image_widget_crop
-items:
-  -
-    collection: ''
-    name: image.style.crop_thumbnail
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      name: crop_thumbnail
-      label: 'Crop thumbnail'
-      effects:
-        8fc26706-68dc-4eb7-8121-33e3936ed55f:
-          uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f
-          id: image_scale
-          weight: 1
-          data:
-            width: 400
-            height: null
-            upscale: false
-      _core:
-        default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0
-  -
-    collection: ''
-    name: image_widget_crop.settings
-    data:
-      settings:
-        library_url: ''
-        css_url: ''
-        crop_preview_image_style: crop_thumbnail
-        crop_list: {  }
-        crop_types_required: {  }
-        warn_multiple_usages: false
-        show_default_crop: true
-        notify_apply: false
-        notify_update: true
-      _core:
-        default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.insert.yml b/config/sync/config_snapshot.snapshot.config_sync.module.insert.yml
deleted file mode 100644
index 7745aaa..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.insert.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 35ca2aaa-88da-409d-83ff-9aeef7204bb3
-langcode: en
-status: true
-dependencies:
-  module:
-    - insert
-id: config_sync.module.insert
-snapshotSet: config_sync
-extensionType: module
-extensionName: insert
-items:
-  -
-    collection: ''
-    name: insert.config
-    data:
-      text_formats: {  }
-      absolute: false
-      file_field_images_enabled: false
-      widgets:
-        file:
-          - file_generic
-        image:
-          - image_image
-      css_classes:
-        file: {  }
-        image: {  }
-      file_extensions:
-        audio:
-          - mp3
-        video:
-          - mp4
-      _core:
-        default_config_hash: n5mlpvT_JvAQDFdotgikrUvdzuhlUIjltA4S04wVZAY
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.linkit.yml b/config/sync/config_snapshot.snapshot.config_sync.module.linkit.yml
deleted file mode 100644
index df879ae..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.linkit.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-uuid: 28d62a88-d0dc-4e8c-a9b1-683b966b4138
-langcode: en
-status: true
-dependencies:
-  module:
-    - linkit
-id: config_sync.module.linkit
-snapshotSet: config_sync
-extensionType: module
-extensionName: linkit
-items:
-  -
-    collection: ''
-    name: image.style.linkit_result_thumbnail
-    data:
-      langcode: en
-      status: true
-      dependencies: {  }
-      name: linkit_result_thumbnail
-      label: 'Linkit result thumbnail'
-      effects:
-        2943df29-38ea-459c-ba1d-290489bb1807:
-          uuid: 2943df29-38ea-459c-ba1d-290489bb1807
-          id: image_scale_and_crop
-          weight: 1
-          data:
-            width: 50
-            height: 50
-            anchor: center-center
-      _core:
-        default_config_hash: PY0kMp7KIxvU4kBi5mcnD_DHTKUc1OkYCfaPliXjpa8
-  -
-    collection: ''
-    name: linkit.linkit_profile.default
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - node
-      id: default
-      label: Default
-      description: 'A default Linkit profile'
-      matchers:
-        556010a3-e317-48b3-b4ed-854c10f4b950:
-          uuid: 556010a3-e317-48b3-b4ed-854c10f4b950
-          id: 'entity:node'
-          weight: 0
-          settings:
-            metadata: '[node:content-type:name] #[node:nid] | [node:created:medium] by [node:author]'
-            bundles: {  }
-            group_by_bundle: false
-            include_unpublished: false
-            substitution_type: canonical
-            limit: 100
-      _core:
-        default_config_hash: 0Jw_BFJCCtWk187tIYvME58VFpYwPaAdrc4eRtAyHH0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.mailchimp.yml b/config/sync/config_snapshot.snapshot.config_sync.module.mailchimp.yml
deleted file mode 100644
index b009b82..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.mailchimp.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-uuid: 6c898862-0b78-4843-a0dc-cd1cc3fd9184
-langcode: en
-status: true
-dependencies:
-  module:
-    - mailchimp
-id: config_sync.module.mailchimp
-snapshotSet: config_sync
-extensionType: module
-extensionName: mailchimp
-items:
-  -
-    collection: ''
-    name: mailchimp.settings
-    data:
-      api_key: null
-      api_timeout: 10
-      domain: ''
-      use_oauth: false
-      cron: false
-      batch_limit: 100
-      api_classname: Mailchimp\Mailchimp
-      test_mode: false
-      optin_check_email_msg: 'Please check your email to confirm your subscription.'
-      _core:
-        default_config_hash: B-qrrA7oRcyy2W-a4OjHSgOhpMNFBK4dP9yb2KHC6v4
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.media.yml b/config/sync/config_snapshot.snapshot.config_sync.module.media.yml
deleted file mode 100644
index 3fff518..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.media.yml
+++ /dev/null
@@ -1,1023 +0,0 @@
-uuid: 096d654d-e0b0-4038-ac29-dd62fcbd5b2f
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-id: config_sync.module.media
-snapshotSet: config_sync
-extensionType: module
-extensionName: media
-items:
-  -
-    collection: ''
-    name: core.entity_view_mode.media.full
-    data:
-      langcode: en
-      status: false
-      dependencies:
-        module:
-          - media
-      id: media.full
-      label: 'Full content'
-      description: ''
-      targetEntityType: media
-      cache: true
-      _core:
-        default_config_hash: dTfAUHooYV0uOVPO3saGpgv-c5PppJXDwxvwRTJOycM
-  -
-    collection: ''
-    name: media.settings
-    data:
-      icon_base_uri: 'public://media-icons/generic'
-      iframe_domain: null
-      oembed_providers_url: 'https://oembed.com/providers.json'
-      standalone_url: false
-      _core:
-        default_config_hash: WCFqLQAxMw1weToDJEhfnW1Z-iOF7cqMdL8X7YTFxBA
-  -
-    collection: ''
-    name: system.action.media_delete_action
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media_delete_action
-      label: 'Delete media'
-      type: media
-      plugin: 'entity:delete_action:media'
-      configuration: {  }
-      _core:
-        default_config_hash: FrZy1tmuXJcOxhXlBoI1Hsnen5TT-9OCC1iolWH84go
-  -
-    collection: ''
-    name: system.action.media_publish_action
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media_publish_action
-      label: 'Publish media'
-      type: media
-      plugin: 'entity:publish_action:media'
-      configuration: {  }
-      _core:
-        default_config_hash: nh83qNNrmWE-CDdHz2MdFOAk60T9mzv3R-MaKfZR2jw
-  -
-    collection: ''
-    name: system.action.media_save_action
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media_save_action
-      label: 'Save media'
-      type: media
-      plugin: 'entity:save_action:media'
-      configuration: {  }
-      _core:
-        default_config_hash: VVyUA6PIaVeGtcIbgEWqJ6SYDiJdReBeojFswURFpKs
-  -
-    collection: ''
-    name: system.action.media_unpublish_action
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-      id: media_unpublish_action
-      label: 'Unpublish media'
-      type: media
-      plugin: 'entity:unpublish_action:media'
-      configuration: {  }
-      _core:
-        default_config_hash: CsK6TseQ2DatEbZgbd30swOlZ28_HHwAESU2LvEnWq0
-  -
-    collection: ''
-    name: views.view.media
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - image.style.thumbnail
-        module:
-          - image
-          - media
-          - user
-      id: media
-      label: Media
-      module: views
-      description: 'Find and manage media.'
-      tag: ''
-      base_table: media_field_data
-      base_field: mid
-      display:
-        default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
-          display_options:
-            title: Media
-            fields:
-              media_bulk_form:
-                id: media_bulk_form
-                table: media
-                field: media_bulk_form
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: bulk_form
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                action_title: Action
-                include_exclude: exclude
-                selected_actions: {  }
-              thumbnail__target_id:
-                id: thumbnail__target_id
-                table: media_field_data
-                field: thumbnail__target_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: thumbnail
-                plugin_id: field
-                label: Thumbnail
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: target_id
-                type: image
-                settings:
-                  image_link: ''
-                  image_style: thumbnail
-                  image_loading:
-                    attribute: lazy
-                group_column: ''
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: media
-                plugin_id: field
-                label: 'Media name'
-                exclude: false
-                alter:
-                  alter_text: false
-                  make_link: false
-                  absolute: false
-                  word_boundary: false
-                  ellipsis: false
-                  strip_tags: false
-                  trim: false
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: string
-                settings:
-                  link_to_entity: true
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              bundle:
-                id: bundle
-                table: media_field_data
-                field: bundle
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: bundle
-                plugin_id: field
-                label: Type
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: target_id
-                type: entity_reference_label
-                settings:
-                  link: false
-                group_column: target_id
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              uid:
-                id: uid
-                table: media_field_data
-                field: uid
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: uid
-                plugin_id: field
-                label: Author
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: target_id
-                type: entity_reference_label
-                settings:
-                  link: true
-                group_column: target_id
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              status:
-                id: status
-                table: media_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: status
-                plugin_id: field
-                label: Status
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: boolean
-                settings:
-                  format: custom
-                  format_custom_false: Unpublished
-                  format_custom_true: Published
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              changed:
-                id: changed
-                table: media_field_data
-                field: changed
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: changed
-                plugin_id: field
-                label: Updated
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: timestamp
-                settings:
-                  date_format: short
-                  custom_date_format: ''
-                  timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              operations:
-                id: operations
-                table: media
-                field: operations
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: entity_operations
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                destination: true
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 50
-                total_pages: null
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Filter
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access media overview'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'No media available.'
-                tokenize: false
-            sorts:
-              created:
-                id: created
-                table: media_field_data
-                field: created
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: created
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: created
-                exposed: false
-                granularity: second
-            arguments: {  }
-            filters:
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: name_op
-                  label: 'Media name'
-                  description: ''
-                  use_operator: false
-                  operator: name_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: name
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              bundle:
-                id: bundle
-                table: media_field_data
-                field: bundle
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: bundle
-                plugin_id: bundle
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: bundle_op
-                  label: Type
-                  description: ''
-                  use_operator: false
-                  operator: bundle_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: type
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              status:
-                id: status
-                table: media_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: status
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: ''
-                  label: 'True'
-                  description: null
-                  use_operator: false
-                  operator: status_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: status
-                  required: true
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: true
-                group_info:
-                  label: 'Published status'
-                  description: ''
-                  identifier: status
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items:
-                    1:
-                      title: Published
-                      operator: '='
-                      value: '1'
-                    2:
-                      title: Unpublished
-                      operator: '='
-                      value: '0'
-              status_extra:
-                id: status_extra
-                table: media_field_data
-                field: status_extra
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: media_status
-                operator: '='
-                value: ''
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              langcode:
-                id: langcode
-                table: media_field_data
-                field: langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: langcode
-                plugin_id: language
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: langcode_op
-                  label: Language
-                  description: ''
-                  use_operator: false
-                  operator: langcode_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: langcode
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  name: name
-                  bundle: bundle
-                  changed: changed
-                  uid: uid
-                  status: status
-                  thumbnail__target_id: thumbnail__target_id
-                default: changed
-                info:
-                  name:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  bundle:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  changed:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  uid:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  status:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  thumbnail__target_id:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: false
-                summary: ''
-                empty_table: true
-                caption: ''
-                description: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: 0
-            contexts:
-              - 'languages:language_content'
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - user
-              - user.permissions
-            tags: {  }
-        media_page_list:
-          id: media_page_list
-          display_title: Media
-          display_plugin: page
-          position: 1
-          display_options:
-            display_description: ''
-            display_extenders: {  }
-            path: admin/content/media
-            menu:
-              type: tab
-              title: Media
-              description: ''
-              weight: 0
-              expanded: false
-              menu_name: main
-              parent: ''
-              context: '0'
-          cache_metadata:
-            max-age: 0
-            contexts:
-              - 'languages:language_content'
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - user
-              - user.permissions
-            tags: {  }
-      _core:
-        default_config_hash: 27loqXfECE8tWznkMVYi7qOU8oCYFgn5MEysgZQQOV8
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.media_library.yml b/config/sync/config_snapshot.snapshot.config_sync.module.media_library.yml
deleted file mode 100644
index f72a065..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.media_library.yml
+++ /dev/null
@@ -1,1483 +0,0 @@
-uuid: dd0f8c66-f0b8-49d9-8348-400e09b0bcbd
-langcode: en
-status: true
-dependencies:
-  module:
-    - media_library
-id: config_sync.module.media_library
-snapshotSet: config_sync
-extensionType: module
-extensionName: media_library
-items:
-  -
-    collection: ''
-    name: core.entity_form_mode.media.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-        enforced:
-          module:
-            - media_library
-      id: media.media_library
-      label: 'Media library'
-      description: ''
-      targetEntityType: media
-      cache: true
-      _core:
-        default_config_hash: 04_dAqpWYP1WmsXZ7IXJ7-yarCvNddD10EUkBDtIFy4
-  -
-    collection: ''
-    name: core.entity_view_mode.media.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - media
-        enforced:
-          module:
-            - media_library
-      id: media.media_library
-      label: 'Media library'
-      description: ''
-      targetEntityType: media
-      cache: true
-      _core:
-        default_config_hash: 04_dAqpWYP1WmsXZ7IXJ7-yarCvNddD10EUkBDtIFy4
-  -
-    collection: ''
-    name: image.style.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        enforced:
-          module:
-            - media_library
-      name: media_library
-      label: 'Media Library thumbnail (220×220)'
-      effects:
-        75b076a8-1234-4b42-85db-bf377c4d8d5f:
-          uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f
-          id: image_scale
-          weight: 0
-          data:
-            width: 220
-            height: 220
-            upscale: false
-      _core:
-        default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8
-  -
-    collection: ''
-    name: media_library.settings
-    data:
-      advanced_ui: false
-      _core:
-        default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60
-  -
-    collection: ''
-    name: views.view.media_library
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - core.entity_view_mode.media.media_library
-          - image.style.media_library
-        module:
-          - image
-          - media
-          - media_library
-          - user
-        enforced:
-          module:
-            - media_library
-      id: media_library
-      label: 'Media library'
-      module: views
-      description: 'Find and manage media.'
-      tag: ''
-      base_table: media_field_data
-      base_field: mid
-      display:
-        default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
-          display_options:
-            title: Media
-            fields:
-              media_bulk_form:
-                id: media_bulk_form
-                table: media
-                field: media_bulk_form
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: bulk_form
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                action_title: Action
-                include_exclude: exclude
-                selected_actions: {  }
-              rendered_entity:
-                id: rendered_entity
-                table: media
-                field: rendered_entity
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: rendered_entity
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                view_mode: media_library
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 24
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '6, 12, 24, 48'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            exposed_form:
-              type: basic
-              options:
-                submit_button: 'Apply filters'
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: false
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access media overview'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'No media available.'
-                tokenize: false
-            sorts:
-              created:
-                id: created
-                table: media_field_data
-                field: created
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: created
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: 'Newest first'
-                  field_identifier: created
-                exposed: true
-                granularity: second
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: standard
-                order: ASC
-                expose:
-                  label: 'Name (A-Z)'
-                  field_identifier: name
-                exposed: true
-              name_1:
-                id: name_1
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: standard
-                order: DESC
-                expose:
-                  label: 'Name (Z-A)'
-                  field_identifier: name_1
-                exposed: true
-            filters:
-              status:
-                id: status
-                table: media_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: status
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: ''
-                  label: 'Publishing status'
-                  description: null
-                  use_operator: false
-                  operator: status_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: status
-                  required: true
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: true
-                group_info:
-                  label: Published
-                  description: ''
-                  identifier: status
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items:
-                    1:
-                      title: Published
-                      operator: '='
-                      value: '1'
-                    2:
-                      title: Unpublished
-                      operator: '='
-                      value: '0'
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: name_op
-                  label: Name
-                  description: ''
-                  use_operator: false
-                  operator: name_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: name
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              bundle:
-                id: bundle
-                table: media_field_data
-                field: bundle
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: bundle
-                plugin_id: bundle
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: bundle_op
-                  label: 'Media type'
-                  description: ''
-                  use_operator: false
-                  operator: bundle_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: type
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: 'Media type'
-                  description: null
-                  identifier: bundle
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items:
-                    1: {  }
-                    2: {  }
-                    3: {  }
-              status_extra:
-                id: status_extra
-                table: media_field_data
-                field: status_extra
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: media_status
-                operator: '='
-                value: ''
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              langcode:
-                id: langcode
-                table: media_field_data
-                field: langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: langcode
-                plugin_id: language
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: langcode_op
-                  label: Language
-                  description: ''
-                  use_operator: false
-                  operator: langcode_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: langcode
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            style:
-              type: default
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
-            css_class: ''
-            use_ajax: true
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: 0
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - 'url.query_args:sort_by'
-              - user
-              - user.permissions
-            tags: {  }
-        page:
-          id: page
-          display_title: Page
-          display_plugin: page
-          position: 1
-          display_options:
-            fields:
-              media_bulk_form:
-                id: media_bulk_form
-                table: media
-                field: media_bulk_form
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: bulk_form
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                action_title: Action
-                include_exclude: exclude
-                selected_actions: {  }
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: field
-                label: ''
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: value
-                type: string
-                settings:
-                  link_to_entity: false
-                group_column: value
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              edit_media:
-                id: edit_media
-                table: media
-                field: edit_media
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: entity_link_edit
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: 'Edit {{ name }}'
-                  make_link: true
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: 'Edit {{ name }}'
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: '0'
-                element_wrapper_class: ''
-                element_default_classes: false
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                text: Edit
-                output_url_as_text: false
-                absolute: false
-              delete_media:
-                id: delete_media
-                table: media
-                field: delete_media
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: entity_link_delete
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: 'Delete {{ name }}'
-                  make_link: true
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: 'Delete {{ name }}'
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: '0'
-                element_wrapper_class: ''
-                element_default_classes: false
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                text: Delete
-                output_url_as_text: false
-                absolute: false
-              rendered_entity:
-                id: rendered_entity
-                table: media
-                field: rendered_entity
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: rendered_entity
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                view_mode: media_library
-            defaults:
-              fields: false
-            display_extenders: {  }
-            path: admin/content/media-grid
-          cache_metadata:
-            max-age: 0
-            contexts:
-              - 'languages:language_content'
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - 'url.query_args:sort_by'
-              - user
-              - user.permissions
-            tags: {  }
-        widget:
-          id: widget
-          display_title: Widget
-          display_plugin: page
-          position: 2
-          display_options:
-            fields:
-              media_library_select_form:
-                id: media_library_select_form
-                table: media
-                field: media_library_select_form
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: media_library_select_form
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              rendered_entity:
-                id: rendered_entity
-                table: media
-                field: rendered_entity
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                plugin_id: rendered_entity
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                view_mode: media_library
-            access:
-              type: perm
-              options:
-                perm: 'view media'
-            arguments:
-              bundle:
-                id: bundle
-                table: media_field_data
-                field: bundle
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: bundle
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 24
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            filters:
-              status:
-                id: status
-                table: media_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: status
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: name_op
-                  label: Name
-                  description: ''
-                  use_operator: false
-                  operator: name_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: name
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              default_langcode:
-                id: default_langcode
-                table: media_field_data
-                field: default_langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: default_langcode
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            defaults:
-              access: false
-              css_class: false
-              fields: false
-              arguments: false
-              filters: false
-              filter_groups: false
-              header: false
-            css_class: ''
-            display_description: ''
-            header:
-              display_link_grid:
-                id: display_link_grid
-                table: views
-                field: display_link
-                plugin_id: display_link
-                label: Grid
-                empty: true
-                display_id: widget
-              display_link_table:
-                id: display_link_table
-                table: views
-                field: display_link
-                plugin_id: display_link
-                label: Table
-                empty: true
-                display_id: widget_table
-            rendering_language: '***LANGUAGE_language_interface***'
-            display_extenders: {  }
-            path: admin/content/media-widget
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - 'url.query_args:sort_by'
-              - user.permissions
-            tags: {  }
-        widget_table:
-          id: widget_table
-          display_title: 'Widget (table)'
-          display_plugin: page
-          position: 3
-          display_options:
-            fields:
-              media_library_select_form:
-                id: media_library_select_form
-                table: media
-                field: media_library_select_form
-                relationship: none
-                entity_type: media
-                plugin_id: media_library_select_form
-                label: ''
-                element_class: ''
-                element_wrapper_class: ''
-              thumbnail__target_id:
-                id: thumbnail__target_id
-                table: media_field_data
-                field: thumbnail__target_id
-                relationship: none
-                entity_type: media
-                entity_field: thumbnail
-                plugin_id: field
-                label: Thumbnail
-                type: image
-                settings:
-                  image_link: ''
-                  image_style: media_library
-                  image_loading:
-                    attribute: eager
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                entity_type: media
-                entity_field: name
-                plugin_id: field
-                label: Name
-                type: string
-                settings:
-                  link_to_entity: false
-              uid:
-                id: uid
-                table: media_field_revision
-                field: uid
-                relationship: none
-                entity_type: media
-                entity_field: uid
-                plugin_id: field
-                label: Author
-                type: entity_reference_label
-                settings:
-                  link: true
-              changed:
-                id: changed
-                table: media_field_data
-                field: changed
-                relationship: none
-                entity_type: media
-                entity_field: changed
-                plugin_id: field
-                label: Updated
-                type: timestamp
-                settings:
-                  date_format: short
-                  custom_date_format: ''
-                  timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-            access:
-              type: perm
-              options:
-                perm: 'view media'
-            arguments:
-              bundle:
-                id: bundle
-                table: media_field_data
-                field: bundle
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: bundle
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 24
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            filters:
-              status:
-                id: status
-                table: media_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: status
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              name:
-                id: name
-                table: media_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: name
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: name_op
-                  label: Name
-                  description: ''
-                  use_operator: false
-                  operator: name_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: name
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              default_langcode:
-                id: default_langcode
-                table: media_field_data
-                field: default_langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: media
-                entity_field: default_langcode
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            style:
-              type: table
-              options:
-                row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select'
-                default_row_class: true
-            row:
-              type: fields
-            defaults:
-              access: false
-              css_class: false
-              style: false
-              row: false
-              fields: false
-              arguments: false
-              filters: false
-              filter_groups: false
-              header: false
-            css_class: ''
-            header:
-              display_link_grid:
-                id: display_link_grid
-                table: views
-                field: display_link
-                plugin_id: display_link
-                label: Grid
-                empty: true
-                display_id: widget
-              display_link_table:
-                id: display_link_table
-                table: views
-                field: display_link
-                plugin_id: display_link
-                label: Table
-                empty: true
-                display_id: widget_table
-            rendering_language: '***LANGUAGE_language_interface***'
-            display_extenders: {  }
-            path: admin/content/media-widget-table
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-              - 'url.query_args:sort_by'
-              - user.permissions
-            tags: {  }
-      _core:
-        default_config_hash: iFhkNhGoobQ7V0PJEH_Io9Vlli35kiaeQfdqUttfQeU
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml b/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml
index 5ce5b86..3a2ae95 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml
@@ -14,5 +14,3 @@ items:
     name: menu_ui.settings
     data:
       override_parent_selector: false
-      _core:
-        default_config_hash: SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml b/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml
index cf0e684..306cd82 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml
@@ -19,11 +19,8 @@ items:
       id: '403'
       label: '403 access denied'
       tags:
-        robots: noindex
         canonical_url: '[site:url]'
         shortlink: '[site:url]'
-      _core:
-        default_config_hash: RDCkFL0NDt75Gwioooxo1iuA1S50xTVsBOgX__c6wTw
   -
     collection: ''
     name: metatag.metatag_defaults.404
@@ -36,8 +33,6 @@ items:
       tags:
         canonical_url: '[site:url]'
         shortlink: '[site:url]'
-      _core:
-        default_config_hash: puBstSLDz8mbaWU357zaqQDBGMGsJzG0j-TQNQkjg20
   -
     collection: ''
     name: metatag.metatag_defaults.front
@@ -50,8 +45,6 @@ items:
       tags:
         canonical_url: '[site:url]'
         shortlink: '[site:url]'
-      _core:
-        default_config_hash: 1noCXlegCr5HFehQRF1ViXy1jhU1jZ_sNN99a8Sj5jo
   -
     collection: ''
     name: metatag.metatag_defaults.global
@@ -64,8 +57,6 @@ items:
       tags:
         canonical_url: '[current-page:url]'
         title: '[current-page:title] | [site:name]'
-      _core:
-        default_config_hash: sL588ui1E_8-2c_UupwyYxcqX2OVyMFp3HTLbbFqvPc
   -
     collection: ''
     name: metatag.metatag_defaults.node
@@ -79,8 +70,6 @@ items:
         title: '[node:title] | [site:name]'
         description: '[node:summary]'
         canonical_url: '[node:url]'
-      _core:
-        default_config_hash: rpwvgyEURXLz_JjgMCrkS1rUv-0k3L79BpO-ReN7fDI
   -
     collection: ''
     name: metatag.metatag_defaults.taxonomy_term
@@ -94,8 +83,6 @@ items:
         canonical_url: '[term:url]'
         description: '[term:description]'
         title: '[term:name] | [site:name]'
-      _core:
-        default_config_hash: 92bXZdyYJ5xqukdfmGRr_CYcwm1vfuS8b8aJ7X_G7E0
   -
     collection: ''
     name: metatag.metatag_defaults.user
@@ -109,16 +96,3 @@ items:
         canonical_url: '[user:url]'
         description: '[site:name]'
         title: '[user:display-name] | [site:name]'
-      _core:
-        default_config_hash: MvQPTbQx0Vxwy0ordSHyixdZmLCMpvMdLD69dlwkrKc
-  -
-    collection: ''
-    name: metatag.settings
-    data:
-      entity_type_groups: {  }
-      tag_trim_method: beforeValue
-      tag_trim_maxlength: {  }
-      tag_scroll_max_height: ''
-      use_maxlength: true
-      _core:
-        default_config_hash: 3mgYDspyj5REgG6ooA1izlcMzEs34kHPFUOMIXeDOco
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
index f8de121..80fae16 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
@@ -18,5 +18,3 @@ items:
         - 'Drupal 7'
       follow_up_migration_tags:
         - 'Follow-up migration'
-      _core:
-        default_config_hash: 1daEO2inZc1i3d0Sn-ADIq9mUIU7tSLCxn579NT6f2g
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.minimal.yml b/config/sync/config_snapshot.snapshot.config_sync.module.minimal.yml
index 51740b2..20caa04 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.minimal.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.minimal.yml
@@ -9,190 +9,6 @@ snapshotSet: config_sync
 extensionType: module
 extensionName: minimal
 items:
-  -
-    collection: ''
-    name: block.block.stark_admin
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - system.menu.admin
-        module:
-          - system
-        theme:
-          - stark
-      id: stark_admin
-      theme: stark
-      region: sidebar_first
-      weight: 1
-      provider: null
-      plugin: 'system_menu_block:admin'
-      settings:
-        id: 'system_menu_block:admin'
-        label: Administration
-        label_display: visible
-        provider: system
-        level: 1
-        depth: 0
-        expand_all_items: false
-      visibility: {  }
-      _core:
-        default_config_hash: 5MfnyzXbzrDa_OJuFfZfpiBYkMiuRp4mk4GM7HYc8eM
-  -
-    collection: ''
-    name: block.block.stark_branding
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - system
-        theme:
-          - stark
-      id: stark_branding
-      theme: stark
-      region: header
-      weight: 0
-      provider: null
-      plugin: system_branding_block
-      settings:
-        id: system_branding_block
-        label: 'Site branding'
-        label_display: '0'
-        provider: system
-        use_site_logo: true
-        use_site_name: true
-        use_site_slogan: true
-      visibility: {  }
-      _core:
-        default_config_hash: sG8t_FghbUscJ-GrnQ8zs_vx5YM4bJCfntrK-J5HcAY
-  -
-    collection: ''
-    name: block.block.stark_local_actions
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        theme:
-          - stark
-      id: stark_local_actions
-      theme: stark
-      region: content
-      weight: -10
-      provider: null
-      plugin: local_actions_block
-      settings:
-        id: local_actions_block
-        label: 'Primary admin actions'
-        label_display: '0'
-        provider: core
-      visibility: {  }
-      _core:
-        default_config_hash: ABoKnlk20KHqZRw_2Qr4EvaFvH4lnQ2nuhunHeE1JIU
-  -
-    collection: ''
-    name: block.block.stark_local_tasks
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        theme:
-          - stark
-      id: stark_local_tasks
-      theme: stark
-      region: content
-      weight: -20
-      provider: null
-      plugin: local_tasks_block
-      settings:
-        id: local_tasks_block
-        label: Tabs
-        label_display: '0'
-        provider: core
-        primary: true
-        secondary: true
-      visibility: {  }
-      _core:
-        default_config_hash: T0wbI6qVdThbbIqXDZFg_1VZ3_ittXBdEoUH7d7ux_E
-  -
-    collection: ''
-    name: block.block.stark_messages
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - system
-        theme:
-          - stark
-      id: stark_messages
-      theme: stark
-      region: highlighted
-      weight: 0
-      provider: null
-      plugin: system_messages_block
-      settings:
-        id: system_messages_block
-        label: 'Status messages'
-        label_display: '0'
-        provider: system
-      visibility: {  }
-      _core:
-        default_config_hash: aeqlWs7HwctZeZC7ADcbxfqehJzBRfZKmuZz3DsH3_4
-  -
-    collection: ''
-    name: block.block.stark_page_title
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        theme:
-          - stark
-      id: stark_page_title
-      theme: stark
-      region: content
-      weight: -30
-      provider: null
-      plugin: page_title_block
-      settings:
-        id: page_title_block
-        label: 'Page title'
-        label_display: '0'
-        provider: core
-      visibility: {  }
-      _core:
-        default_config_hash: Oh72CHUkp6cj6dbrXMK2hzCsM05w9cHVoD22rMLQUfk
-  -
-    collection: ''
-    name: block.block.stark_tools
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - system.menu.tools
-        module:
-          - system
-        theme:
-          - stark
-      id: stark_tools
-      theme: stark
-      region: sidebar_first
-      weight: 0
-      provider: null
-      plugin: 'system_menu_block:tools'
-      settings:
-        id: 'system_menu_block:tools'
-        label: Tools
-        label_display: visible
-        provider: system
-        level: 1
-        depth: 0
-        expand_all_items: false
-      visibility: {  }
-      _core:
-        default_config_hash: UL5ZZvI0Lnp3fmVmhIDxvNI9RlMD0sfBIOi9ozr-k5o
   -
     collection: ''
     name: system.theme.global
@@ -209,15 +25,12 @@ items:
         node_user_picture: false
       logo:
         path: ''
-        url: null
+        url: ''
         use_default: true
-      _core:
-        default_config_hash: 3qY7PfXvJcCtBPQpb9FxxBgXtUGFzx8JVakfWiNNYzw
   -
     collection: ''
     name: user.settings
     data:
-      langcode: en
       anonymous: Anonymous
       verify_mail: true
       notify:
@@ -233,5 +46,4 @@ items:
       cancel_method: user_cancel_block
       password_reset_timeout: 86400
       password_strength: true
-      _core:
-        default_config_hash: '-htDFWUv1S4OlJMzta2nhFl4QbhJvu0D9xsJ-clxo-M'
+      langcode: en
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.minimalhtml.yml b/config/sync/config_snapshot.snapshot.config_sync.module.minimalhtml.yml
deleted file mode 100644
index 88a6d76..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.minimalhtml.yml
+++ /dev/null
@@ -1,112 +0,0 @@
-uuid: 4583474c-a3fe-444f-9e4b-3c3a92afa6fd
-langcode: en
-status: true
-dependencies:
-  module:
-    - minimalhtml
-id: config_sync.module.minimalhtml
-snapshotSet: config_sync
-extensionType: module
-extensionName: minimalhtml
-items:
-  -
-    collection: ''
-    name: editor.editor.minimalhtml
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        config:
-          - filter.format.minimalhtml
-        module:
-          - ckeditor
-      format: minimalhtml
-      editor: ckeditor
-      settings:
-        toolbar:
-          rows:
-            -
-              -
-                name: Formatting
-                items:
-                  - Bold
-                  - Italic
-              -
-                name: Links
-                items:
-                  - DrupalLink
-                  - DrupalUnlink
-              -
-                name: Lists
-                items:
-                  - BulletedList
-                  - NumberedList
-              -
-                name: Media
-                items:
-                  - Blockquote
-              -
-                name: Tools
-                items:
-                  - Source
-        plugins:
-          language:
-            language_list: un
-          stylescombo:
-            styles: ''
-          indentblock:
-            enable: 0
-          colorbutton:
-            colors: ''
-          linebreaks:
-            method: force
-      image_upload:
-        status: false
-        scheme: public
-        directory: inline-images
-        max_size: ''
-        max_dimensions:
-          width: null
-          height: null
-      _core:
-        default_config_hash: kP3r4Ns9C1XIg5vFA9a0mteIKThq8E_eL43z7VIZUTY
-  -
-    collection: ''
-    name: filter.format.minimalhtml
-    data:
-      langcode: en
-      status: true
-      name: 'Minimal HTML'
-      format: minimalhtml
-      weight: 0
-      filters:
-        filter_htmlcorrector:
-          id: filter_htmlcorrector
-          provider: filter
-          status: true
-          weight: 10
-          settings: {  }
-        filter_html:
-          id: filter_html
-          provider: filter
-          status: true
-          weight: -10
-          settings:
-            allowed_html: '<a href hreflang> <abbr title> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd>'
-            filter_html_help: true
-            filter_html_nofollow: false
-        filter_url:
-          id: filter_url
-          provider: filter
-          status: true
-          weight: 0
-          settings:
-            filter_url_length: 72
-        filter_autop:
-          id: filter_autop
-          provider: filter
-          status: true
-          weight: 0
-          settings: {  }
-      _core:
-        default_config_hash: 92ohirYz2djTZfHPcIDKZb7qWJfnf8PejLU9mQZs5GY
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.node.yml b/config/sync/config_snapshot.snapshot.config_sync.module.node.yml
index 9551be7..09e99bb 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.node.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.node.yml
@@ -20,11 +20,8 @@ items:
           - node
       id: node.full
       label: 'Full content'
-      description: ''
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: QJ2aZ1xfVf59aq6Pz5X7fyUOa2HxuCoTwQ_RQjoulAU
   -
     collection: ''
     name: core.entity_view_mode.node.rss
@@ -36,11 +33,8 @@ items:
           - node
       id: node.rss
       label: RSS
-      description: ''
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: l8fiAFE3Kng_6bhLlUDnVTkTDzXWxzYFrCWTrngVXEA
   -
     collection: ''
     name: core.entity_view_mode.node.search_index
@@ -52,11 +46,8 @@ items:
           - node
       id: node.search_index
       label: 'Search index'
-      description: ''
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: r_A0T3aTqGDwLyvoH7wLps-0PM--RHlS8UsiJe_Ac64
   -
     collection: ''
     name: core.entity_view_mode.node.search_result
@@ -68,11 +59,8 @@ items:
           - node
       id: node.search_result
       label: 'Search result highlighting input'
-      description: ''
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: d8wBEm7XvJ6H3S0IneDD9PfTBklPIH7GMpxElVemPf8
   -
     collection: ''
     name: core.entity_view_mode.node.teaser
@@ -84,11 +72,8 @@ items:
           - node
       id: node.teaser
       label: Teaser
-      description: ''
       targetEntityType: node
       cache: true
-      _core:
-        default_config_hash: KgGJDZFpMaz_8bTv6fN1bXS3Qi5LWmRJI9R53kEGsNQ
   -
     collection: ''
     name: field.storage.node.body
@@ -111,15 +96,11 @@ items:
       indexes: {  }
       persist_with_no_fields: true
       custom_storage: false
-      _core:
-        default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
   -
     collection: ''
     name: node.settings
     data:
       use_admin_theme: false
-      _core:
-        default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
   -
     collection: ''
     name: system.action.node_delete_action
@@ -134,8 +115,6 @@ items:
       type: node
       plugin: 'entity:delete_action:node'
       configuration: {  }
-      _core:
-        default_config_hash: t43OqwzP3CTbcAagSsWKNy6KwMm_zShXo3c4-So6rQg
   -
     collection: ''
     name: system.action.node_make_sticky_action
@@ -150,8 +129,6 @@ items:
       type: node
       plugin: node_make_sticky_action
       configuration: {  }
-      _core:
-        default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0
   -
     collection: ''
     name: system.action.node_make_unsticky_action
@@ -166,8 +143,6 @@ items:
       type: node
       plugin: node_make_unsticky_action
       configuration: {  }
-      _core:
-        default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k
   -
     collection: ''
     name: system.action.node_promote_action
@@ -182,8 +157,6 @@ items:
       type: node
       plugin: node_promote_action
       configuration: {  }
-      _core:
-        default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U
   -
     collection: ''
     name: system.action.node_publish_action
@@ -198,8 +171,6 @@ items:
       type: node
       plugin: 'entity:publish_action:node'
       configuration: {  }
-      _core:
-        default_config_hash: 2B9uF8NL5gutNKSdPRAhhAsDWFZZG1PJOBmx0aBGd_0
   -
     collection: ''
     name: system.action.node_save_action
@@ -214,8 +185,6 @@ items:
       type: node
       plugin: 'entity:save_action:node'
       configuration: {  }
-      _core:
-        default_config_hash: LhdsoZPL_pFas2fjaAWue4zvrQ_tEVofLYtcNec-JGM
   -
     collection: ''
     name: system.action.node_unpromote_action
@@ -230,8 +199,6 @@ items:
       type: node
       plugin: node_unpromote_action
       configuration: {  }
-      _core:
-        default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0
   -
     collection: ''
     name: system.action.node_unpublish_action
@@ -246,8 +213,6 @@ items:
       type: node
       plugin: 'entity:unpublish_action:node'
       configuration: {  }
-      _core:
-        default_config_hash: C7X8h9FWlwkQ9y5mnU2JzgaZICAdc6HFbPVbhvjlAYE
   -
     collection: ''
     name: views.view.archive
@@ -267,33 +232,30 @@ items:
       tag: default
       base_table: node_field_data
       base_field: nid
+      core: '8'
       display:
         default:
           id: default
-          display_title: Default
+          display_title: Master
           display_plugin: default
           position: 0
           display_options:
-            title: 'Monthly archive'
-            fields: {  }
-            pager:
-              type: mini
+            query:
+              type: views_query
               options:
-                offset: 0
-                items_per_page: 10
-                total_pages: 0
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
+                query_comment: ''
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_tags: {  }
+            title: 'Monthly archive'
+            access:
+              type: perm
+              options:
+                perm: 'access content'
+            cache:
+              type: tag
+              options: {  }
             exposed_form:
               type: basic
               options:
@@ -304,65 +266,72 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
+            pager:
+              type: mini
               options:
-                perm: 'access content'
-            cache:
-              type: tag
-              options: {  }
-            empty: {  }
+                items_per_page: 10
+                offset: 0
+                id: 0
+                total_pages: 0
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                tags:
+                  previous: ‹‹
+                  next: ››
             sorts:
               created:
                 id: created
                 table: node_field_data
                 field: created
+                order: DESC
+                plugin_id: date
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: created
-                plugin_id: date
-                order: DESC
+                exposed: false
                 expose:
                   label: ''
-                  field_identifier: created
-                exposed: false
                 granularity: second
+                entity_type: node
+                entity_field: created
             arguments:
               created_year_month:
                 id: created_year_month
                 table: node_field_data
                 field: created_year_month
-                entity_type: node
-                plugin_id: date_year_month
                 default_action: summary
                 exception:
                   title_enable: true
                 title_enable: true
                 title: '{{ arguments.created_year_month }}'
                 default_argument_type: fixed
-                summary_options:
-                  override: true
-                  items_per_page: 30
                 summary:
                   sort_order: desc
                   format: default_summary
+                summary_options:
+                  override: true
+                  items_per_page: 30
                 specify_validation: true
+                plugin_id: date_year_month
+                entity_type: node
             filters:
               status:
                 id: status
                 table: node_field_data
                 field: status
-                entity_type: node
-                entity_field: status
-                plugin_id: boolean
                 value: '1'
                 group: 0
                 expose:
                   operator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
+                plugin_id: boolean
+                entity_type: node
+                entity_field: status
               langcode:
                 id: langcode
                 table: node_field_data
@@ -370,9 +339,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
                 operator: in
                 value:
                   '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -384,8 +350,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -405,6 +369,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                plugin_id: language
+                entity_type: node
+                entity_field: langcode
             style:
               type: default
               options:
@@ -416,26 +383,20 @@ items:
               type: 'entity:node'
               options:
                 view_mode: teaser
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
             header: {  }
             footer: {  }
+            empty: {  }
+            relationships: {  }
+            fields: {  }
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         block_1:
           id: block_1
@@ -443,38 +404,38 @@ items:
           display_plugin: block
           position: 1
           display_options:
+            query:
+              type: views_query
+              options: {  }
+            defaults:
+              arguments: false
             arguments:
               created_year_month:
                 id: created_year_month
                 table: node_field_data
                 field: created_year_month
-                entity_type: node
-                plugin_id: date_year_month
                 default_action: summary
                 exception:
                   title_enable: true
                 title_enable: true
                 title: '{{ arguments.created_year_month }}'
                 default_argument_type: fixed
-                summary_options:
-                  items_per_page: 30
                 summary:
                   format: default_summary
+                summary_options:
+                  items_per_page: 30
                 specify_validation: true
-            query:
-              type: views_query
-              options: {  }
-            defaults:
-              arguments: false
+                plugin_id: date_year_month
+                entity_type: node
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         page_1:
           id: page_1
@@ -485,19 +446,17 @@ items:
             query:
               type: views_query
               options: {  }
-            display_extenders: {  }
             path: archive
+            display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: ko9GznzNBXHkuz09OCaBQ1YOSJYYjTY0TBpNV3WKnog
   -
     collection: ''
     name: views.view.content
@@ -515,247 +474,18 @@ items:
       tag: default
       base_table: node_field_data
       base_field: nid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
           display_options:
-            title: Content
-            fields:
-              node_bulk_form:
-                id: node_bulk_form
-                table: node
-                field: node_bulk_form
-                entity_type: node
-                plugin_id: node_bulk_form
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                element_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              title:
-                id: title
-                table: node_field_data
-                field: title
-                entity_type: node
-                entity_field: title
-                plugin_id: field
-                label: Title
-                exclude: false
-                alter:
-                  alter_text: false
-                element_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: string
-                settings:
-                  link_to_entity: true
-              type:
-                id: type
-                table: node_field_data
-                field: type
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: type
-                plugin_id: field
-                label: 'Content type'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                click_sort_column: target_id
-                type: entity_reference_label
-                settings:
-                  link: false
-                group_column: target_id
-                group_columns: {  }
-                group_rows: true
-                delta_limit: 0
-                delta_offset: 0
-                delta_reversed: false
-                delta_first_last: false
-                multi_type: separator
-                separator: ', '
-                field_api_classes: false
-              name:
-                id: name
-                table: users_field_data
-                field: name
-                relationship: uid
-                entity_type: user
-                entity_field: name
-                plugin_id: field
-                label: Author
-                exclude: false
-                alter:
-                  alter_text: false
-                element_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: user_name
-              status:
-                id: status
-                table: node_field_data
-                field: status
-                entity_type: node
-                entity_field: status
-                plugin_id: field
-                label: Status
-                exclude: false
-                alter:
-                  alter_text: false
-                element_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: boolean
-                settings:
-                  format: custom
-                  format_custom_false: Unpublished
-                  format_custom_true: Published
-              changed:
-                id: changed
-                table: node_field_data
-                field: changed
-                entity_type: node
-                entity_field: changed
-                plugin_id: field
-                label: Updated
-                exclude: false
-                alter:
-                  alter_text: false
-                element_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: timestamp
-                settings:
-                  date_format: short
-                  custom_date_format: ''
-                  timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-              operations:
-                id: operations
-                table: node
-                field: operations
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: entity_operations
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                destination: true
-            pager:
-              type: full
+            access:
+              type: perm
               options:
-                items_per_page: 50
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                  first: '« First'
-                  last: 'Last »'
+                perm: 'access content overview'
+            cache:
+              type: tag
+            query:
+              type: views_query
             exposed_form:
               type: basic
               options:
@@ -766,221 +496,26 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
+            pager:
+              type: full
               options:
-                perm: 'access content overview'
-            cache:
-              type: tag
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                plugin_id: text_custom
-                empty: true
-                content: 'No content available.'
-            sorts: {  }
-            arguments: {  }
-            filters:
-              title:
-                id: title
-                table: node_field_data
-                field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: title
-                plugin_id: string
-                operator: contains
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: title_op
-                  label: Title
-                  description: ''
-                  use_operator: false
-                  operator: title_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: title
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              type:
-                id: type
-                table: node_field_data
-                field: type
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: type
-                plugin_id: bundle
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: type_op
-                  label: 'Content type'
-                  description: ''
-                  use_operator: false
-                  operator: type_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: type
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              status:
-                id: status
-                table: node_field_data
-                field: status
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: status
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: ''
-                  label: Status
-                  description: ''
-                  use_operator: false
-                  operator: status_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: status
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: true
-                group_info:
-                  label: 'Published status'
-                  description: ''
-                  identifier: status
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items:
-                    1:
-                      title: Published
-                      operator: '='
-                      value: '1'
-                    2:
-                      title: Unpublished
-                      operator: '='
-                      value: '0'
-              langcode:
-                id: langcode
-                table: node_field_data
-                field: langcode
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
-                operator: in
-                value: {  }
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: langcode_op
-                  label: Language
-                  description: ''
-                  use_operator: false
-                  operator: langcode_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: langcode
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    administrator: '0'
-                  reduce: false
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              status_extra:
-                id: status_extra
-                table: node_field_data
-                field: status_extra
-                entity_type: node
-                plugin_id: node_status
-                operator: '='
-                value: false
-                group: 1
-                expose:
-                  operator_limit_selection: false
-                  operator_list: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
+                items_per_page: 50
+                tags:
+                  previous: '‹ Previous'
+                  next: 'Next ›'
+                  first: '« First'
+                  last: 'Last »'
             style:
               type: table
               options:
                 grouping: {  }
                 row_class: ''
                 default_row_class: true
+                override: true
+                sticky: true
+                caption: ''
+                summary: ''
+                description: ''
                 columns:
                   node_bulk_form: node_bulk_form
                   title: title
@@ -992,7 +527,6 @@ items:
                   delete_node: delete_node
                   dropbutton: dropbutton
                   timestamp: title
-                default: changed
                 info:
                   node_bulk_form:
                     align: ''
@@ -1062,28 +596,433 @@ items:
                     separator: ''
                     empty_column: false
                     responsive: ''
-                override: true
-                sticky: true
-                summary: ''
+                default: changed
                 empty_table: true
-                caption: ''
-                description: ''
             row:
               type: fields
-            query:
-              type: views_query
+            fields:
+              node_bulk_form:
+                id: node_bulk_form
+                table: node
+                field: node_bulk_form
+                label: ''
+                exclude: false
+                alter:
+                  alter_text: false
+                element_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                plugin_id: node_bulk_form
+                entity_type: node
+              title:
+                id: title
+                table: node_field_data
+                field: title
+                label: Title
+                exclude: false
+                alter:
+                  alter_text: false
+                element_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                entity_type: node
+                entity_field: title
+                type: string
+                settings:
+                  link_to_entity: true
+                plugin_id: field
+              type:
+                id: type
+                table: node_field_data
+                field: type
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: 'Content type'
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                click_sort_column: target_id
+                type: entity_reference_label
+                settings:
+                  link: false
+                group_column: target_id
+                group_columns: {  }
+                group_rows: true
+                delta_limit: 0
+                delta_offset: 0
+                delta_reversed: false
+                delta_first_last: false
+                multi_type: separator
+                separator: ', '
+                field_api_classes: false
+                entity_type: node
+                entity_field: type
+                plugin_id: field
+              name:
+                id: name
+                table: users_field_data
+                field: name
+                relationship: uid
+                label: Author
+                exclude: false
+                alter:
+                  alter_text: false
+                element_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                plugin_id: field
+                type: user_name
+                entity_type: user
+                entity_field: name
+              status:
+                id: status
+                table: node_field_data
+                field: status
+                label: Status
+                exclude: false
+                alter:
+                  alter_text: false
+                element_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: boolean
+                settings:
+                  format: custom
+                  format_custom_true: Published
+                  format_custom_false: Unpublished
+                plugin_id: field
+                entity_type: node
+                entity_field: status
+              changed:
+                id: changed
+                table: node_field_data
+                field: changed
+                label: Updated
+                exclude: false
+                alter:
+                  alter_text: false
+                element_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                type: timestamp
+                settings:
+                  date_format: short
+                  custom_date_format: ''
+                  timezone: ''
+                plugin_id: field
+                entity_type: node
+                entity_field: changed
+              operations:
+                id: operations
+                table: node
+                field: operations
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: Operations
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                destination: true
+                plugin_id: entity_operations
+            filters:
+              title:
+                id: title
+                table: node_field_data
+                field: title
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: contains
+                value: ''
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: title_op
+                  label: Title
+                  description: ''
+                  use_operator: false
+                  operator: title_op
+                  identifier: title
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                plugin_id: string
+                entity_type: node
+                entity_field: title
+              type:
+                id: type
+                table: node_field_data
+                field: type
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: in
+                value: {  }
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: type_op
+                  label: 'Content type'
+                  description: ''
+                  use_operator: false
+                  operator: type_op
+                  identifier: type
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                  reduce: false
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                plugin_id: bundle
+                entity_type: node
+                entity_field: type
+              status:
+                id: status
+                table: node_field_data
+                field: status
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: '='
+                value: '1'
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: ''
+                  label: Status
+                  description: ''
+                  use_operator: false
+                  operator: status_op
+                  identifier: status
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                is_grouped: true
+                group_info:
+                  label: 'Published status'
+                  description: ''
+                  identifier: status
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items:
+                    1:
+                      title: Published
+                      operator: '='
+                      value: '1'
+                    2:
+                      title: Unpublished
+                      operator: '='
+                      value: '0'
+                plugin_id: boolean
+                entity_type: node
+                entity_field: status
+              langcode:
+                id: langcode
+                table: node_field_data
+                field: langcode
+                relationship: none
+                group_type: group
+                admin_label: ''
+                operator: in
+                value: {  }
+                group: 1
+                exposed: true
+                expose:
+                  operator_id: langcode_op
+                  label: Language
+                  description: ''
+                  use_operator: false
+                  operator: langcode_op
+                  identifier: langcode
+                  required: false
+                  remember: false
+                  multiple: false
+                  remember_roles:
+                    authenticated: authenticated
+                    anonymous: '0'
+                    administrator: '0'
+                  reduce: false
+                is_grouped: false
+                group_info:
+                  label: ''
+                  description: ''
+                  identifier: ''
+                  optional: true
+                  widget: select
+                  multiple: false
+                  remember: false
+                  default_group: All
+                  default_group_multiple: {  }
+                  group_items: {  }
+                plugin_id: language
+                entity_type: node
+                entity_field: langcode
+              status_extra:
+                id: status_extra
+                table: node_field_data
+                field: status_extra
+                operator: '='
+                value: false
+                plugin_id: node_status
+                group: 1
+                entity_type: node
+            sorts: {  }
+            title: Content
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                empty: true
+                content: 'No content available.'
+                plugin_id: text_custom
+            arguments: {  }
             relationships:
               uid:
                 id: uid
                 table: node_field_data
                 field: uid
                 admin_label: author
-                plugin_id: standard
                 required: true
+                plugin_id: standard
             show_admin_links: false
+            filter_groups:
+              operator: AND
+              groups:
+                1: AND
             display_extenders: {  }
+          display_plugin: default
+          display_title: Master
+          id: default
+          position: 0
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -1092,30 +1031,30 @@ items:
               - user
               - 'user.node_grants:view'
               - user.permissions
+            max-age: 0
             tags: {  }
         page_1:
-          id: page_1
-          display_title: Page
-          display_plugin: page
-          position: 1
           display_options:
-            display_extenders: {  }
             path: admin/content/node
             menu:
               type: 'default tab'
               title: Content
               description: ''
-              weight: -10
               menu_name: admin
+              weight: -10
               context: ''
             tab_options:
               type: normal
               title: Content
               description: 'Find and manage content'
-              weight: -10
               menu_name: admin
+              weight: -10
+            display_extenders: {  }
+          display_plugin: page
+          display_title: Page
+          id: page_1
+          position: 1
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -1124,9 +1063,8 @@ items:
               - user
               - 'user.node_grants:view'
               - user.permissions
+            max-age: 0
             tags: {  }
-      _core:
-        default_config_hash: 3ELwBpDb9lzqW5-daqjZYsC5lNcwbDS_i_-LKba12Lw
   -
     collection: ''
     name: views.view.content_recent
@@ -1144,36 +1082,78 @@ items:
       tag: default
       base_table: node_field_data
       base_field: nid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: 'Recent content'
+            access:
+              type: perm
+              options:
+                perm: 'access content'
+            cache:
+              type: tag
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Apply
+                reset_button: false
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: true
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: some
+              options:
+                items_per_page: 10
+                offset: 0
+            style:
+              type: html_list
+              options:
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                type: ul
+                wrapper_class: item-list
+                class: ''
+            row:
+              type: fields
             fields:
               title:
                 id: title
                 table: node_field_data
                 field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
                 entity_type: node
                 entity_field: title
-                plugin_id: field
                 label: ''
                 exclude: false
                 alter:
                   alter_text: false
                   make_link: false
                   absolute: false
+                  trim: false
                   word_boundary: false
                   ellipsis: false
                   strip_tags: false
-                  trim: false
                   html: false
+                hide_empty: false
+                empty_zero: false
+                relationship: none
+                group_type: group
+                admin_label: ''
                 element_type: ''
                 element_class: ''
                 element_label_type: ''
@@ -1183,12 +1163,11 @@ items:
                 element_wrapper_class: ''
                 element_default_classes: true
                 empty: ''
-                hide_empty: false
-                empty_zero: false
                 hide_alter_empty: true
                 type: string
                 settings:
                   link_to_entity: true
+                plugin_id: field
               changed:
                 id: changed
                 table: node_field_data
@@ -1196,9 +1175,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: changed
-                plugin_id: field
                 label: ''
                 exclude: false
                 alter:
@@ -1253,58 +1229,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
-            pager:
-              type: some
-              options:
-                offset: 0
-                items_per_page: 10
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access content'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'No content available.'
-                tokenize: false
-            sorts:
-              changed:
-                id: changed
-                table: node_field_data
-                field: changed
-                relationship: none
-                group_type: group
-                admin_label: ''
                 entity_type: node
                 entity_field: changed
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: changed
-                exposed: false
-                granularity: second
-            arguments: {  }
+                plugin_id: field
             filters:
               status_extra:
                 id: status_extra
@@ -1313,8 +1240,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                plugin_id: node_status
                 operator: '='
                 value: false
                 group: 1
@@ -1325,8 +1250,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -1345,6 +1268,8 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                entity_type: node
+                plugin_id: node_status
               langcode:
                 id: langcode
                 table: node_field_data
@@ -1352,9 +1277,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
                 operator: in
                 value:
                   '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -1366,8 +1288,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -1387,25 +1307,40 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            style:
-              type: html_list
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                type: ul
-                wrapper_class: item-list
-                class: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
+                entity_type: node
+                entity_field: langcode
+                plugin_id: language
+            sorts:
+              changed:
+                id: changed
+                table: node_field_data
+                field: changed
+                relationship: none
+                group_type: group
+                admin_label: ''
+                order: DESC
+                exposed: false
+                expose:
+                  label: ''
+                granularity: second
+                entity_type: node
+                entity_field: changed
+                plugin_id: date
+            title: 'Recent content'
+            header: {  }
+            footer: {  }
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: ''
+                empty: true
+                tokenize: false
+                content: 'No content available.'
+                plugin_id: text_custom
             relationships:
               uid:
                 id: uid
@@ -1414,45 +1349,42 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: author
+                required: true
                 entity_type: node
                 entity_field: uid
                 plugin_id: standard
-                required: true
+            arguments: {  }
+            display_extenders: {  }
             use_more: false
             use_more_always: false
             use_more_text: More
-            link_display: '0'
             link_url: ''
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
+            link_display: '0'
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         block_1:
+          display_plugin: block
           id: block_1
           display_title: Block
-          display_plugin: block
           position: 1
           display_options:
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: YqZN5rc7XDQcFcInc8wkzuaHJmC5YvirhTmDcrarT6M
   -
     collection: ''
     name: views.view.frontpage
@@ -1473,36 +1405,52 @@ items:
       tag: default
       base_table: node_field_data
       base_field: nid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
           display_options:
-            title: ''
-            fields: {  }
-            pager:
-              type: full
+            access:
+              type: perm
               options:
-                offset: 0
-                items_per_page: 10
-                total_pages: 0
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
+                perm: 'access content'
+            cache:
+              type: tag
+              options: {  }
+            empty:
+              area_text_custom:
+                admin_label: ''
+                content: 'No front page content has been created yet.<br/>Follow the <a target="_blank" href="https://www.drupal.org/docs/user_guide/en/index.html">User Guide</a> to start building your site.'
+                empty: true
+                field: area_text_custom
+                group_type: group
+                id: area_text_custom
+                label: ''
+                relationship: none
+                table: views
+                tokenize: false
+                plugin_id: text_custom
+              node_listing_empty:
+                admin_label: ''
+                empty: true
+                field: node_listing_empty
+                group_type: group
+                id: node_listing_empty
+                label: ''
+                relationship: none
+                table: node
+                plugin_id: node_listing_empty
+                entity_type: node
+              title:
+                id: title
+                table: views
+                field: title
+                relationship: none
+                group_type: group
+                admin_label: ''
+                label: ''
+                empty: true
+                title: 'Welcome to [site:name]'
+                plugin_id: title
             exposed_form:
               type: basic
               options:
@@ -1513,135 +1461,56 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access content'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                label: ''
-                empty: true
-                content: 'No front page content has been created yet.<br/>Follow the <a target="_blank" href="https://www.drupal.org/docs/user_guide/en/index.html">User Guide</a> to start building your site.'
-                tokenize: false
-              node_listing_empty:
-                id: node_listing_empty
-                table: node
-                field: node_listing_empty
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                plugin_id: node_listing_empty
-                label: ''
-                empty: true
-              title:
-                id: title
-                table: views
-                field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: title
-                label: ''
-                empty: true
-                title: Welcome!
-            sorts:
-              sticky:
-                id: sticky
-                table: node_field_data
-                field: sticky
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: sticky
-                plugin_id: boolean
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: sticky
-                exposed: false
-              created:
-                id: created
-                table: node_field_data
-                field: created
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: created
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: created
-                exposed: false
-                granularity: second
-            arguments: {  }
             filters:
               promote:
-                id: promote
-                table: node_field_data
-                field: promote
-                relationship: none
-                group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: promote
-                plugin_id: boolean
-                operator: '='
-                value: '1'
-                group: 1
-                exposed: false
                 expose:
-                  operator_id: ''
-                  label: ''
                   description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
-                  required: false
-                  remember: false
+                  label: ''
                   multiple: false
+                  operator: ''
+                  operator_id: ''
+                  remember: false
                   remember_roles:
                     authenticated: authenticated
-                is_grouped: false
+                  required: false
+                  use_operator: false
+                exposed: false
+                field: promote
+                group: 1
                 group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
                   default_group: All
                   default_group_multiple: {  }
+                  description: ''
                   group_items: {  }
-              status:
-                id: status
+                  identifier: ''
+                  label: ''
+                  multiple: false
+                  optional: true
+                  remember: false
+                  widget: select
+                group_type: group
+                id: promote
+                is_grouped: false
+                operator: '='
+                relationship: none
                 table: node_field_data
-                field: status
-                entity_type: node
-                entity_field: status
-                plugin_id: boolean
                 value: '1'
-                group: 1
+                plugin_id: boolean
+                entity_type: node
+                entity_field: promote
+              status:
                 expose:
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
+                field: status
+                group: 1
+                id: status
+                table: node_field_data
+                value: '1'
+                plugin_id: boolean
+                entity_type: node
+                entity_field: status
               langcode:
                 id: langcode
                 table: node_field_data
@@ -1649,9 +1518,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
                 operator: in
                 value:
                   '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -1663,8 +1529,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -1684,6 +1548,72 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                plugin_id: language
+                entity_type: node
+                entity_field: langcode
+            pager:
+              type: full
+              options:
+                items_per_page: 10
+                offset: 0
+                id: 0
+                total_pages: 0
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                tags:
+                  previous: '‹ Previous'
+                  next: 'Next ›'
+                  first: '« First'
+                  last: 'Last »'
+                quantity: 9
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
+            row:
+              type: 'entity:node'
+              options:
+                view_mode: teaser
+            sorts:
+              sticky:
+                admin_label: ''
+                expose:
+                  label: ''
+                exposed: false
+                field: sticky
+                group_type: group
+                id: sticky
+                order: DESC
+                relationship: none
+                table: node_field_data
+                plugin_id: boolean
+                entity_type: node
+                entity_field: sticky
+              created:
+                field: created
+                id: created
+                order: DESC
+                table: node_field_data
+                plugin_id: date
+                relationship: none
+                group_type: group
+                admin_label: ''
+                exposed: false
+                expose:
+                  label: ''
+                granularity: second
+                entity_type: node
+                entity_field: created
             style:
               type: default
               options:
@@ -1691,83 +1621,76 @@ items:
                 row_class: ''
                 default_row_class: true
                 uses_fields: false
-            row:
-              type: 'entity:node'
-              options:
-                view_mode: teaser
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
+            title: ''
             header: {  }
             footer: {  }
+            relationships: {  }
+            fields: {  }
+            arguments: {  }
             display_extenders: {  }
+          display_plugin: default
+          display_title: Master
+          id: default
+          position: 0
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         feed_1:
+          display_plugin: feed
           id: feed_1
           display_title: Feed
-          display_plugin: feed
           position: 2
           display_options:
+            sitename_title: true
+            path: rss.xml
+            displays:
+              page_1: page_1
+              default: ''
             pager:
               type: some
               options:
-                offset: 0
                 items_per_page: 10
+                offset: 0
             style:
               type: rss
               options:
+                description: ''
                 grouping: {  }
                 uses_fields: false
-                description: ''
             row:
               type: node_rss
               options:
                 relationship: none
                 view_mode: rss
             display_extenders: {  }
-            path: rss.xml
-            sitename_title: true
-            displays:
-              page_1: page_1
-              default: ''
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         page_1:
-          id: page_1
-          display_title: Page
-          display_plugin: page
-          position: 1
           display_options:
-            display_extenders: {  }
             path: node
+            display_extenders: {  }
+          display_plugin: page
+          display_title: Page
+          id: page_1
+          position: 1
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: 6eeliKIydPjqyv5V__QqTfahvJMWkHjOVUUuUIdB1ik
   -
     collection: ''
     name: views.view.glossary
@@ -1787,24 +1710,67 @@ items:
       tag: default
       base_table: node_field_data
       base_field: nid
+      core: '8'
       display:
         default:
           id: default
-          display_title: Default
+          display_title: Master
           display_plugin: default
           position: 0
           display_options:
+            query:
+              type: views_query
+              options:
+                query_comment: ''
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_tags: {  }
+            use_ajax: true
+            access:
+              type: perm
+              options:
+                perm: 'access content'
+            cache:
+              type: tag
+              options: {  }
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Apply
+                reset_button: false
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: true
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: mini
+              options:
+                items_per_page: 36
+                offset: 0
+                id: 0
+                total_pages: 0
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                tags:
+                  previous: ‹‹
+                  next: ››
             fields:
               title:
                 id: title
                 table: node_field_data
                 field: title
+                plugin_id: field
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: title
-                plugin_id: field
                 label: Title
                 exclude: false
                 alter:
@@ -1846,17 +1812,18 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                entity_type: node
+                entity_field: title
               name:
                 id: name
                 table: users_field_data
                 field: name
+                label: Author
                 relationship: uid
+                plugin_id: field
+                type: user_name
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
-                label: Author
                 exclude: false
                 alter:
                   alter_text: false
@@ -1897,156 +1864,147 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
-                type: user_name
+                entity_type: user
+                entity_field: name
               changed:
                 id: changed
                 table: node_field_data
                 field: changed
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: changed
-                plugin_id: field
                 label: 'Last update'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
                 type: timestamp
                 settings:
                   date_format: long
                   custom_date_format: ''
                   timezone: ''
-                  tooltip:
-                    date_format: long
-                    custom_date_format: ''
-                  time_diff:
-                    enabled: false
-                    future_format: '@interval hence'
-                    past_format: '@interval ago'
-                    granularity: 2
-                    refresh: 60
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 36
-                total_pages: 0
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'access content'
-            cache:
-              type: tag
-              options: {  }
-            empty: {  }
-            sorts: {  }
+                plugin_id: field
+                relationship: none
+                group_type: group
+                admin_label: ''
+                exclude: false
+                alter:
+                  alter_text: false
+                  text: ''
+                  make_link: false
+                  path: ''
+                  absolute: false
+                  external: false
+                  replace_spaces: false
+                  path_case: none
+                  trim_whitespace: false
+                  alt: ''
+                  rel: ''
+                  link_class: ''
+                  prefix: ''
+                  suffix: ''
+                  target: ''
+                  nl2br: false
+                  max_length: 0
+                  word_boundary: true
+                  ellipsis: true
+                  more_link: false
+                  more_link_text: ''
+                  more_link_path: ''
+                  strip_tags: false
+                  trim: false
+                  preserve_tags: ''
+                  html: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_empty: false
+                empty_zero: false
+                hide_alter_empty: true
+                entity_type: node
+                entity_field: changed
             arguments:
               title:
                 id: title
                 table: node_field_data
                 field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: title
-                plugin_id: string
                 default_action: default
                 exception:
                   title_enable: true
-                title_enable: false
-                title: ''
                 default_argument_type: fixed
                 default_argument_options:
                   argument: a
-                summary_options: {  }
                 summary:
                   format: default_summary
                 specify_validation: true
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
                 glossary: true
                 limit: 1
                 case: upper
                 path_case: lower
                 transform_dash: false
+                plugin_id: string
+                relationship: none
+                group_type: group
+                admin_label: ''
+                title_enable: false
+                title: ''
+                default_argument_skip_url: false
+                summary_options: {  }
+                validate:
+                  type: none
+                  fail: 'not found'
+                validate_options: {  }
                 break_phrase: false
-            filters:
-              status:
-                id: status
-                table: node_field_data
-                field: status
                 entity_type: node
-                entity_field: status
-                plugin_id: boolean
-                value: '1'
-                group: 1
-                expose:
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
+                entity_field: title
+            relationships:
+              uid:
+                id: uid
+                table: node_field_data
+                field: uid
+                plugin_id: standard
+                relationship: none
+                group_type: group
+                admin_label: author
+                required: false
+            style:
+              type: table
+              options:
+                columns:
+                  title: title
+                  name: name
+                  changed: changed
+                default: title
+                info:
+                  title:
+                    sortable: true
+                    separator: ''
+                  name:
+                    sortable: true
+                    separator: ''
+                  changed:
+                    sortable: true
+                    separator: ''
+                override: true
+                sticky: false
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                uses_fields: false
+                order: asc
+                summary: ''
+                empty_table: false
+            row:
+              type: fields
+              options:
+                inline: {  }
+                separator: ''
+                hide_empty: false
+                default_field_elements: true
+            header: {  }
+            footer: {  }
+            empty: {  }
+            sorts: {  }
+            filters:
               langcode:
                 id: langcode
                 table: node_field_data
@@ -2054,9 +2012,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
                 operator: in
                 value:
                   '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -2068,8 +2023,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -2089,64 +2042,11 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                uses_fields: false
-                columns:
-                  title: title
-                  name: name
-                  changed: changed
-                default: title
-                info:
-                  title:
-                    sortable: true
-                    separator: ''
-                  name:
-                    sortable: true
-                    separator: ''
-                  changed:
-                    sortable: true
-                    separator: ''
-                override: true
-                sticky: false
-                summary: ''
-                order: asc
-                empty_table: false
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships:
-              uid:
-                id: uid
-                table: node_field_data
-                field: uid
-                relationship: none
-                group_type: group
-                admin_label: author
-                plugin_id: standard
-                required: false
-            use_ajax: true
-            header: {  }
-            footer: {  }
+                plugin_id: language
+                entity_type: node
+                entity_field: langcode
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -2154,6 +2054,7 @@ items:
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: 0
             tags: {  }
         attachment_1:
           id: attachment_1
@@ -2161,59 +2062,59 @@ items:
           display_plugin: attachment
           position: 2
           display_options:
+            query:
+              type: views_query
+              options: {  }
             pager:
               type: none
               options:
                 offset: 0
                 items_per_page: 0
+            defaults:
+              arguments: false
             arguments:
               title:
                 id: title
                 table: node_field_data
                 field: title
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: node
-                entity_field: title
-                plugin_id: string
                 default_action: summary
                 exception:
                   title_enable: true
-                title_enable: false
-                title: ''
                 default_argument_type: fixed
                 default_argument_options:
                   argument: a
+                summary:
+                  format: unformatted_summary
                 summary_options:
                   items_per_page: 25
                   inline: true
                   separator: ' | '
-                summary:
-                  format: unformatted_summary
                 specify_validation: true
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
                 glossary: true
                 limit: 1
                 case: upper
                 path_case: lower
                 transform_dash: false
+                plugin_id: string
+                relationship: none
+                group_type: group
+                admin_label: ''
+                title_enable: false
+                title: ''
+                default_argument_skip_url: false
+                validate:
+                  type: none
+                  fail: 'not found'
+                validate_options: {  }
                 break_phrase: false
-            query:
-              type: views_query
-              options: {  }
-            defaults:
-              arguments: false
-            display_extenders: {  }
+                entity_type: node
+                entity_field: title
             displays:
               default: default
               page_1: page_1
             inherit_arguments: false
+            display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -2221,6 +2122,7 @@ items:
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: 0
             tags: {  }
         page_1:
           id: page_1
@@ -2231,7 +2133,6 @@ items:
             query:
               type: views_query
               options: {  }
-            display_extenders: {  }
             path: glossary
             menu:
               type: normal
@@ -2239,8 +2140,8 @@ items:
               weight: 0
               menu_name: main
               parent: ''
+            display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
@@ -2248,6 +2149,5 @@ items:
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: 0
             tags: {  }
-      _core:
-        default_config_hash: nmnCpWLsIDkgaZEKlzl9uYT7NYEM_5uKzQtTbvkl878
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.noreferrer.yml b/config/sync/config_snapshot.snapshot.config_sync.module.noreferrer.yml
deleted file mode 100644
index 099363c..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.noreferrer.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 021d84b8-4bba-43c6-9b63-3eb62b51ca86
-langcode: en
-status: true
-dependencies:
-  module:
-    - noreferrer
-id: config_sync.module.noreferrer
-snapshotSet: config_sync
-extensionType: module
-extensionName: noreferrer
-items:
-  -
-    collection: ''
-    name: noreferrer.settings
-    data:
-      noopener: true
-      noreferrer: true
-      publish: false
-      subscribe_url: ''
-      allowed_domains: ''
-      _core:
-        default_config_hash: 49R264IjjxKiyXtKTwp-ghB54W4FGFBl4Y1tRn88IC0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml b/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml
index 05fc2fa..232fd3a 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml
@@ -14,20 +14,16 @@ items:
     name: core.entity_view_mode.paragraph.preview
     data:
       langcode: en
+      id: paragraph.preview
+      label: Preview
       status: true
+      cache: true
+      targetEntityType: paragraph
       dependencies:
         module:
           - paragraphs
-      id: paragraph.preview
-      label: Preview
-      targetEntityType: paragraph
-      cache: true
-      _core:
-        default_config_hash: h3BeHVei4Lnyqbkao3YiF4KqoY-DhRvUNfEgKG8Rgjg
   -
     collection: ''
     name: paragraphs.settings
     data:
       show_unpublished: true
-      _core:
-        default_config_hash: 7eR0sk71Eol86r_A7BMqn5_46wzenh5J1O5vZRCGKv8
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.path_alias.yml b/config/sync/config_snapshot.snapshot.config_sync.module.path_alias.yml
deleted file mode 100644
index f883f64..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.path_alias.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 5556a06f-901b-4707-a415-60091c408a70
-langcode: en
-status: true
-dependencies:
-  module:
-    - path_alias
-id: config_sync.module.path_alias
-snapshotSet: config_sync
-extensionType: module
-extensionName: path_alias
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml b/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml
index b0685f8..4b86bf6 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml
@@ -33,8 +33,6 @@ items:
         - login-url
         - url
         - url-brief
-      _core:
-        default_config_hash: SwvLp8snyPEExF41CaJJYdPUVomofLqtXvwciHc4cPg
   -
     collection: ''
     name: system.action.pathauto_update_alias_node
@@ -51,8 +49,6 @@ items:
             - node
         module:
           - pathauto
-      _core:
-        default_config_hash: lno8QThS348UX-kaUsagJtCnuPHKLXYnTQiF_9HSDWA
   -
     collection: ''
     name: system.action.pathauto_update_alias_user
@@ -69,5 +65,3 @@ items:
             - user
         module:
           - pathauto
-      _core:
-        default_config_hash: x_ok_ZsfA4Xk4B_hVW3O4-3PcNoK57nXLz_Dlletidg
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml b/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml
deleted file mode 100644
index 21e8036..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: d968c39b-76d9-4fde-87c2-98597304e1c0
-langcode: en
-status: true
-dependencies:
-  module:
-    - plausible
-id: config_sync.module.plausible
-snapshotSet: config_sync
-extensionType: module
-extensionName: plausible
-items:
-  -
-    collection: ''
-    name: plausible.settings
-    data:
-      script:
-        domain: ''
-        api: ''
-        src: 'https://plausible.io/js/plausible.js'
-      dashboard:
-        shared_link: ''
-      visibility:
-        enable: true
-        admin_route_mode: 0
-        request_path_mode: 0
-        request_path_pages: ''
-        user_role_mode: 0
-        user_role_roles: {  }
-      events:
-        403: false
-        404: false
-      _core:
-        default_config_hash: 7ITcwwShhS7SG3SJdIqRQkzXEcEPNejdEnbeDVDeDY0
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.quickedit.yml b/config/sync/config_snapshot.snapshot.config_sync.module.quickedit.yml
new file mode 100644
index 0000000..b8487dd
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.quickedit.yml
@@ -0,0 +1,11 @@
+uuid: 330690ee-4b7f-4912-9bff-b73790babc9a
+langcode: en
+status: true
+dependencies:
+  module:
+    - quickedit
+id: config_sync.module.quickedit
+snapshotSet: config_sync
+extensionType: module
+extensionName: quickedit
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.rdf.yml b/config/sync/config_snapshot.snapshot.config_sync.module.rdf.yml
index a1594d9..8810b8b 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.rdf.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.rdf.yml
@@ -8,27 +8,4 @@ id: config_sync.module.rdf
 snapshotSet: config_sync
 extensionType: module
 extensionName: rdf
-items:
-  -
-    collection: ''
-    name: rdf.mapping.user.user
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - user
-        enforced:
-          module:
-            - user
-      id: user.user
-      targetEntityType: user
-      bundle: user
-      types:
-        - 'schema:Person'
-      fieldMappings:
-        name:
-          properties:
-            - 'schema:name'
-      _core:
-        default_config_hash: xtzuACq4Fn0ail4YD8cO_eMnn_g2DBlfI9W5oSpcRWI
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.redirect.yml b/config/sync/config_snapshot.snapshot.config_sync.module.redirect.yml
index 8463aee..13e6741 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.redirect.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.redirect.yml
@@ -20,8 +20,6 @@ items:
       ignore_admin_path: false
       access_check: false
       route_normalizer_enabled: true
-      _core:
-        default_config_hash: FEwQLW1wXW7fiJdG1B2bxW1c_-k6w-r-3V3bSsW6PqM
   -
     collection: ''
     name: system.action.redirect_delete_action
@@ -39,8 +37,6 @@ items:
       type: redirect
       plugin: redirect_delete_action
       configuration: {  }
-      _core:
-        default_config_hash: vcnRZRvBqTbK3nZ2M4_lKPlEGc8GjPzgaqapYUfyX8M
   -
     collection: ''
     name: views.view.redirect
@@ -59,6 +55,7 @@ items:
       tag: ''
       base_table: redirect
       base_field: rid
+      core: 8.x
       display:
         default:
           display_plugin: default
@@ -85,7 +82,7 @@ items:
               type: basic
               options:
                 submit_button: Filter
-                reset_button: true
+                reset_button: false
                 reset_button_label: Reset
                 exposed_sorts_label: 'Sort by'
                 expose_sort_order: true
@@ -402,8 +399,6 @@ items:
                     authenticated: authenticated
                     anonymous: '0'
                     administrator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: false
                 group_info:
                   label: ''
@@ -444,8 +439,6 @@ items:
                     authenticated: authenticated
                     anonymous: '0'
                     administrator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: false
                 group_info:
                   label: ''
@@ -489,8 +482,6 @@ items:
                     authenticated: authenticated
                     anonymous: '0'
                     administrator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: true
                 group_info:
                   label: 'Status code'
@@ -581,8 +572,6 @@ items:
                     anonymous: '0'
                     administrator: '0'
                   reduce: false
-                  operator_limit_selection: false
-                  operator_list: {  }
                 is_grouped: false
                 group_info:
                   label: ''
@@ -649,5 +638,3 @@ items:
             cacheable: false
             max-age: 0
             tags: {  }
-      _core:
-        default_config_hash: I9VqfbwK5ZyKzL7810d0fswaadU6riFT3kPL0yxcpLs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.riddler.yml b/config/sync/config_snapshot.snapshot.config_sync.module.riddler.yml
deleted file mode 100644
index 00cb1de..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.riddler.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: ba8f4248-be44-4a32-930a-2347ecb2ff71
-langcode: en
-status: true
-dependencies:
-  module:
-    - riddler
-id: config_sync.module.riddler
-snapshotSet: config_sync
-extensionType: module
-extensionName: riddler
-items:
-  -
-    collection: ''
-    name: riddler.riddle.example
-    data:
-      id: example
-      question: 'Do you really hate Spam?'
-      solution: 'Yes,Yes!,y,absolutely,yeah'
-      hint: 'I think you do!'
-      status: true
-      _core:
-        default_config_hash: f7dN3Eb7xyyMUWug2Gwt-bjoXTpTvtXXGMQmIS4LJ44
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.role_delegation.yml b/config/sync/config_snapshot.snapshot.config_sync.module.role_delegation.yml
deleted file mode 100644
index 52914a5..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.role_delegation.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 72a49912-c5a9-4fea-8eb9-aa504044adcc
-langcode: en
-status: true
-dependencies:
-  module:
-    - role_delegation
-id: config_sync.module.role_delegation
-snapshotSet: config_sync
-extensionType: module
-extensionName: role_delegation
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml b/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml
index 204ee26..11371ad 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml
@@ -17,30 +17,6 @@ items:
       cron_worker_runtime: 15
       default_tracker: default
       tracking_page_size: 100
-      boost_factors:
-        - 0.0
-        - 0.1
-        - 0.2
-        - 0.3
-        - 0.5
-        - 0.6
-        - 0.7
-        - 0.8
-        - 0.9
-        - 1.0
-        - 1.1
-        - 1.2
-        - 1.3
-        - 1.4
-        - 1.5
-        - 2.0
-        - 3.0
-        - 5.0
-        - 8.0
-        - 13.0
-        - 21.0
-      _core:
-        default_config_hash: b2zIRm9Jv3SB60NYdZkZHxH8-KdEa-Xa48-4NsIi4lg
   -
     collection: ''
     name: tour.tour.search-api-index
@@ -68,79 +44,88 @@ items:
           label: 'Index status'
           body: 'This gives a summary about how many items are known for this index, and how many have been indexed in their latest version. Items that are not indexed yet cannot be found by searches.'
           weight: 2
-          selector: .search-api-index-status
+          attributes:
+            data-class: search-api-index-status
         search-api-index-status:
           id: search-api-index-status
           plugin: text
           label: Status
           body: 'Shows whether the index is currently enabled or disabled.'
           weight: 3
-          selector: .search-api-index-summary--status
+          attributes:
+            data-class: search-api-index-summary--status
         search-api-index-datasources:
           id: search-api-index-datasources
           plugin: text
           label: Datasources
           body: 'Lists all datasources that are enabled for this index.'
           weight: 4
-          selector: .search-api-index-summary--datasource
+          attributes:
+            data-class: search-api-index-summary--datasource
         search-api-index-tracker:
           id: search-api-index-tracker
           plugin: text
           label: Tracker
           body: 'The tracker used by the index. Only one ("Default") is available by default.'
           weight: 5
-          selector: .search-api-index-summary--tracker
+          attributes:
+            data-class: search-api-index-summary--tracker
         search-api-index-server:
           id: search-api-index-server
           plugin: text
           label: Server
           body: 'If the index is attached to a server, this server is listed here.'
           weight: 6
-          selector: .search-api-index-summary--server
+          attributes:
+            data-class: search-api-index-summary--server
         search-api-index-server-index-status:
           id: search-api-index-server-index-status
           plugin: text
           label: 'Server index status'
           body: 'For enabled indexes, the number of items that can actually be retrieved from the server is listed here. For reasons why this number might differ from the number under "Index status", <a href="https://www.drupal.org/docs/8/modules/search-api/getting-started/frequently-asked-questions#server-index-status">see the module''s documentation</a>.'
           weight: 7
-          selector: .search-api-index-summary--server-index-status
+          attributes:
+            data-class: search-api-index-summary--server-index-status
         search-api-index-cron-batch-size:
           id: search-api-index-cron-batch-size
           plugin: text
           label: 'Cron batch size'
           body: 'The number of items that will be indexed at once during cron runs.'
           weight: 8
-          selector: .search-api-index-summary--cron-batch-size
+          attributes:
+            data-class: search-api-index-summary--cron-batch-size
         search-api-index-index-now:
           id: search-api-index-remove
           plugin: text
           label: 'Start indexing now'
           body: 'The "Start indexing now" form allows indexing items manually right away, with a batch process. Otherwise, items are only indexed during cron runs. The form might be disabled if indexing is currently not possible for some reason, or not necessary.'
           weight: 9
-          selector: '#edit-index'
+          attributes:
+            data-id: edit-index
         search-api-index-tracking:
           id: search-api-index-tracking
           plugin: text
           label: 'Track items for index'
           body: 'In certain situations, the index''s tracker doesn''t have the latest state of the items available for indexing. This will be automatically rectified during cron runs, but can also be manually triggered here, with the "Track now" button.'
           weight: 10
-          selector: '#edit-tracking'
+          attributes:
+            data-id: edit-tracking
         search-api-index-reindex:
           id: search-api-index-reindex
           plugin: text
           label: 'Queue all items for reindexing'
           body: 'This will queue all items on this index for reindexing. Previously indexed data will remain on the search server, so searches on this index will continue to yield results.'
           weight: 11
-          selector: .edit-reindex
+          attributes:
+            data-id: edit-reindex
         search-api-index-clear:
           id: search-api-index-clear
           plugin: text
           label: 'Clear all indexed data'
           body: 'This will remove all indexed content for this index from the search server and queue it for reindexing. Searches on this index will not return any results until items are reindexed.'
           weight: 12
-          selector: '#edit-clear'
-      _core:
-        default_config_hash: DHNg3a7QdthDmUgBXKgxq-ewQd4uA9hHAmaM9vul95A
+          attributes:
+            data-id: edit-clear
   -
     collection: ''
     name: tour.tour.search-api-index-fields
@@ -168,72 +153,80 @@ items:
           label: 'Add fields'
           body: 'With the "Add fields" button you can add additional fields to this index.'
           weight: 2
-          selector: '.button-action[data-drupal-selector="edit-add-field"]'
+          attributes:
+            data-class: 'button-action[data-drupal-selector="edit-add-field"]'
         search-api-index-fields-label:
           id: search-api-index-fields-label
           plugin: text
           label: Label
           body: 'A label for the field that will be used to refer to the field in most places in the user interface.'
           weight: 3
-          selector: '.details-wrapper table thead th:nth-child(1)'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table thead th:nth(0)'
         search-api-index-fields-machine-name:
           id: search-api-index-fields-machine-name
           plugin: text
           label: 'Machine name'
-          body: "The internal ID to use for this field. Can safely be ignored by inexperienced users in most cases. Changing a field's machine name requires reindexing of the index."
+          body: 'The internal ID to use for this field. Can safely be ignored by inexperienced users in most cases. Changing a field''s machine name requires reindexing of the index.'
           weight: 4
-          selector: '.details-wrapper table thead th:nth-child(2)'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table thead th:nth(1)'
         search-api-index-fields-property-path:
           id: search-api-index-fields-property-path
           plugin: text
           label: 'Property path'
           body: 'The internal relationship linking the indexed item to the field, with links being separated by colons (:). This can be useful information for advanced users, but can otherwise be ignored.'
           weight: 5
-          selector: '.details-wrapper table thead th:nth-child(3)'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table thead th:nth(2)'
         search-api-index-fields-type:
           id: search-api-index-fields-type
           plugin: text
           label: Type
           body: 'The data type to use when indexing the field. Determines how a field can be used in searches. For information on the available types, see the <a href="#search-api-data-types-table">"Data types" box</a> at the bottom of the page.'
           weight: 6
-          selector: '.details-wrapper table thead th:nth-child(4)'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table thead th:nth(3)'
         search-api-index-fields-boost:
           id: search-api-index-fields-boost
           plugin: text
           label: Boost
           body: 'Only applicable for fulltext fields. Determines how "important" the field is compared to other fulltext fields, to influence scoring of fulltext searches.'
           weight: 7
-          selector: '.details-wrapper table thead th:nth-child(5)'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table thead th:nth(4)'
         search-api-index-fields-edit:
           id: search-api-index-fields-edit
           plugin: text
           label: 'Edit field'
           body: 'Some fields have additional configuration available, in which case an "Edit" link is displayed in the "Operations" column.'
           weight: 8
-          selector: '.details-wrapper table tbody td:nth-child(6) a'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table tbody td:nth(5) a'
         search-api-index-fields-remove:
           id: search-api-index-fields-remove
           plugin: text
           label: 'Remove field'
           body: 'Removes a field from the index again. (Note: Sometimes, a field is required (for example, by a processor) and cannot be removed.)'
           weight: 9
-          selector: '.details-wrapper table tbody td:nth-child(7) a'
+          attributes:
+            data-class: 'details-wrapper:nth(0) table tbody td:nth(6) a'
         search-api-index-fields-submit:
           id: search-api-index-fields-submit
           plugin: text
           label: 'Save changes'
           body: 'This saves all changes made to the fields for this index. Until this button is pressed, all added, changed or removed fields will only be stored temporarily and not effect the actual index used in the rest of the site.'
           weight: 10
-          selector: '#edit-actions-submit'
+          attributes:
+            data-id: edit-actions-submit
         search-api-index-fields-cancel:
           id: search-api-index-fields-cancel
           plugin: text
           label: 'Cancel changes'
           body: 'If you have made changes to the index''s fields but not yet saved them, the "Cancel" link lets you discard those changes.'
           weight: 10
-          selector: '#edit-actions-cancel'
-      _core:
-        default_config_hash: TtSWlBl_1VI03GJW1yyzVwtlq15Yst0id1vPdvz5qxM
+          attributes:
+            data-id: edit-actions-cancel
   -
     collection: ''
     name: tour.tour.search-api-index-form
@@ -263,44 +256,48 @@ items:
           label: 'Index name'
           body: 'Enter a name to identify this index. For example, "Content index". This will only be displayed in the admin user interface.'
           weight: 2
-          selector: '#edit-name'
+          attributes:
+            data-id: edit-name
         search-api-index-form-datasources:
           id: search-api-index-form-datasources
           plugin: text
           label: Datasources
           body: 'Datasources define the types of items that will be indexed in this index. By default, all content entities (like content, comments and taxonomy terms) will be available here, but modules can also add their own.'
           weight: 3
-          selector: '#edit-datasources'
+          attributes:
+            data-id: edit-datasources
         search-api-index-form-tracker:
           id: search-api-index-form-tracker
           plugin: text
           label: Tracker
-          body: "An index's tracker is the system that keeps track of which items there are available for the index, and which of them still need to be indexed. Changing the tracker of an existing index will lead to reindexing of all items."
+          body: 'An index''s tracker is the system that keeps track of which items there are available for the index, and which of them still need to be indexed. Changing the tracker of an existing index will lead to reindexing of all items.'
           weight: 4
-          selector: '#edit-tracker'
+          attributes:
+            data-id: edit-tracker
         search-api-index-form-server:
           id: search-api-index-form-server
           plugin: text
           label: Server
           body: 'The search server that the index should use for indexing and searching. If no server is selected here, the index cannot be enabled. An index can only have one server, but a server can have any number of indexes.'
           weight: 5
-          selector: '#edit-server'
+          attributes:
+            data-id: edit-server
         search-api-index-form-description:
           id: search-api-index-form-description
           plugin: text
           label: 'Index description'
           body: 'Optionally, enter a description to explain the function of the index in more detail. This will only be displayed in the admin user interface.'
           weight: 6
-          selector: '#edit-description'
+          attributes:
+            data-id: edit-description
         search-api-index-form-options:
           id: search-api-index-form-options
           plugin: text
           label: 'Advanced options'
           body: 'These options allow more detailed configuration of index behavior, but can usually safely be ignored by inexperienced users.'
           weight: 7
-          selector: '#edit-options'
-      _core:
-        default_config_hash: sQzCtjeNBZnQCDro5e8B7_KNpDYVoetYDs4iaf1xBOA
+          attributes:
+            data-id: edit-options
   -
     collection: ''
     name: tour.tour.search-api-index-processors
@@ -320,7 +317,7 @@ items:
           id: search-api-index-processors-introduction
           plugin: text
           label: 'Processors used for this index'
-          body: "Processors customize different aspects of an index's functionality. They can keep items from being indexed, change how certain fields are indexed and influence searches."
+          body: 'Processors customize different aspects of an index''s functionality. They can keep items from being indexed, change how certain fields are indexed and influence searches.'
           weight: 1
         search-api-index-processors-enable:
           id: search-api-index-processors-enable
@@ -328,23 +325,24 @@ items:
           label: 'Enable processors'
           body: 'This lists all processors available for this index and lets you choose the ones that should be active. (Note: Some processors cannot be disabled.)'
           weight: 2
-          selector: '#edit-status'
+          attributes:
+            data-id: edit-status
         search-api-index-processors-weights:
           id: search-api-index-processors-weights
           plugin: text
           label: 'Processor order'
           body: 'This shows you which enabled processors will be active in the different parts of the indexing/searching workflow, and lets you re-arrange them. This should usually not be necessary, and only be used by advanced users as some processors will lead to unexpected results when used in the wrong order.'
           weight: 3
-          selector: '#edit-weights'
+          attributes:
+            data-id: edit-weights
         search-api-index-processors-settings:
           id: search-api-index-processors-settings
           plugin: text
           label: 'Processor settings'
           body: 'Some processors have additional configuration available, which you are able to change here.'
           weight: 4
-          selector: .form-type--vertical-tabs
-      _core:
-        default_config_hash: vs6bUgjvoJIdOBQIcX2l2Dp6BXpVFbs-h6PsKOmZfYk
+          attributes:
+            data-class: form-type-vertical-tabs
   -
     collection: ''
     name: tour.tour.search-api-server
@@ -372,30 +370,32 @@ items:
           label: Status
           body: 'Shows whether the server is currently enabled or disabled.'
           weight: 2
-          selector: .search-api-server-summary--status
+          attributes:
+            data-class: search-api-server-summary--status
         search-api-server-backend:
           id: search-api-server-backend
           plugin: text
           label: 'Backend class'
           body: 'The backend plugin used for this server. The backend plugin determines how items are indexed and searched – for example, using the database or an Apache Solr server.'
           weight: 3
-          selector: .search-api-server-summary--backend
+          attributes:
+            data-class: search-api-server-summary--backend
         search-api-server-indexes:
           id: search-api-server-indexes
           plugin: text
           label: 'Search indexes'
           body: 'Lists all search indexes that are attached to this server.'
           weight: 4
-          selector: .search-api-server-summary--indexes
+          attributes:
+            data-class: search-api-server-summary--indexes
         search-api-server-clear:
           id: search-api-server-clear
           plugin: text
           label: 'Delete all indexed data'
-          body: "This will permanently remove all data currently indexed on this server for indexes that aren't read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results."
+          body: 'This will permanently remove all data currently indexed on this server for indexes that aren''t read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results.'
           weight: 5
-          selector: '#edit-clear'
-      _core:
-        default_config_hash: XF-X52fvU1eywjOhWClTlaZiOmijG87qNfkOFlqg2cI
+          attributes:
+            data-id: edit-clear
   -
     collection: ''
     name: tour.tour.search-api-server-form
@@ -425,20 +425,21 @@ items:
           label: 'Server name'
           body: 'Enter a name to identify this server. For example, "Solr server". This will only be displayed in the admin user interface.'
           weight: 2
-          selector: '#edit-name'
+          attributes:
+            data-id: edit-name
         search-api-server-form-description:
           id: search-api-server-form-description
           plugin: text
           label: 'Server description'
           body: 'Optionally, enter a description to explain the function of the server in more detail. This will only be displayed in the admin user interface.'
           weight: 3
-          selector: '#edit-description'
+          attributes:
+            data-id: edit-description
         search-api-server-form-backend:
           id: search-api-server-form-backend
           plugin: text
           label: 'Server backend'
           body: 'Servers can be based on different technologies. These are called "backends". A server uses exactly one backend and cannot change it later. You can make the "Database" backend available by enabling the "Database Search" module. Another very common backend is <a href="https://www.drupal.org/project/search_api_solr">"Solr"</a>, which requires to be set up separately.'
           weight: 4
-          selector: '#edit-backend'
-      _core:
-        default_config_hash: 0kIrvs9YL0PKR2nGfa7deQoPoXrWR5nUI0UtCfj04LA
+          attributes:
+            data-id: edit-backend
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml b/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml
index 088dea1..c84b2da 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml
@@ -14,5 +14,3 @@ items:
     name: search_api_db.settings
     data:
       autocomplete_max_occurrences: 0.9
-      _core:
-        default_config_hash: fEmluJPpUL5dVqkWi0Fw89OlZYLhjQqyZIl6HWCDE1s
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml b/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml
index 1747499..eb28411 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml
@@ -18,5 +18,3 @@ items:
       dependencies: {  }
       id: default
       label: Default
-      _core:
-        default_config_hash: U5VlGjd_SfV0Qm_EfnaynOfc549cNscFAx48JfYoMRI
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.statistics.yml b/config/sync/config_snapshot.snapshot.config_sync.module.statistics.yml
deleted file mode 100644
index c34bdd3..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.statistics.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: b4132bc9-ba5f-4b88-9b7d-a359f1456326
-langcode: en
-status: true
-dependencies:
-  module:
-    - statistics
-id: config_sync.module.statistics
-snapshotSet: config_sync
-extensionType: module
-extensionName: statistics
-items:
-  -
-    collection: ''
-    name: statistics.settings
-    data:
-      count_content_views: 0
-      display_max_age: 3600
-      _core:
-        default_config_hash: 83DFdl59OsypYUif32K2NCB8eiszXAKCcay04oZCRpA
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.subpathauto.yml b/config/sync/config_snapshot.snapshot.config_sync.module.subpathauto.yml
deleted file mode 100644
index c783976..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.subpathauto.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: 47a0f3f6-88e0-4b28-84c9-0871d89d4bf0
-langcode: en
-status: true
-dependencies:
-  module:
-    - subpathauto
-id: config_sync.module.subpathauto
-snapshotSet: config_sync
-extensionType: module
-extensionName: subpathauto
-items:
-  -
-    collection: ''
-    name: subpathauto.settings
-    data:
-      depth: 0
-      redirect_support: true
-      _core:
-        default_config_hash: Q5P0hU2bQiNDXF1O2Nl-5AYW1pdze-p0V2hR8x0pFDs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.subprofiles.yml b/config/sync/config_snapshot.snapshot.config_sync.module.subprofiles.yml
index 36650aa..4ebbd23 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.subprofiles.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.subprofiles.yml
@@ -14,5 +14,3 @@ items:
     name: subprofiles.settings
     data:
       subprofile: standard
-      _core:
-        default_config_hash: GnFDZEW-JRQ2H2BMw8vXy1S64DTbrQQeWYJa4FElOzg
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.system.yml b/config/sync/config_snapshot.snapshot.config_sync.module.system.yml
index 0c41c72..1f36b67 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.system.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.system.yml
@@ -20,8 +20,6 @@ items:
       label: 'Fallback date format'
       locked: true
       pattern: 'D, m/d/Y - H:i'
-      _core:
-        default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
   -
     collection: ''
     name: core.date_format.html_date
@@ -33,8 +31,6 @@ items:
       label: 'HTML Date'
       locked: true
       pattern: Y-m-d
-      _core:
-        default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
   -
     collection: ''
     name: core.date_format.html_datetime
@@ -46,8 +42,6 @@ items:
       label: 'HTML Datetime'
       locked: true
       pattern: 'Y-m-d\TH:i:sO'
-      _core:
-        default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
   -
     collection: ''
     name: core.date_format.html_month
@@ -59,8 +53,6 @@ items:
       label: 'HTML Month'
       locked: true
       pattern: Y-m
-      _core:
-        default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
   -
     collection: ''
     name: core.date_format.html_time
@@ -72,8 +64,6 @@ items:
       label: 'HTML Time'
       locked: true
       pattern: 'H:i:s'
-      _core:
-        default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
   -
     collection: ''
     name: core.date_format.html_week
@@ -85,8 +75,6 @@ items:
       label: 'HTML Week'
       locked: true
       pattern: Y-\WW
-      _core:
-        default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
   -
     collection: ''
     name: core.date_format.html_year
@@ -98,8 +86,6 @@ items:
       label: 'HTML Year'
       locked: true
       pattern: 'Y'
-      _core:
-        default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
   -
     collection: ''
     name: core.date_format.html_yearless_date
@@ -111,8 +97,6 @@ items:
       label: 'HTML Yearless date'
       locked: true
       pattern: m-d
-      _core:
-        default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
   -
     collection: ''
     name: core.date_format.long
@@ -124,8 +108,6 @@ items:
       label: 'Default long date'
       locked: false
       pattern: 'l, F j, Y - H:i'
-      _core:
-        default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
   -
     collection: ''
     name: core.date_format.medium
@@ -137,8 +119,6 @@ items:
       label: 'Default medium date'
       locked: false
       pattern: 'D, m/d/Y - H:i'
-      _core:
-        default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
   -
     collection: ''
     name: core.date_format.short
@@ -150,16 +130,11 @@ items:
       label: 'Default short date'
       locked: false
       pattern: 'm/d/Y - H:i'
-      _core:
-        default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
   -
     collection: ''
-    name: system.advisories
+    name: system.authorize
     data:
-      enabled: true
-      interval_hours: 6
-      _core:
-        default_config_hash: x0FuQ_7Cg81mSDQwG028_Z0CjH3R9ib5IDlHeV2BbAo
+      filetransfer_default: null
   -
     collection: ''
     name: system.cron
@@ -167,24 +142,19 @@ items:
       threshold:
         requirements_warning: 172800
         requirements_error: 1209600
-      logging: 1
-      _core:
-        default_config_hash: 5Pw921y1EPfFN98wykliBBLArm51pC-SmrXeYCe7d0Y
   -
     collection: ''
     name: system.date
     data:
-      first_day: 0
       country:
         default: ''
+      first_day: 0
       timezone:
         default: ''
         user:
           configurable: true
-          default: 0
           warn: false
-      _core:
-        default_config_hash: t7clj3mzmOGrXX0HuCH5usf0vEqRtnMTBFVBIEmZ5pc
+          default: 0
   -
     collection: ''
     name: system.diff
@@ -192,68 +162,42 @@ items:
       context:
         lines_leading: 2
         lines_trailing: 2
-      _core:
-        default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
-  -
-    collection: ''
-    name: system.feature_flags
-    data:
-      linkset_endpoint: false
-      _core:
-        default_config_hash: ZYyVj1FtPGV40Cf65YDVTUIc7YgLH6trXlotuevfs2I
   -
     collection: ''
     name: system.file
     data:
       allow_insecure_uploads: false
       default_scheme: public
+      path:
+        temporary: ''
       temporary_maximum_age: 21600
-      _core:
-        default_config_hash: mguGHCYb9Dw5EcpfjwoShGV1Vjkbz3QuPRCLfxiye-g
   -
     collection: ''
     name: system.image
     data:
       toolkit: gd
-      _core:
-        default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24
   -
     collection: ''
     name: system.image.gd
     data:
       jpeg_quality: 75
-      _core:
-        default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ
   -
     collection: ''
     name: system.logging
     data:
       error_level: hide
-      _core:
-        default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA
   -
     collection: ''
     name: system.mail
     data:
       interface:
         default: php_mail
-      mailer_dsn:
-        scheme: sendmail
-        host: default
-        user: null
-        password: null
-        port: null
-        options: {  }
-      _core:
-        default_config_hash: 5PvD9swkqWUeHkabdvbJ2SQqdhrzjkCT21wtD4BLfk4
   -
     collection: ''
     name: system.maintenance
     data:
-      langcode: en
       message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
-      _core:
-        default_config_hash: 1SNdA25INsV5YjlgAJtfC-6AM8VcWe_00xneMLb2yFg
+      langcode: en
   -
     collection: ''
     name: system.menu.account
@@ -265,8 +209,6 @@ items:
       label: 'User account menu'
       description: 'Links related to the active user account'
       locked: true
-      _core:
-        default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw
   -
     collection: ''
     name: system.menu.admin
@@ -278,8 +220,6 @@ items:
       label: Administration
       description: 'Administrative task links'
       locked: true
-      _core:
-        default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0
   -
     collection: ''
     name: system.menu.footer
@@ -291,8 +231,6 @@ items:
       label: Footer
       description: 'Site information links'
       locked: true
-      _core:
-        default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc
   -
     collection: ''
     name: system.menu.main
@@ -304,8 +242,6 @@ items:
       label: 'Main navigation'
       description: 'Site section links'
       locked: true
-      _core:
-        default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8
   -
     collection: ''
     name: system.menu.tools
@@ -317,8 +253,6 @@ items:
       label: Tools
       description: 'User tool links, often added by modules'
       locked: true
-      _core:
-        default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc
   -
     collection: ''
     name: system.performance
@@ -337,21 +271,21 @@ items:
       js:
         preprocess: true
         gzip: true
-      _core:
-        default_config_hash: jtno5biznHZbrIgKwzq-ze-7XaQxLCGe6PeUOR7bRiQ
+      stale_file_threshold: 2592000
   -
     collection: ''
     name: system.rss
     data:
+      channel:
+        description: ''
       items:
+        limit: 10
         view_mode: rss
-      _core:
-        default_config_hash: MIpNzlG4gPunfS7vTCwUPum6QH3GUsEBMj-qS631Jw0
+      langcode: en
   -
     collection: ''
     name: system.site
     data:
-      langcode: en
       uuid: ''
       name: ''
       mail: ''
@@ -362,17 +296,14 @@ items:
         front: /user/login
       admin_compact_mode: false
       weight_select_max: 100
+      langcode: en
       default_langcode: en
-      _core:
-        default_config_hash: l58O_yEXSo-SeJi19LXdzTU1tNJG3lmnIhCitRkM1tk
   -
     collection: ''
     name: system.theme
     data:
-      admin: ''
-      default: stark
-      _core:
-        default_config_hash: 6lQ55NXM9ysybMQ6NzJj4dtiQ1dAkOYxdDompa-r_kk
+      admin: seven
+      default: octavia
   -
     collection: ''
     name: system.theme.global
@@ -386,10 +317,8 @@ items:
         comment_user_picture: true
         comment_user_verification: true
         favicon: true
-        node_user_picture: false
+        node_user_picture: true
       logo:
         path: ''
-        url: null
+        url: ''
         use_default: true
-      _core:
-        default_config_hash: 3qY7PfXvJcCtBPQpb9FxxBgXtUGFzx8JVakfWiNNYzw
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml b/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml
index 79b10fd..26571c3 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml
@@ -20,43 +20,8 @@ items:
           - taxonomy
       id: taxonomy_term.full
       label: 'Taxonomy term page'
-      description: ''
       targetEntityType: taxonomy_term
       cache: true
-      _core:
-        default_config_hash: iukUENpf8CFvjZbGGacKX_Ges0-lU9z6zvsd32P6kbo
-  -
-    collection: ''
-    name: system.action.taxonomy_term_publish_action
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - taxonomy
-      id: taxonomy_term_publish_action
-      label: 'Publish taxonomy term'
-      type: taxonomy_term
-      plugin: 'entity:publish_action:taxonomy_term'
-      configuration: {  }
-      _core:
-        default_config_hash: DoVt_VGgVLcDD4XmVbSFzr0K17SJy9imFiYusKkJBgY
-  -
-    collection: ''
-    name: system.action.taxonomy_term_unpublish_action
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - taxonomy
-      id: taxonomy_term_unpublish_action
-      label: 'Unpublish taxonomy term'
-      type: taxonomy_term
-      plugin: 'entity:unpublish_action:taxonomy_term'
-      configuration: {  }
-      _core:
-        default_config_hash: z2sNRM3ECa7FPCGnSNje_9SmZJQgwhD_6fG_L4Mr8zI
   -
     collection: ''
     name: taxonomy.settings
@@ -64,8 +29,6 @@ items:
       maintain_index_table: true
       override_selector: false
       terms_per_page_admin: 100
-      _core:
-        default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias
   -
     collection: ''
     name: views.view.taxonomy_term
@@ -86,32 +49,29 @@ items:
       tag: default
       base_table: node_field_data
       base_field: nid
+      core: '8'
       display:
         default:
           id: default
-          display_title: Default
+          display_title: Master
           display_plugin: default
           position: 0
           display_options:
-            fields: {  }
-            pager:
-              type: mini
+            query:
+              type: views_query
               options:
-                offset: 0
-                items_per_page: 10
-                total_pages: 0
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
+                query_comment: ''
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_tags: {  }
+            access:
+              type: perm
+              options:
+                perm: 'access content'
+            cache:
+              type: tag
+              options: {  }
             exposed_form:
               type: basic
               options:
@@ -122,41 +82,49 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
+            pager:
+              type: mini
               options:
-                perm: 'access content'
-            cache:
-              type: tag
-              options: {  }
-            empty: {  }
+                items_per_page: 10
+                offset: 0
+                id: 0
+                total_pages: 0
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                tags:
+                  previous: ‹‹
+                  next: ››
             sorts:
               sticky:
                 id: sticky
                 table: taxonomy_index
                 field: sticky
+                order: DESC
+                plugin_id: standard
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: standard
-                order: DESC
+                exposed: false
                 expose:
                   label: ''
-                  field_identifier: sticky
-                exposed: false
               created:
                 id: created
                 table: taxonomy_index
                 field: created
+                order: DESC
+                plugin_id: date
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: date
-                order: DESC
+                exposed: false
                 expose:
                   label: ''
-                  field_identifier: created
-                exposed: false
                 granularity: second
             arguments:
               tid:
@@ -166,7 +134,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: taxonomy_index_tid
                 default_action: 'not found'
                 exception:
                   value: ''
@@ -177,11 +144,12 @@ items:
                 default_argument_type: fixed
                 default_argument_options:
                   argument: ''
+                default_argument_skip_url: false
                 summary_options:
                   base_path: ''
                   count: true
-                  override: false
                   items_per_page: 25
+                  override: false
                 summary:
                   sort_order: asc
                   number_of_records: 0
@@ -191,14 +159,15 @@ items:
                   type: 'entity:taxonomy_term'
                   fail: 'not found'
                 validate_options:
-                  bundles: {  }
                   access: true
                   operation: view
                   multiple: 0
+                  bundles: {  }
                 break_phrase: false
                 add_table: false
                 require_value: false
                 reduce_duplicates: false
+                plugin_id: taxonomy_index_tid
             filters:
               langcode:
                 id: langcode
@@ -207,9 +176,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: node
-                entity_field: langcode
-                plugin_id: language
                 operator: in
                 value:
                   '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -221,8 +187,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -242,6 +206,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                plugin_id: language
+                entity_type: node
+                entity_field: langcode
               status:
                 id: status
                 table: taxonomy_index
@@ -249,7 +216,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: boolean
                 operator: '='
                 value: '1'
                 group: 1
@@ -260,8 +226,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -280,6 +244,7 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                plugin_id: boolean
             style:
               type: default
               options:
@@ -291,17 +256,6 @@ items:
               type: 'entity:node'
               options:
                 view_mode: teaser
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
-            link_display: page_1
-            link_url: ''
             header:
               entity_taxonomy_term:
                 id: entity_taxonomy_term
@@ -310,22 +264,27 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: entity
                 empty: true
+                tokenize: true
                 target: '{{ raw_arguments.tid }}'
                 view_mode: full
-                tokenize: true
                 bypass_access: false
+                plugin_id: entity
             footer: {  }
+            empty: {  }
+            relationships: {  }
+            fields: {  }
             display_extenders: {  }
+            link_url: ''
+            link_display: page_1
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         feed_1:
           id: feed_1
@@ -333,37 +292,37 @@ items:
           display_plugin: feed
           position: 2
           display_options:
+            query:
+              type: views_query
+              options: {  }
             pager:
               type: some
               options:
-                offset: 0
                 items_per_page: 10
+                offset: 0
+            path: taxonomy/term/%/feed
+            displays:
+              page_1: page_1
+              default: '0'
             style:
               type: rss
               options:
+                description: ''
                 grouping: {  }
                 uses_fields: false
-                description: ''
             row:
               type: node_rss
               options:
                 relationship: none
                 view_mode: default
-            query:
-              type: views_query
-              options: {  }
             display_extenders: {  }
-            path: taxonomy/term/%/feed
-            displays:
-              page_1: page_1
-              default: '0'
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
         page_1:
           id: page_1
@@ -374,16 +333,14 @@ items:
             query:
               type: views_query
               options: {  }
-            display_extenders: {  }
             path: taxonomy/term/%
+            display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_interface'
               - url
               - url.query_args
               - 'user.node_grants:view'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: z9csC6m3M65M2JczdNul_lMUrVg8ZO66pbSq8jPCBKs
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.text.yml b/config/sync/config_snapshot.snapshot.config_sync.module.text.yml
index d8633eb..9716844 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.text.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.text.yml
@@ -14,5 +14,3 @@ items:
     name: text.settings
     data:
       default_summary_length: 600
-      _core:
-        default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml b/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml
index b55e7e7..55054ba 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml
@@ -8,140 +8,4 @@ id: config_sync.module.tour
 snapshotSet: config_sync
 extensionType: module
 extensionName: tour
-items:
-  -
-    collection: ''
-    name: tour.tour.block-layout
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - block
-      id: block-layout
-      label: 'Block Layout Page'
-      module: block
-      routes:
-        -
-          route_name: block.admin_display
-      tips:
-        block-layout:
-          id: block-layout
-          plugin: text
-          label: 'Block Layout'
-          weight: 1
-          body: 'Blocks are boxes of content rendered into an area, or region, of a web page that can be displayed in regions (such as footer or sidebar) on your page.'
-        place-block:
-          id: place-block
-          plugin: text
-          label: 'Place Blocks'
-          weight: 2
-          selector: .button--small
-          body: 'Any custom or contributed block can be added to a particular region by clicking on a button Place block. A new block can also be created by clicking on Place Block'
-        block-region:
-          id: block-region
-          plugin: text
-          label: 'Block Region'
-          weight: 3
-          selector: .block-region-select
-          body: 'Assign or change the region of a block by clicking here. A dropdown list with all the regions will appear. You can place one block in multiple regions.'
-        configure-block:
-          id: configure-block
-          plugin: text
-          label: 'Configure Block'
-          weight: 4
-          selector: .dropbutton-widget
-          body: 'By Clicking on "Configure" you can go ahead and edit the contents of the block, deal with the visibility settings and even change the placement of where it is on your theme.'
-      _core:
-        default_config_hash: pG6QAggTrD7RQWb79PT3NH48GSvTiePly_l53f3OENs
-  -
-    collection: ''
-    name: tour.tour.views-ui
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - views_ui
-      id: views-ui
-      label: 'View edit page'
-      module: views_ui
-      routes:
-        -
-          route_name: entity.view.edit_form
-        -
-          route_name: entity.view.edit_display_form
-      tips:
-        views-main:
-          id: views-main
-          plugin: text
-          label: 'Manage view settings'
-          weight: 1
-          body: 'View or edit the configuration.'
-        views-ui-displays:
-          id: views-ui-displays
-          plugin: text
-          label: 'Displays in this view'
-          weight: 2
-          selector: '#views-display-top'
-          body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.'
-        views-ui-view-admin:
-          id: views-ui-view-admin
-          plugin: text
-          label: 'View administration'
-          weight: 3
-          position: right
-          selector: '#views-display-extra-actions'
-          body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.'
-        views-ui-format:
-          id: views-ui-format
-          plugin: text
-          label: 'Output format'
-          weight: 4
-          selector: .views-ui-display-tab-bucket.format
-          body: "Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal's base functionality."
-        views-ui-fields:
-          id: views-ui-fields
-          plugin: text
-          label: Fields
-          weight: 5
-          selector: .views-ui-display-tab-bucket.field
-          body: 'If this view uses fields, they are listed here. You can click on a field to configure it.'
-        views-ui-filter:
-          id: views-ui-filter
-          plugin: text
-          label: 'Filter your view'
-          weight: 6
-          selector: .views-ui-display-tab-bucket.filter
-          body: 'Add filters to limit the results in the output. E.g., to only show content that is <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.'
-        views-ui-filter-operations:
-          id: views-ui-filter-operations
-          plugin: text
-          label: 'Filter actions'
-          weight: 7
-          selector: '.views-ui-display-tab-bucket.filter .dropbutton-widget'
-          body: 'Add, rearrange or remove filters.'
-        views-ui-sorts:
-          id: views-ui-sorts
-          plugin: text
-          label: 'Sort Criteria'
-          weight: 8
-          selector: .views-ui-display-tab-bucket.sort
-          body: 'Control the order in which the results are output. Click on an active sort rule to configure it.'
-        views-ui-sorts-operations:
-          id: views-ui-sorts-operations
-          plugin: text
-          label: 'Sort actions'
-          weight: 9
-          selector: '.views-ui-display-tab-bucket.sort .dropbutton-widget'
-          body: 'Add, rearrange or remove sorting rules.'
-        views-ui-preview:
-          id: views-ui-preview
-          plugin: text
-          label: Preview
-          weight: 10
-          position: right
-          selector: '#preview-submit'
-          body: 'Show a preview of the view output.'
-      _core:
-        default_config_hash: XIYL1KF7ND2XQRa5AxvEcp8vgCN2kUGiuBNhCgxrPME
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.twigsuggest.yml b/config/sync/config_snapshot.snapshot.config_sync.module.twigsuggest.yml
deleted file mode 100644
index bc91b38..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.twigsuggest.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 66ed2ad1-412d-4560-89e8-a69e5bb2d759
-langcode: en
-status: true
-dependencies:
-  module:
-    - twigsuggest
-id: config_sync.module.twigsuggest
-snapshotSet: config_sync
-extensionType: module
-extensionName: twigsuggest
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.update.yml b/config/sync/config_snapshot.snapshot.config_sync.module.update.yml
index 5b6f215..cd0a644 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.update.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.update.yml
@@ -1,4 +1,4 @@
-uuid: 0e633ed6-c15f-43d0-90b2-b3ddfe0ae65a
+uuid: c4e9a47c-fa17-4eb1-a9ce-003d7850a878
 langcode: en
 status: true
 dependencies:
@@ -17,11 +17,9 @@ items:
         disabled_extensions: false
         interval_days: 1
       fetch:
-        url: null
+        url: ''
         max_attempts: 2
         timeout: 30
       notification:
         emails: {  }
         threshold: all
-      _core:
-        default_config_hash: xbYr66-g0FjNgVBkGypCuN46vBI2XHntXN1URawq1s4
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.user.yml b/config/sync/config_snapshot.snapshot.config_sync.module.user.yml
index c0bb9e6..4065ae1 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.user.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.user.yml
@@ -20,11 +20,8 @@ items:
           - user
       id: user.register
       label: Register
-      description: ''
       targetEntityType: user
       cache: true
-      _core:
-        default_config_hash: 5pE_4hurqtIlZN3XDi7eTo5RG13BMG0Rh9HYlRI3h8U
   -
     collection: ''
     name: core.entity_view_mode.user.compact
@@ -36,11 +33,8 @@ items:
           - user
       id: user.compact
       label: Compact
-      description: ''
       targetEntityType: user
       cache: true
-      _core:
-        default_config_hash: TtD7OuGskOsQfoGyxXkrdtllBpR37J19d5BMQDZWJgA
   -
     collection: ''
     name: core.entity_view_mode.user.full
@@ -52,11 +46,26 @@ items:
           - user
       id: user.full
       label: 'User account'
-      description: ''
       targetEntityType: user
       cache: true
-      _core:
-        default_config_hash: ZbXunWS_xAvMZXFfinyvClDAb_RCVLt7gAzE3v16E-Q
+  -
+    collection: ''
+    name: rdf.mapping.user.user
+    data:
+      langcode: en
+      status: true
+      dependencies:
+        module:
+          - user
+      id: user.user
+      targetEntityType: user
+      bundle: user
+      types:
+        - 'schema:Person'
+      fieldMappings:
+        name:
+          properties:
+            - 'schema:name'
   -
     collection: ''
     name: system.action.user_block_user_action
@@ -71,8 +80,6 @@ items:
       type: user
       plugin: user_block_user_action
       configuration: {  }
-      _core:
-        default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4
   -
     collection: ''
     name: system.action.user_cancel_user_action
@@ -87,8 +94,6 @@ items:
       type: user
       plugin: user_cancel_user_action
       configuration: {  }
-      _core:
-        default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU
   -
     collection: ''
     name: system.action.user_unblock_user_action
@@ -103,8 +108,6 @@ items:
       type: user
       plugin: user_unblock_user_action
       configuration: {  }
-      _core:
-        default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0
   -
     collection: ''
     name: user.flood
@@ -114,197 +117,73 @@ items:
       ip_window: 3600
       user_limit: 5
       user_window: 21600
-      _core:
-        default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
   -
     collection: ''
     name: user.mail
     data:
-      langcode: en
       cancel_confirm:
+        body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
         subject: 'Account cancellation request for [user:display-name] at [site:name]'
-        body: |-
-          [user:display-name]
-
-          A request to cancel your account has been made at [site:name].
-
-          You may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:
-
-          [user:cancel-url]
-
-          NOTE: The cancellation of your account is not reversible.
-
-          This link expires in one day and nothing will happen if it is not used.
-
-          --  [site:name] team
       password_reset:
+        body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
         subject: 'Replacement login information for [user:display-name] at [site:name]'
-        body: |-
-          [user:display-name],
-
-          A request to reset the password for your account has been made at [site:name].
-
-          You may now log in by clicking this link or copying and pasting it into your browser:
-
-          [user:one-time-login-url]
-
-          This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.
-
-          --  [site:name] team
       register_admin_created:
+        body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
         subject: 'An administrator created an account for you at [site:name]'
-        body: |-
-          [user:display-name],
-
-          A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:
-
-          [user:one-time-login-url]
-
-          This link can only be used once to log in and will lead you to a page where you can set your password.
-
-          After setting your password, you will be able to log in at [site:login-url] in the future using:
-
-          username: [user:name]
-          password: Your password
-
-          --  [site:name] team
       register_no_approval_required:
+        body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
         subject: 'Account details for [user:display-name] at [site:name]'
-        body: |-
-          [user:display-name],
-
-          Thank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:
-
-          [user:one-time-login-url]
-
-          This link can only be used once to log in and will lead you to a page where you can set your password.
-
-          After setting your password, you will be able to log in at [site:login-url] in the future using:
-
-          username: [user:name]
-          password: Your password
-
-          --  [site:name] team
       register_pending_approval:
+        body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n--  [site:name] team"
         subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
-        body: |-
-          [user:display-name],
-
-          Thank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.
-
-          --  [site:name] team
       register_pending_approval_admin:
+        body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
         subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
-        body: |-
-          [user:display-name] has applied for an account.
-
-          [user:edit-url]
       status_activated:
+        body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n--  [site:name] team"
         subject: 'Account details for [user:display-name] at [site:name] (approved)'
-        body: |-
-          [user:display-name],
-
-          Your account at [site:name] has been activated.
-
-          You may now log in by clicking this link or copying and pasting it into your browser:
-
-          [user:one-time-login-url]
-
-          This link can only be used once to log in and will lead you to a page where you can set your password.
-
-          After setting your password, you will be able to log in at [site:login-url] in the future using:
-
-          username: [user:account-name]
-          password: Your password
-
-          --  [site:name] team
       status_blocked:
+        body: "[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n--  [site:name] team"
         subject: 'Account details for [user:display-name] at [site:name] (blocked)'
-        body: |-
-          [user:display-name],
-
-          Your account on [site:name] has been blocked.
-
-          --  [site:name] team
       status_canceled:
+        body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
         subject: 'Account details for [user:display-name] at [site:name] (canceled)'
-        body: |-
-          [user:display-name],
-
-          Your account on [site:name] has been canceled.
-
-          --  [site:name] team
-      _core:
-        default_config_hash: 6CZIzFifRq3qbdq3n3nDpEOO4hWIQtKOAQNPvGNGKeM
+      langcode: en
   -
     collection: ''
     name: user.role.anonymous
     data:
       langcode: en
       status: true
-      dependencies:
-        module:
-          - exclude_node_title
-          - media
-          - system
-          - filter
-        config:
-          - filter.format.restricted_html
+      dependencies: {  }
       id: anonymous
       label: 'Anonymous user'
       weight: 0
       is_admin: false
       permissions:
-        - 'access content'
-        - 'use exclude node title'
-        - 'view media'
         - 'use text format restricted_html'
+        - 'access site-wide contact form'
         - 'access comments'
-      _core:
-        default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow
   -
     collection: ''
     name: user.role.authenticated
     data:
       langcode: en
       status: true
-      dependencies:
-        module:
-          - exclude_node_title
-          - file
-          - media
-          - shortcut
-          - system
-          - filter
-          - content_moderation
-        config:
-          - filter.format.basic_html
-          - workflows.workflow.workflow_buttons_trash_publishing
+      dependencies: {  }
       id: authenticated
       label: 'Authenticated user'
       weight: 1
       is_admin: false
       permissions:
-        - 'access content'
         - 'access shortcuts'
-        - 'cancel account'
-        - 'change own username'
-        - 'delete own files'
-        - 'use exclude node title'
-        - 'view media'
-        - 'use text format basic_html'
-        - 'use workflow_buttons_trash_publishing transition create_new_draft'
-        - 'use workflow_buttons_trash_publishing transition save_draft_leave_current_published'
-        - 'use workflow_buttons_trash_publishing transition save_unpublished'
+        - 'access site-wide contact form'
         - 'access comments'
         - 'post comments'
-      _core:
-        default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI
   -
     collection: ''
     name: user.settings
     data:
-      langcode: en
       anonymous: Anonymous
       verify_mail: true
       notify:
@@ -316,12 +195,11 @@ items:
         register_admin_created: true
         register_no_approval_required: true
         register_pending_approval: true
-      register: visitors_admin_approval
+      register: visitors
       cancel_method: user_cancel_block
       password_reset_timeout: 86400
       password_strength: true
-      _core:
-        default_config_hash: '-htDFWUv1S4OlJMzta2nhFl4QbhJvu0D9xsJ-clxo-M'
+      langcode: en
   -
     collection: ''
     name: views.view.user_admin_people
@@ -338,14 +216,134 @@ items:
       tag: default
       base_table: users_field_data
       base_field: uid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: People
+            access:
+              type: perm
+              options:
+                perm: 'administer users'
+            cache:
+              type: tag
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
+            exposed_form:
+              type: basic
+              options:
+                submit_button: Filter
+                reset_button: true
+                reset_button_label: Reset
+                exposed_sorts_label: 'Sort by'
+                expose_sort_order: true
+                sort_asc_label: Asc
+                sort_desc_label: Desc
+            pager:
+              type: full
+              options:
+                items_per_page: 50
+                offset: 0
+                id: 0
+                total_pages: 0
+                tags:
+                  previous: '‹ Previous'
+                  next: 'Next ›'
+                  first: '« First'
+                  last: 'Last »'
+                expose:
+                  items_per_page: false
+                  items_per_page_label: 'Items per page'
+                  items_per_page_options: '5, 10, 25, 50'
+                  items_per_page_options_all: false
+                  items_per_page_options_all_label: '- All -'
+                  offset: false
+                  offset_label: Offset
+                quantity: 9
+            style:
+              type: table
+              options:
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                override: true
+                sticky: false
+                summary: ''
+                columns:
+                  user_bulk_form: user_bulk_form
+                  name: name
+                  status: status
+                  rid: rid
+                  created: created
+                  access: access
+                  edit_node: edit_node
+                  dropbutton: dropbutton
+                info:
+                  user_bulk_form:
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  name:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                  status:
+                    sortable: true
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  rid:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  created:
+                    sortable: true
+                    default_sort_order: desc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  access:
+                    sortable: true
+                    default_sort_order: desc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  edit_node:
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: priority-low
+                  dropbutton:
+                    sortable: false
+                    default_sort_order: asc
+                    align: ''
+                    separator: ''
+                    empty_column: false
+                    responsive: ''
+                default: created
+                empty_table: true
+            row:
+              type: fields
             fields:
               user_bulk_form:
                 id: user_bulk_form
@@ -354,8 +352,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                plugin_id: user_bulk_form
                 label: 'Bulk update'
                 exclude: false
                 alter:
@@ -397,6 +393,8 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: user_bulk_form
+                entity_type: user
               name:
                 id: name
                 table: users_field_data
@@ -404,9 +402,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
                 label: Username
                 exclude: false
                 alter:
@@ -448,7 +443,10 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: field
                 type: user_name
+                entity_type: user
+                entity_field: name
               status:
                 id: status
                 table: users_field_data
@@ -456,9 +454,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: status
-                plugin_id: field
                 label: Status
                 exclude: false
                 alter:
@@ -500,11 +495,14 @@ items:
                 hide_empty: false
                 empty_zero: false
                 hide_alter_empty: true
+                plugin_id: field
                 type: boolean
                 settings:
                   format: custom
-                  format_custom_false: Blocked
                   format_custom_true: Active
+                  format_custom_false: Blocked
+                entity_type: user
+                entity_field: status
               roles_target_id:
                 id: roles_target_id
                 table: user__roles
@@ -512,7 +510,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: user_roles
                 label: Roles
                 exclude: false
                 alter:
@@ -556,6 +553,7 @@ items:
                 hide_alter_empty: true
                 type: ul
                 separator: ', '
+                plugin_id: user_roles
               created:
                 id: created
                 table: users_field_data
@@ -563,9 +561,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: created
-                plugin_id: field
                 label: 'Member for'
                 exclude: false
                 alter:
@@ -612,6 +607,9 @@ items:
                   future_format: '@interval'
                   past_format: '@interval'
                   granularity: 2
+                plugin_id: field
+                entity_type: user
+                entity_field: created
               access:
                 id: access
                 table: users_field_data
@@ -619,9 +617,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: access
-                plugin_id: field
                 label: 'Last access'
                 exclude: false
                 alter:
@@ -668,6 +663,9 @@ items:
                   future_format: '@interval hence'
                   past_format: '@interval ago'
                   granularity: 2
+                plugin_id: field
+                entity_type: user
+                entity_field: access
               operations:
                 id: operations
                 table: users
@@ -675,8 +673,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                plugin_id: entity_operations
                 label: Operations
                 exclude: false
                 alter:
@@ -719,6 +715,8 @@ items:
                 empty_zero: false
                 hide_alter_empty: true
                 destination: true
+                entity_type: user
+                plugin_id: entity_operations
               mail:
                 id: mail
                 table: users_field_data
@@ -726,9 +724,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: mail
-                plugin_id: field
                 label: ''
                 exclude: true
                 alter:
@@ -783,72 +778,9 @@ items:
                 multi_type: separator
                 separator: ', '
                 field_api_classes: false
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 50
-                total_pages: 0
-                id: 0
-                tags:
-                  next: 'Next ›'
-                  previous: '‹ Previous'
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Filter
-                reset_button: true
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: perm
-              options:
-                perm: 'administer users'
-            cache:
-              type: tag
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'No people available.'
-                tokenize: false
-            sorts:
-              created:
-                id: created
-                table: users_field_data
-                field: created
-                relationship: none
-                group_type: group
-                admin_label: ''
+                plugin_id: field
                 entity_type: user
-                entity_field: created
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: created
-                exposed: false
-                granularity: second
+                entity_field: mail
             filters:
               combine:
                 id: combine
@@ -857,7 +789,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: combine
                 operator: contains
                 value: ''
                 group: 1
@@ -868,8 +799,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: combine_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: user
                   required: false
                   remember: false
@@ -893,6 +822,7 @@ items:
                 fields:
                   name: name
                   mail: mail
+                plugin_id: combine
               status:
                 id: status
                 table: users_field_data
@@ -900,9 +830,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: status
-                plugin_id: boolean
                 operator: '='
                 value: '1'
                 group: 1
@@ -913,8 +840,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: status_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: status
                   required: false
                   remember: false
@@ -943,6 +868,9 @@ items:
                       title: Blocked
                       operator: '='
                       value: '0'
+                plugin_id: boolean
+                entity_type: user
+                entity_field: status
               roles_target_id:
                 id: roles_target_id
                 table: user__roles
@@ -950,7 +878,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: user_roles
                 operator: or
                 value: {  }
                 group: 1
@@ -961,8 +888,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: roles_target_id_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: role
                   required: false
                   remember: false
@@ -985,6 +910,7 @@ items:
                   default_group_multiple: {  }
                   group_items: {  }
                 reduce_duplicates: false
+                plugin_id: user_roles
               permission:
                 id: permission
                 table: user__roles
@@ -992,7 +918,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: user_permissions
                 operator: or
                 value: {  }
                 group: 1
@@ -1003,8 +928,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: permission_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: permission
                   required: false
                   remember: false
@@ -1027,6 +950,7 @@ items:
                   default_group_multiple: {  }
                   group_items: {  }
                 reduce_duplicates: false
+                plugin_id: user_permissions
               default_langcode:
                 id: default_langcode
                 table: users_field_data
@@ -1034,9 +958,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: default_langcode
-                plugin_id: boolean
                 operator: '='
                 value: '1'
                 group: 1
@@ -1047,8 +968,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -1067,6 +986,9 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                entity_type: user
+                entity_field: default_langcode
+                plugin_id: boolean
               uid_raw:
                 id: uid_raw
                 table: users_field_data
@@ -1074,8 +996,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                plugin_id: numeric
                 operator: '!='
                 value:
                   min: ''
@@ -1089,8 +1009,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -1109,149 +1027,95 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
+                plugin_id: numeric
+                entity_type: user
+            sorts:
+              created:
+                id: created
+                table: users_field_data
+                field: created
+                relationship: none
+                group_type: group
+                admin_label: ''
+                order: DESC
+                exposed: false
+                expose:
+                  label: ''
+                granularity: second
+                plugin_id: date
+                entity_type: user
+                entity_field: created
+            title: People
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: ''
+                empty: true
+                tokenize: false
+                content: 'No people available.'
+                plugin_id: text_custom
+            use_more: false
+            use_more_always: false
+            use_more_text: more
+            display_comment: ''
+            use_ajax: false
+            hide_attachment_summary: false
+            show_admin_links: true
+            group_by: false
+            link_url: ''
+            link_display: page_1
+            css_class: ''
             filter_groups:
               operator: AND
               groups:
                 1: AND
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  user_bulk_form: user_bulk_form
-                  name: name
-                  status: status
-                  rid: rid
-                  created: created
-                  access: access
-                  edit_node: edit_node
-                  dropbutton: dropbutton
-                default: created
-                info:
-                  user_bulk_form:
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  name:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  status:
-                    sortable: true
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  rid:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  created:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  access:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  edit_node:
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: priority-low
-                  dropbutton:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: false
-                summary: ''
-                empty_table: true
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            css_class: ''
-            use_ajax: false
-            group_by: false
-            show_admin_links: true
-            use_more: false
-            use_more_always: false
-            use_more_text: more
-            link_display: page_1
-            link_url: ''
-            display_comment: ''
-            hide_attachment_summary: false
             display_extenders: {  }
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
         page_1:
+          display_plugin: page
           id: page_1
           display_title: Page
-          display_plugin: page
           position: 1
           display_options:
-            defaults:
-              show_admin_links: false
-            show_admin_links: false
-            display_extenders: {  }
             path: admin/people/list
+            show_admin_links: false
             menu:
               type: 'default tab'
               title: List
               description: 'Find and manage people interacting with your site.'
-              weight: -10
               menu_name: admin
+              weight: -10
               context: ''
             tab_options:
               type: normal
               title: People
               description: 'Manage user accounts, roles, and permissions.'
-              weight: 0
               menu_name: admin
+              weight: 0
+            defaults:
+              show_admin_links: false
+            display_extenders: {  }
           cache_metadata:
-            max-age: 0
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - url
               - url.query_args
               - user.permissions
+            max-age: 0
             tags: {  }
-      _core:
-        default_config_hash: njaZigMvB4ap21Fg_tQcJhWgYJCGNi49Z5rRL_N6RI0
   -
     collection: ''
     name: views.view.who_s_new
@@ -1262,60 +1126,35 @@ items:
         module:
           - user
       id: who_s_new
-      label: "Who's new"
+      label: 'Who''s new'
       module: user
       description: 'Shows a list of the newest user accounts on the site.'
       tag: default
       base_table: users_field_data
       base_field: uid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: "Who's new"
-            fields:
-              name:
-                id: name
-                table: users_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  make_link: false
-                  absolute: false
-                  word_boundary: false
-                  ellipsis: false
-                  strip_tags: false
-                  trim: false
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: user_name
-            pager:
-              type: some
+            access:
+              type: perm
               options:
-                offset: 0
-                items_per_page: 5
+                perm: 'access content'
+            cache:
+              type: tag
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
             exposed_form:
               type: basic
               options:
@@ -1326,46 +1165,62 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
+            pager:
+              type: some
               options:
-                perm: 'access content'
-            cache:
-              type: tag
-              options: {  }
-            empty: {  }
-            sorts:
-              created:
-                id: created
+                items_per_page: 5
+                offset: 0
+            style:
+              type: html_list
+            row:
+              type: fields
+            fields:
+              name:
+                id: name
                 table: users_field_data
-                field: created
+                field: name
+                label: ''
+                plugin_id: field
+                type: user_name
+                alter:
+                  alter_text: false
+                  make_link: false
+                  absolute: false
+                  trim: false
+                  word_boundary: false
+                  ellipsis: false
+                  strip_tags: false
+                  html: false
+                hide_empty: false
+                empty_zero: false
                 relationship: none
                 group_type: group
                 admin_label: ''
+                exclude: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_alter_empty: true
                 entity_type: user
-                entity_field: created
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: created
-                exposed: false
-                granularity: second
-            arguments: {  }
+                entity_field: name
             filters:
               status:
-                id: status
+                value: '1'
                 table: users_field_data
                 field: status
-                entity_type: user
-                entity_field: status
-                plugin_id: boolean
-                value: '1'
-                group: 1
+                id: status
                 expose:
                   operator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
+                group: 1
+                plugin_id: boolean
+                entity_type: user
+                entity_field: status
               access:
                 id: access
                 table: users_field_data
@@ -1373,9 +1228,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: access
-                plugin_id: date
                 operator: '>'
                 value:
                   min: ''
@@ -1390,8 +1242,6 @@ items:
                   description: ''
                   use_operator: false
                   operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: ''
                   required: false
                   remember: false
@@ -1410,48 +1260,56 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            style:
-              type: html_list
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
+                plugin_id: date
+                entity_type: user
+                entity_field: access
+            sorts:
+              created:
+                id: created
+                table: users_field_data
+                field: created
+                relationship: none
+                group_type: group
+                admin_label: ''
+                order: DESC
+                exposed: false
+                expose:
+                  label: ''
+                granularity: second
+                plugin_id: date
+                entity_type: user
+                entity_field: created
+            title: 'Who''s new'
             header: {  }
             footer: {  }
+            empty: {  }
+            relationships: {  }
+            arguments: {  }
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user.permissions
+            max-age: -1
             tags: {  }
         block_1:
-          id: block_1
-          display_title: "Who's new"
           display_plugin: block
+          id: block_1
+          display_title: 'Who''s new'
           position: 1
           display_options:
             display_description: 'A list of new users'
-            display_extenders: {  }
-            block_description: "Who's new"
+            block_description: 'Who''s new'
             block_category: User
+            display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: zji0_13MyVGK7Bn1lUMDeZyyOIZedWvqpYUeM_SioPI
   -
     collection: ''
     name: views.view.who_s_online
@@ -1462,60 +1320,35 @@ items:
         module:
           - user
       id: who_s_online
-      label: "Who's online block"
+      label: 'Who''s online block'
       module: user
       description: 'Shows the user names of the most recently active users, and the total number of active users.'
       tag: default
       base_table: users_field_data
       base_field: uid
+      core: 8.x
       display:
         default:
-          id: default
-          display_title: Default
           display_plugin: default
+          id: default
+          display_title: Master
           position: 0
           display_options:
-            title: "Who's online"
-            fields:
-              name:
-                id: name
-                table: users_field_data
-                field: name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                entity_type: user
-                entity_field: name
-                plugin_id: field
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  make_link: false
-                  absolute: false
-                  word_boundary: false
-                  ellipsis: false
-                  strip_tags: false
-                  trim: false
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                type: user_name
-            pager:
-              type: some
+            access:
+              type: perm
               options:
-                offset: 0
-                items_per_page: 10
+                perm: 'access user profiles'
+            cache:
+              type: tag
+              options: {  }
+            query:
+              type: views_query
+              options:
+                disable_sql_rewrite: false
+                distinct: false
+                replica: false
+                query_comment: ''
+                query_tags: {  }
             exposed_form:
               type: basic
               options:
@@ -1526,57 +1359,69 @@ items:
                 expose_sort_order: true
                 sort_asc_label: Asc
                 sort_desc_label: Desc
-            access:
-              type: perm
+            pager:
+              type: some
               options:
-                perm: 'access user profiles'
-            cache:
-              type: tag
-              options: {  }
-            empty:
-              area_text_custom:
-                id: area_text_custom
-                table: views
-                field: area_text_custom
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: text_custom
-                empty: true
-                content: 'There are currently 0 users online.'
-                tokenize: false
-            sorts:
-              access:
-                id: access
+                items_per_page: 10
+                offset: 0
+            style:
+              type: html_list
+              options:
+                grouping: {  }
+                row_class: ''
+                default_row_class: true
+                type: ul
+                wrapper_class: item-list
+                class: ''
+            row:
+              type: fields
+            fields:
+              name:
+                id: name
                 table: users_field_data
-                field: access
+                field: name
+                label: ''
+                plugin_id: field
+                type: user_name
+                alter:
+                  alter_text: false
+                  make_link: false
+                  absolute: false
+                  trim: false
+                  word_boundary: false
+                  ellipsis: false
+                  strip_tags: false
+                  html: false
+                hide_empty: false
+                empty_zero: false
                 relationship: none
                 group_type: group
                 admin_label: ''
+                exclude: false
+                element_type: ''
+                element_class: ''
+                element_label_type: ''
+                element_label_class: ''
+                element_label_colon: true
+                element_wrapper_type: ''
+                element_wrapper_class: ''
+                element_default_classes: true
+                empty: ''
+                hide_alter_empty: true
                 entity_type: user
-                entity_field: access
-                plugin_id: date
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: access
-                exposed: false
-                granularity: second
-            arguments: {  }
+                entity_field: name
             filters:
               status:
-                id: status
+                value: '1'
                 table: users_field_data
                 field: status
-                entity_type: user
-                entity_field: status
-                plugin_id: boolean
-                value: '1'
-                group: 1
+                id: status
                 expose:
                   operator: '0'
-                  operator_limit_selection: false
-                  operator_list: {  }
+                group: 1
+                plugin_id: boolean
+                entity_type: user
+                entity_field: status
               access:
                 id: access
                 table: users_field_data
@@ -1584,9 +1429,6 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                entity_type: user
-                entity_field: access
-                plugin_id: date
                 operator: '>='
                 value:
                   min: ''
@@ -1601,8 +1443,6 @@ items:
                   description: 'A user is considered online for this long after they have last viewed a page.'
                   use_operator: false
                   operator: access_op
-                  operator_limit_selection: false
-                  operator_list: {  }
                   identifier: access
                   required: false
                   remember: false
@@ -1623,26 +1463,26 @@ items:
                   default_group: All
                   default_group_multiple: {  }
                   group_items: {  }
-            style:
-              type: html_list
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                type: ul
-                wrapper_class: item-list
-                class: ''
-            row:
-              type: fields
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
+                plugin_id: date
+                entity_type: user
+                entity_field: access
+            sorts:
+              access:
+                id: access
+                table: users_field_data
+                field: access
+                order: DESC
+                relationship: none
+                group_type: group
+                admin_label: ''
+                exposed: false
+                expose:
+                  label: ''
+                granularity: second
+                plugin_id: date
+                entity_type: user
+                entity_field: access
+            title: 'Who''s online'
             header:
               result:
                 id: result
@@ -1651,33 +1491,45 @@ items:
                 relationship: none
                 group_type: group
                 admin_label: ''
-                plugin_id: result
                 empty: false
                 content: 'There are currently @total users online.'
+                plugin_id: result
             footer: {  }
+            empty:
+              area_text_custom:
+                id: area_text_custom
+                table: views
+                field: area_text_custom
+                relationship: none
+                group_type: group
+                admin_label: ''
+                empty: true
+                tokenize: false
+                content: 'There are currently 0 users online.'
+                plugin_id: text_custom
+            relationships: {  }
+            arguments: {  }
             display_extenders: {  }
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user.permissions
+            max-age: -1
             tags: {  }
         who_s_online_block:
-          id: who_s_online_block
-          display_title: "Who's online"
           display_plugin: block
+          id: who_s_online_block
+          display_title: 'Who''s online'
           position: 1
           display_options:
+            block_description: 'Who''s online'
             display_description: 'A list of users that are currently logged in.'
             display_extenders: {  }
-            block_description: "Who's online"
           cache_metadata:
-            max-age: -1
             contexts:
               - 'languages:language_content'
               - 'languages:language_interface'
               - user.permissions
+            max-age: -1
             tags: {  }
-      _core:
-        default_config_hash: suDsVMgawXoQt4rfmdfpr05EVX3z3KyfDDTYgeSM898
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.views.yml b/config/sync/config_snapshot.snapshot.config_sync.module.views.yml
index ddf7709..05a6c3c 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.views.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.views.yml
@@ -14,12 +14,13 @@ items:
     name: views.settings
     data:
       display_extenders: {  }
+      skip_cache: false
       sql_signature: false
       ui:
         show:
           additional_queries: false
           advanced_column: false
-          default_display: false
+          master_display: false
           performance_statistics: false
           preview_information: true
           sql_query:
@@ -58,5 +59,3 @@ items:
         ins: INS
         q: Q
         s: S
-      _core:
-        default_config_hash: 8oDr9oPVb_ostrNnVV6V7VdphwoH_u-NqTS0u7SE7qc
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml b/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml
index 3664812..652b822 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml
@@ -31,72 +31,79 @@ items:
           id: views-main
           plugin: text
           label: 'Manage view settings'
-          weight: 1
           body: 'View or edit the configuration.'
+          weight: 1
         views-ui-displays:
           id: views-ui-displays
           plugin: text
           label: 'Displays in this view'
-          weight: 2
-          selector: '#views-display-top'
           body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.'
+          weight: 2
+          attributes:
+            data-id: views-display-top
         views-ui-view-admin:
           id: views-ui-view-admin
           plugin: text
           label: 'View administration'
-          weight: 3
-          position: right
-          selector: '#views-display-extra-actions'
           body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.'
+          weight: 3
+          location: left
+          attributes:
+            data-id: views-display-extra-actions
         views-ui-format:
           id: views-ui-format
           plugin: text
           label: 'Output format'
+          body: 'Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal''s base functionality.'
           weight: 4
-          selector: .views-ui-display-tab-bucket.format
-          body: "Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal's base functionality."
+          attributes:
+            data-class: views-ui-display-tab-bucket.format
         views-ui-fields:
           id: views-ui-fields
           plugin: text
           label: Fields
-          weight: 5
-          selector: .views-ui-display-tab-bucket.field
           body: 'If this view uses fields, they are listed here. You can click on a field to configure it.'
+          weight: 5
+          attributes:
+            data-class: views-ui-display-tab-bucket.field
         views-ui-filter:
           id: views-ui-filter
           plugin: text
           label: 'Filter your view'
-          weight: 6
-          selector: .views-ui-display-tab-bucket.filter
           body: 'Add filters to limit the results in the output. E.g., to only show content that is <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.'
+          weight: 6
+          attributes:
+            data-class: views-ui-display-tab-bucket.filter
         views-ui-filter-operations:
           id: views-ui-filter-operations
           plugin: text
           label: 'Filter actions'
-          weight: 7
-          selector: '.views-ui-display-tab-bucket.filter .dropbutton-widget'
           body: 'Add, rearrange or remove filters.'
+          weight: 7
+          attributes:
+            data-class: 'views-ui-display-tab-bucket.filter .dropbutton-widget'
         views-ui-sorts:
           id: views-ui-sorts
           plugin: text
           label: 'Sort Criteria'
-          weight: 8
-          selector: .views-ui-display-tab-bucket.sort
           body: 'Control the order in which the results are output. Click on an active sort rule to configure it.'
+          weight: 8
+          attributes:
+            data-class: views-ui-display-tab-bucket.sort
         views-ui-sorts-operations:
           id: views-ui-sorts-operations
           plugin: text
           label: 'Sort actions'
-          weight: 9
-          selector: '.views-ui-display-tab-bucket.sort .dropbutton-widget'
           body: 'Add, rearrange or remove sorting rules.'
+          weight: 9
+          attributes:
+            data-class: 'views-ui-display-tab-bucket.sort .dropbutton-widget'
         views-ui-preview:
           id: views-ui-preview
           plugin: text
           label: Preview
-          weight: 10
-          position: right
-          selector: '#preview-submit'
           body: 'Show a preview of the view output.'
-      _core:
-        default_config_hash: XIYL1KF7ND2XQRa5AxvEcp8vgCN2kUGiuBNhCgxrPME
+          weight: 10
+          location: left
+          attributes:
+            data-id: preview-submit
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.visitors.yml b/config/sync/config_snapshot.snapshot.config_sync.module.visitors.yml
deleted file mode 100644
index dfb573e..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.visitors.yml
+++ /dev/null
@@ -1,8542 +0,0 @@
-uuid: b1593280-86e7-4d02-8c68-f115cbf12a40
-langcode: en
-status: true
-dependencies:
-  module:
-    - visitors
-id: config_sync.module.visitors
-snapshotSet: config_sync
-extensionType: module
-extensionName: visitors
-items:
-  -
-    collection: ''
-    name: views.view.visitors
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - charts
-          - charts_chartjs
-          - visitors
-      id: visitors
-      label: Visitors
-      module: views
-      description: 'Visitors web analytics reports.'
-      tag: ''
-      base_table: visitors
-      base_field: ''
-      display:
-        default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
-          display_options:
-            title: ''
-            fields:
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 10
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: none
-              options: {  }
-            cache:
-              type: none
-              options: {  }
-            empty: {  }
-            sorts:
-              visitors_id:
-                id: visitors_id
-                table: visitors
-                field: visitors_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: ''
-                exposed: false
-            arguments: {  }
-            filters:
-              bot:
-                id: bot
-                table: visitors
-                field: bot
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: boolean
-                operator: '!='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_date
-                operator: between
-                value:
-                  min: to
-                  max: from
-                  value: ''
-                  type: global
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                  min_placeholder: ''
-                  max_placeholder: ''
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  route: route
-                  visitor_id: visitor_id
-                default: visitor_id
-                info:
-                  route:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: ''
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
-            use_ajax: true
-            group_by: true
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        browser_engine_pie:
-          id: browser_engine_pie
-          display_title: 'Engine Pie'
-          display_plugin: embed
-          position: 8
-          display_options:
-            title: 'Browser Engines'
-            fields:
-              config_browser_engine:
-                id: config_browser_engine
-                table: visitors
-                field: config_browser_engine
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Engine
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: pie
-                  fields:
-                    label: config_browser_engine
-                    stacking: false
-                    data_providers:
-                      config_browser_engine:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#000000'
-                        weight: 2
-                  display:
-                    title: 'Browser Engines'
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: bottom
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: '60'
-                      width_units: ''
-                      height: '60'
-                      height_units: '%'
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              style: false
-              row: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: browser_engine_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        browser_engine_table:
-          id: browser_engine_table
-          display_title: 'Engine Table'
-          display_plugin: embed
-          position: 8
-          display_options:
-            title: 'Browser Engines'
-            fields:
-              config_browser_engine:
-                id: config_browser_engine
-                table: visitors
-                field: config_browser_engine
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Engine
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: browser_engine_pie
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        browser_name_table:
-          id: browser_name_table
-          display_title: 'Browser Name'
-          display_plugin: embed
-          position: 6
-          display_options:
-            title: Browser
-            fields:
-              config_browser_name:
-                id: config_browser_name
-                table: visitors
-                field: config_browser_name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_browser
-                label: Browser
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: 'Browser version'
-                empty: false
-                display_id: browser_version_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        browser_version_table:
-          id: browser_version_table
-          display_title: 'Browser Version'
-          display_plugin: embed
-          position: 7
-          display_options:
-            title: 'Browser Version'
-            fields:
-              config_browser_name:
-                id: config_browser_name
-                table: visitors
-                field: config_browser_name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_browser
-                label: 'Browser Name'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-              config_browser_version:
-                id: config_browser_version
-                table: visitors
-                field: config_browser_version
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: 'Browser Version'
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: '{{ config_browser_name }} {{ config_browser_version }} '
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: Browser
-                empty: false
-                display_id: browser_name_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        continent_pie:
-          id: continent_pie
-          display_title: 'Continent Pie'
-          display_plugin: embed
-          position: 1
-          display_options:
-            title: Continent
-            fields:
-              location_continent:
-                id: location_continent
-                table: visitors
-                field: location_continent
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_continent
-                label: Continent
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: pie
-                  fields:
-                    label: location_continent
-                    stacking: false
-                    data_providers:
-                      location_continent:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#000000'
-                        weight: 2
-                  display:
-                    title: Continent
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: bottom
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: '60'
-                      width_units: '%'
-                      height: '60'
-                      height_units: '%'
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              style: false
-              row: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: continent_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        continent_table:
-          id: continent_table
-          display_title: 'Continent Table'
-          display_plugin: embed
-          position: 1
-          display_options:
-            title: Continent
-            fields:
-              location_continent_1:
-                id: location_continent_1
-                table: visitors
-                field: location_continent
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_continent
-                label: Abbreviation
-                exclude: true
-                alter:
-                  alter_text: true
-                  text: '{{ location_continent_1|lower }}'
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                abbreviation: true
-              location_continent:
-                id: location_continent
-                table: visitors
-                field: location_continent
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_continent
-                label: Continent
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: true
-                  path: 'internal:/visitors/location/continent/{{ location_continent_1 }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                abbreviation: false
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: continent_pie
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        country_table:
-          id: country_table
-          display_title: Country
-          display_plugin: embed
-          position: 2
-          display_options:
-            title: Country
-            fields:
-              location_country_1:
-                id: location_country_1
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Abbreviation
-                exclude: true
-                alter:
-                  alter_text: true
-                  text: '{{ location_country_1|lower }}'
-                  make_link: false
-                  path: 'internal:/visitors/location/region/{{ location_country_1 }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: true
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-                text: false
-                abbreviation: true
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Country
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: true
-                  path: 'internal:/visitors/location/country/{{location_country_1}}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: true
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-                text: true
-                abbreviation: false
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            arguments:
-              location_continent:
-                id: location_continent
-                table: visitors
-                field: location_continent
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            defaults:
-              title: false
-              fields: false
-              arguments: false
-              filters: true
-              filter_groups: true
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-        daily_column:
-          id: daily_column
-          display_title: 'Daily Column'
-          display_plugin: embed
-          position: 26
-          display_options:
-            fields:
-              visitors_day:
-                id: visitors_day
-                table: visitors
-                field: visitors_day
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_day
-                label: Day
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_day
-                    stacking: false
-                    data_providers:
-                      visitors_day:
-                        enabled: false
-                        color: '#006fb0'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 2
-                  display:
-                    title: Daily
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        day_of_month_column:
-          id: day_of_month_column
-          display_title: 'Day of Month Column'
-          display_plugin: embed
-          position: 28
-          display_options:
-            fields:
-              visitors_day_of_month:
-                id: visitors_day_of_month
-                table: visitors
-                field: visitors_day_of_month
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_day_of_month
-                label: 'Day of Month'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_day_of_month
-                    stacking: false
-                    data_providers:
-                      visitors_day_of_month:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 2
-                  display:
-                    title: 'Day of Month'
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: day_of_month_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        day_of_month_table:
-          id: day_of_month_table
-          display_title: 'Day of Month Table'
-          display_plugin: embed
-          position: 28
-          display_options:
-            title: 'Day of Month'
-            fields:
-              visitors_day_of_month:
-                id: visitors_day_of_month
-                table: visitors
-                field: visitors_day_of_month
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_day_of_month
-                label: 'Day of Month'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitors_day_of_month: visitors_day_of_month
-                  visitor_id: visitor_id
-                default: '-1'
-                info:
-                  visitors_day_of_month:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: views-align-right
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: 'Day of Month'
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: day_of_month_column
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        day_of_week_column:
-          id: day_of_week_column
-          display_title: 'Day of Week Column'
-          display_plugin: embed
-          position: 30
-          display_options:
-            fields:
-              visitors_day_of_week:
-                id: visitors_day_of_week
-                table: visitors
-                field: visitors_day_of_week
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_day_of_week
-                label: 'Day of Week'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_day_of_week
-                    stacking: false
-                    data_providers:
-                      visitors_day_of_week:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 2
-                  display:
-                    title: 'Day of Week'
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: day_of_week_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        day_of_week_table:
-          id: day_of_week_table
-          display_title: 'Day of Week Table'
-          display_plugin: embed
-          position: 30
-          display_options:
-            title: 'Day of Week'
-            fields:
-              visitors_day_of_week:
-                id: visitors_day_of_week
-                table: visitors
-                field: visitors_day_of_week
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_day_of_week
-                label: 'Day of Week'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            sorts: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitors_day_of_week: visitors_day_of_week
-                  visitor_id: visitor_id
-                default: '-1'
-                info:
-                  visitors_day_of_week:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: views-align-right
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: 'Day of Week'
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: day_of_week_column
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        device_brand_table:
-          id: device_brand_table
-          display_title: 'Device Brand'
-          display_plugin: embed
-          position: 10
-          display_options:
-            title: 'Device Brand'
-            fields:
-              config_device_brand:
-                id: config_device_brand
-                table: visitors
-                field: config_device_brand
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_brand
-                label: Brand
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        device_config_table:
-          id: device_config_table
-          display_title: Configuration
-          display_plugin: embed
-          position: 13
-          display_options:
-            title: Configuration
-            fields:
-              config_os:
-                id: config_os
-                table: visitors
-                field: config_os
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_operating_system
-                label: 'Operating System'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-              config_browser_name:
-                id: config_browser_name
-                table: visitors
-                field: config_browser_name
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_browser
-                label: 'Browser Name'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-              config_resolution:
-                id: config_resolution
-                table: visitors
-                field: config_resolution
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Configurations
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: '{{ config_os }} / {{ config_browser_name }} / {{ config_resolution }} '
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: Resolution
-                empty: false
-                display_id: device_resolution_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        device_model_table:
-          id: device_model_table
-          display_title: 'Device Model'
-          display_plugin: embed
-          position: 11
-          display_options:
-            title: Model
-            fields:
-              config_device_brand:
-                id: config_device_brand
-                table: visitors
-                field: config_device_brand
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_brand
-                label: 'Device brand'
-                exclude: true
-                alter:
-                  alter_text: true
-                  text: '{{ config_device_brand }} - '
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-              config_device_model:
-                id: config_device_model
-                table: visitors
-                field: config_device_model
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: 'Device model'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: Generic
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              config_device_type:
-                id: config_device_type
-                table: visitors
-                field: config_device_type
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_device
-                label: 'Device model'
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: '{{ config_device_brand }}{{ config_device_model }} {{ config_device_type }} '
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        device_resolution_table:
-          id: device_resolution_table
-          display_title: Resolution
-          display_plugin: embed
-          position: 12
-          display_options:
-            title: Resolution
-            fields:
-              config_resolution:
-                id: config_resolution
-                table: visitors
-                field: config_resolution
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Resolution
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: Configurations
-                empty: false
-                display_id: device_config_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        device_type_table:
-          id: device_type_table
-          display_title: 'Device Type'
-          display_plugin: embed
-          position: 9
-          display_options:
-            title: 'Device Type'
-            fields:
-              config_device_type:
-                id: config_device_type
-                table: visitors
-                field: config_device_type
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_device
-                label: Device
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        distinct_countries_list:
-          id: distinct_countries_list
-          display_title: 'Distinct Countries'
-          display_plugin: embed
-          position: 3
-          display_options:
-            title: 'Distinct Countries'
-            fields:
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: visitors_country
-                label: ''
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: '{{ location_country }} distinct countries'
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: true
-                format_plural_string: !!binary MSBkaXN0aW5jdCBjb3VudHJ5A0Bjb3VudCBkaXN0aW5jdCBjb3VudHJpZXM=
-                prefix: ''
-                suffix: ''
-            sorts: {  }
-            style:
-              type: default
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              filters: true
-              filter_groups: true
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        hour_column:
-          id: hour_column
-          display_title: 'Hour Column'
-          display_plugin: embed
-          position: 24
-          display_options:
-            fields:
-              visitors_hour:
-                id: visitors_hour
-                table: visitors
-                field: visitors_hour
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_hour
-                label: Hour
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_hour
-                    stacking: false
-                    data_providers:
-                      visitors_hour:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 2
-                  display:
-                    title: 'Your time'
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: false
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: false
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: hour_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        hour_table:
-          id: hour_table
-          display_title: 'Hour Table'
-          display_plugin: embed
-          position: 24
-          display_options:
-            title: 'Your time'
-            fields:
-              visitors_hour:
-                id: visitors_hour
-                table: visitors
-                field: visitors_hour
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_hour
-                label: Hour
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitors_hour: visitors_hour
-                  visitor_id: visitor_id
-                default: '-1'
-                info:
-                  visitors_hour:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: views-align-right
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: 'Your time'
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: hour_column
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        language_code_table:
-          id: language_code_table
-          display_title: 'Language Code'
-          display_plugin: embed
-          position: 5
-          display_options:
-            title: 'Language Code'
-            fields:
-              language:
-                id: language
-                table: visitors
-                field: language
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_language
-                label: Language
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                code: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              filters: true
-              filter_groups: true
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: Language
-                empty: false
-                display_id: language_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        language_table:
-          id: language_table
-          display_title: Language
-          display_plugin: embed
-          position: 4
-          display_options:
-            title: Language
-            fields:
-              language:
-                id: language
-                table: visitors
-                field: language
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Language
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              filters: true
-              filter_groups: true
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: 'Language Code'
-                empty: false
-                display_id: language_code_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        local_hour_column:
-          id: local_hour_column
-          display_title: 'Local Column'
-          display_plugin: embed
-          position: 22
-          display_options:
-            fields:
-              visitor_localtime:
-                id: visitor_localtime
-                table: visitors
-                field: visitor_localtime
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_local_hour
-                label: Hour
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitor_localtime
-                    stacking: false
-                    data_providers:
-                      visitor_localtime:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 2
-                  display:
-                    title: "Visitor's time"
-                    title_position: ''
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: '0'
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: local_hour_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        local_hour_table:
-          id: local_hour_table
-          display_title: 'Local Table'
-          display_plugin: embed
-          position: 22
-          display_options:
-            title: "Visitor's time"
-            fields:
-              visitor_localtime:
-                id: visitor_localtime
-                table: visitors
-                field: visitor_localtime
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_local_hour
-                label: Hour
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitor_localtime: visitor_localtime
-                  visitor_id: visitor_id
-                default: '-1'
-                info:
-                  visitor_localtime:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: views-align-right
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: "Visitor's time"
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: local_hour_column
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        monthly_column:
-          id: monthly_column
-          display_title: 'Monthly Column'
-          display_plugin: embed
-          position: 26
-          display_options:
-            fields:
-              visitors_month:
-                id: visitors_month
-                table: visitors
-                field: visitors_month
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_month
-                label: Month
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_month
-                    stacking: false
-                    data_providers:
-                      visitors_month:
-                        enabled: false
-                        color: '#000000'
-                        weight: 2
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 2
-                  display:
-                    title: Monthly
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: table
-                empty: false
-                display_id: monthly_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        monthly_table:
-          id: monthly_table
-          display_title: 'Monthly Table'
-          display_plugin: embed
-          position: 26
-          display_options:
-            title: Monthly
-            fields:
-              visitors_month:
-                id: visitors_month
-                table: visitors
-                field: visitors_month
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_month
-                label: Month
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            sorts: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitors_month: visitors_month
-                  visitor_id: visitor_id
-                default: '-1'
-                info:
-                  visitors_month:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: views-align-right
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: Monthly
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              title: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: chart
-                empty: false
-                display_id: monthly_column
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        os_family_table:
-          id: os_family_table
-          display_title: 'OS Family'
-          display_plugin: embed
-          position: 14
-          display_options:
-            title: 'OS Family'
-            fields:
-              config_os:
-                id: config_os
-                table: visitors
-                field: config_os
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_operating_system
-                label: 'Operating System families'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: 'Operating System versions'
-                empty: false
-                display_id: os_version_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        os_version_table:
-          id: os_version_table
-          display_title: 'OS Version'
-          display_plugin: embed
-          position: 15
-          display_options:
-            title: 'OS Version'
-            fields:
-              config_os_version:
-                id: config_os_version
-                table: visitors
-                field: config_os_version
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: 'OS version'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: Unknown
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              config_os:
-                id: config_os
-                table: visitors
-                field: config_os
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_operating_system
-                label: 'Operating System'
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: '{{ config_os }}  {{ config_os_version }}'
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              title: false
-              fields: false
-              footer: false
-            display_description: ''
-            footer:
-              visitors_display_link:
-                id: visitors_display_link
-                table: visitors
-                field: visitors_display_link
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_display_link
-                label: 'Operating System families'
-                empty: false
-                display_id: os_family_table
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        performance_daily_column:
-          id: performance_daily_column
-          display_title: 'Performance Daily'
-          display_plugin: embed
-          position: 21
-          display_options:
-            fields:
-              network:
-                id: network
-                table: visitors_performance
-                field: network
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Network
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              server:
-                id: server
-                table: visitors_performance
-                field: server
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Server
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              transfer:
-                id: transfer
-                table: visitors_performance
-                field: transfer
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Transfer
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              dom_processing:
-                id: dom_processing
-                table: visitors_performance
-                field: dom_processing
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'DOM Processing'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              dom_complete:
-                id: dom_complete
-                table: visitors_performance
-                field: dom_complete
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'DOM Complete'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              on_load:
-                id: on_load
-                table: visitors_performance
-                field: on_load
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'On Load'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              visitors_day:
-                id: visitors_day
-                table: visitors
-                field: visitors_day
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_day
-                label: Day
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_day
-                    stacking: true
-                    data_providers:
-                      network:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 7
-                      server:
-                        enabled: true
-                        color: '#ff8f00'
-                        weight: 7
-                      transfer:
-                        enabled: true
-                        color: '#ad1457'
-                        weight: 7
-                      dom_processing:
-                        enabled: true
-                        color: '#6a1b9a'
-                        weight: 7
-                      dom_complete:
-                        enabled: true
-                        color: '#558b2f'
-                        weight: 7
-                      on_load:
-                        enabled: true
-                        color: '#00838f'
-                        weight: 7
-                      visitors_day:
-                        enabled: false
-                        color: '#7643b6'
-                        weight: 7
-                  display:
-                    title: ''
-                    title_position: ''
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: bottom
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              relationships: false
-              fields: false
-              sorts: false
-            relationships:
-              visitors_performance:
-                id: visitors_performance
-                table: visitors
-                field: visitors_performance
-                relationship: none
-                group_type: group
-                admin_label: 'Visitor performance'
-                plugin_id: standard
-                required: true
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        performance_hourly_column:
-          id: performance_hourly_column
-          display_title: 'Performance Hourly'
-          display_plugin: embed
-          position: 21
-          display_options:
-            fields:
-              network:
-                id: network
-                table: visitors_performance
-                field: network
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Network
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              server:
-                id: server
-                table: visitors_performance
-                field: server
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Server
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              transfer:
-                id: transfer
-                table: visitors_performance
-                field: transfer
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Transfer
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              dom_processing:
-                id: dom_processing
-                table: visitors_performance
-                field: dom_processing
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'DOM Processing'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              dom_complete:
-                id: dom_complete
-                table: visitors_performance
-                field: dom_complete
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'DOM Complete'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              on_load:
-                id: on_load
-                table: visitors_performance
-                field: on_load
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'On Load'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              visitors_hour:
-                id: visitors_hour
-                table: visitors
-                field: visitors_hour
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_hour
-                label: Hour
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_hour
-                    stacking: true
-                    data_providers:
-                      network:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 7
-                      server:
-                        enabled: true
-                        color: '#ff8f00'
-                        weight: 7
-                      transfer:
-                        enabled: true
-                        color: '#ad1457'
-                        weight: 7
-                      dom_processing:
-                        enabled: true
-                        color: '#6a1b9a'
-                        weight: 7
-                      dom_complete:
-                        enabled: true
-                        color: '#558b2f'
-                        weight: 7
-                      on_load:
-                        enabled: true
-                        color: '#00838f'
-                        weight: 7
-                      visitors_hour:
-                        enabled: false
-                        color: '#7643b6'
-                        weight: 7
-                  display:
-                    title: ''
-                    title_position: ''
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: bottom
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              relationships: false
-              fields: false
-              sorts: false
-            relationships:
-              visitors_performance:
-                id: visitors_performance
-                table: visitors
-                field: visitors_performance
-                relationship: none
-                group_type: group
-                admin_label: 'Visitor performance'
-                plugin_id: standard
-                required: true
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        performance_weekly_column:
-          id: performance_weekly_column
-          display_title: 'Performance Weekly'
-          display_plugin: embed
-          position: 21
-          display_options:
-            fields:
-              network:
-                id: network
-                table: visitors_performance
-                field: network
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Network
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              server:
-                id: server
-                table: visitors_performance
-                field: server
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Server
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              transfer:
-                id: transfer
-                table: visitors_performance
-                field: transfer
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: Transfer
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              dom_processing:
-                id: dom_processing
-                table: visitors_performance
-                field: dom_processing
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'DOM Processing'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              dom_complete:
-                id: dom_complete
-                table: visitors_performance
-                field: dom_complete
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'DOM Complete'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              on_load:
-                id: on_load
-                table: visitors_performance
-                field: on_load
-                relationship: visitors_performance
-                group_type: avg
-                admin_label: ''
-                plugin_id: numeric
-                label: 'On Load'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              visitors_week:
-                id: visitors_week
-                table: visitors
-                field: visitors_week
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_week
-                label: Week
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_week
-                    stacking: true
-                    data_providers:
-                      network:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: 7
-                      server:
-                        enabled: true
-                        color: '#ff8f00'
-                        weight: 7
-                      transfer:
-                        enabled: true
-                        color: '#ad1457'
-                        weight: 7
-                      dom_processing:
-                        enabled: true
-                        color: '#6a1b9a'
-                        weight: 7
-                      dom_complete:
-                        enabled: true
-                        color: '#558b2f'
-                        weight: 7
-                      on_load:
-                        enabled: true
-                        color: '#00838f'
-                        weight: 7
-                      visitors_week:
-                        enabled: false
-                        color: '#7643b6'
-                        weight: 7
-                  display:
-                    title: ''
-                    title_position: ''
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: bottom
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              relationships: false
-              fields: false
-              sorts: false
-            relationships:
-              visitors_performance:
-                id: visitors_performance
-                table: visitors
-                field: visitors_performance
-                relationship: none
-                group_type: group
-                admin_label: 'Visitor performance'
-                plugin_id: standard
-                required: true
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        recent_view_table:
-          id: recent_view_table
-          display_title: 'Recent views'
-          display_plugin: embed
-          position: 19
-          display_options:
-            fields:
-              visitors_id:
-                id: visitors_id
-                table: visitors
-                field: visitors_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: numeric
-                label: 'Visitors ID'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              visitors_url:
-                id: visitors_url
-                table: visitors
-                field: visitors_url
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: URL
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: date
-                label: 'Date Time'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                date_format: short
-                custom_date_format: ''
-                timezone: ''
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Visitor
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              nothing:
-                id: nothing
-                table: views
-                field: nothing
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: custom
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: details
-                  make_link: true
-                  path: 'internal:/visitors/hits/{{ visitors_id }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: false
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 10
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            sorts: {  }
-            arguments:
-              route:
-                id: route
-                table: visitors
-                field: route
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-              visitors_ip:
-                id: visitors_ip
-                table: visitors
-                field: visitors_ip
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: upper
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            filters:
-              bot:
-                id: bot
-                table: visitors
-                field: bot
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: boolean
-                operator: '!='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_date
-                operator: between
-                value:
-                  min: to
-                  max: from
-                  value: ''
-                  type: global
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                  min_placeholder: ''
-                  max_placeholder: ''
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_path:
-                id: visitors_path
-                table: visitors
-                field: visitors_path
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                operator: starts
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: visitors_path_op
-                  label: Path
-                  description: ''
-                  use_operator: false
-                  operator: visitors_path_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: visitors_path
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    content_editor: '0'
-                    administrator: '0'
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitors_id: visitors_id
-                  visitors_url: visitors_url
-                  visitors_date_time: visitors_date_time
-                  visitor_id: visitor_id
-                  nothing: nothing
-                default: visitors_date_time
-                info:
-                  visitors_id:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitors_url:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitors_date_time:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: false
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  nothing:
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: ''
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              group_by: false
-              style: false
-              row: false
-              relationships: false
-              fields: false
-              sorts: false
-              arguments: false
-              filters: false
-              filter_groups: false
-              header: false
-            relationships: {  }
-            group_by: false
-            display_description: ''
-            header:
-              result:
-                id: result
-                table: views
-                field: result
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: result
-                empty: false
-                content: 'Displaying @start - @end of @total'
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-        referrer_table:
-          id: referrer_table
-          display_title: 'Referrer views'
-          display_plugin: embed
-          position: 19
-          display_options:
-            fields:
-              visitors_id:
-                id: visitors_id
-                table: visitors
-                field: visitors_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: numeric
-                label: 'Visitors ID'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              visitors_referer:
-                id: visitors_referer
-                table: visitors
-                field: visitors_referer
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Referrer
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: '(Direct Entry)'
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: date
-                label: 'Date Time'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                date_format: fallback
-                custom_date_format: ''
-                timezone: ''
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Visitor
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              nothing:
-                id: nothing
-                table: views
-                field: nothing
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: custom
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: details
-                  make_link: true
-                  path: 'internal:/visitors/hits/{{ visitors_id }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: false
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 10
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            sorts:
-              visitors_id:
-                id: visitors_id
-                table: visitors
-                field: visitors_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: ''
-                exposed: false
-            arguments:
-              visitors_path:
-                id: visitors_path
-                table: visitors
-                field: visitors_path
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: default
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: visitors_path
-                default_argument_options:
-                  pop: 1
-                  route: false
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            defaults:
-              pager: false
-              group_by: false
-              relationships: false
-              fields: false
-              sorts: false
-              arguments: false
-              header: false
-            relationships: {  }
-            group_by: false
-            display_description: ''
-            header:
-              result:
-                id: result
-                table: views
-                field: result
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: result
-                empty: false
-                content: 'Displaying @start - @end of @total'
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-        top_host_table:
-          id: top_host_table
-          display_title: 'Top Host'
-          display_plugin: embed
-          position: 18
-          display_options:
-            fields:
-              visitors_ip:
-                id: visitors_ip
-                table: visitors
-                field: visitors_ip
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Host
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: true
-                  path: 'internal:/visitors/host/{{ visitors_ip }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            defaults:
-              fields: false
-              header: false
-            display_description: ''
-            header:
-              result:
-                id: result
-                table: views
-                field: result
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: result
-                empty: false
-                content: 'Displaying @start - @end of @total'
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        top_path_table:
-          id: top_path_table
-          display_title: 'Top Path'
-          display_plugin: embed
-          position: 16
-          display_options:
-            title: Path
-            fields:
-              visitors_path:
-                id: visitors_path
-                table: visitors
-                field: visitors_path
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Path
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            sorts: {  }
-            defaults:
-              title: false
-              fields: false
-              sorts: false
-              header: false
-            display_description: ''
-            header:
-              result:
-                id: result
-                table: views
-                field: result
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: result
-                empty: false
-                content: 'Displaying @start - @end of @total'
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        top_route_table:
-          id: top_route_table
-          display_title: 'Top Route'
-          display_plugin: embed
-          position: 17
-          display_options:
-            fields:
-              route:
-                id: route
-                table: visitors
-                field: route
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Route
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: true
-                  path: 'internal:/visitors/route/{{ route }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            sorts: {  }
-            filters:
-              bot:
-                id: bot
-                table: visitors
-                field: bot
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: boolean
-                operator: '!='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_date
-                operator: between
-                value:
-                  min: to
-                  max: from
-                  value: ''
-                  type: global
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                  min_placeholder: ''
-                  max_placeholder: ''
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              route:
-                id: route
-                table: visitors
-                field: route
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                operator: starts
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: route_op
-                  label: Route
-                  description: ''
-                  use_operator: false
-                  operator: route_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: route
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    content_editor: '0'
-                    administrator: '0'
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  route: route
-                  visitor_id: visitor_id
-                default: visitor_id
-                info:
-                  route:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: true
-                summary: ''
-                empty_table: false
-                caption: ''
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              filters: false
-              filter_groups: false
-              header: false
-            display_description: ''
-            header:
-              result:
-                id: result
-                table: views
-                field: result
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: result
-                empty: false
-                content: 'Displaying @start - @end of @total'
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-        weekly_column:
-          id: weekly_column
-          display_title: 'Weekly Column'
-          display_plugin: embed
-          position: 26
-          display_options:
-            fields:
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitors_week:
-                id: visitors_week
-                table: visitors
-                field: visitors_week
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_week
-                label: Week
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: chart
-              options:
-                grouping: {  }
-                chart_settings:
-                  library: chartjs
-                  type: column
-                  fields:
-                    label: visitors_week
-                    stacking: false
-                    data_providers:
-                      visitor_id:
-                        enabled: true
-                        color: '#0277bd'
-                        weight: -1
-                      visitors_week:
-                        enabled: false
-                        color: '#0277bd'
-                        weight: -2
-                  display:
-                    title: Weekly
-                    title_position: top
-                    subtitle: ''
-                    data_labels: false
-                    data_markers: true
-                    legend_position: ''
-                    background: ''
-                    three_dimensional: 0
-                    polar: 0
-                    tooltips: true
-                    dimensions:
-                      width: ''
-                      width_units: ''
-                      height: ''
-                      height_units: ''
-                    gauge:
-                      max: ''
-                      min: ''
-                      green_from: ''
-                      green_to: ''
-                      yellow_from: ''
-                      yellow_to: ''
-                      red_from: ''
-                      red_to: ''
-                    color_changer: false
-                  xaxis:
-                    title: ''
-                    labels_rotation: '0'
-                  yaxis:
-                    title: ''
-                    min: ''
-                    max: ''
-                    prefix: ''
-                    suffix: ''
-                    decimal_count: ''
-                    labels_rotation: '0'
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-        weekly_table:
-          id: weekly_table
-          display_title: 'Weekly Table'
-          display_plugin: embed
-          position: 26
-          display_options:
-            fields:
-              visitors_week:
-                id: visitors_week
-                table: visitors
-                field: visitors_week
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_week
-                label: Week
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-            pager:
-              type: none
-              options:
-                offset: 0
-            sorts: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  visitor_id: visitor_id
-                  visitors_week: visitors_week
-                default: '-1'
-                info:
-                  visitor_id:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitors_week:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: false
-                summary: ''
-                empty_table: false
-                caption: ''
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            defaults:
-              pager: false
-              style: false
-              row: false
-              fields: false
-              sorts: false
-              header: false
-              footer: false
-            display_description: ''
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-            tags: {  }
-      _core:
-        default_config_hash: bz_czAL179TZlsG0i7NIgro4xD5_VVSavU-mGA5PPNY
-  -
-    collection: ''
-    name: visitors.config
-    data:
-      flush_log_timer: 0
-      bot_retention_log: 0
-      items_per_page: 10
-      theme: admin
-      disable_tracking: false
-      status_codes_disabled: {  }
-      domain_mode: 0
-      track:
-        userid: true
-      counter:
-        enabled: true
-        entity_types:
-          - node
-        display_max_age: 3600
-      privacy:
-        disablecookies: false
-      visibility:
-        request_path_mode: 0
-        request_path_pages: |-
-          /admin
-          /admin/*
-          /batch
-          /node/add*
-          /node/*/*
-          /user/*/*
-        user_role_mode: 0
-        user_role_roles: {  }
-        user_account_mode: 1
-        exclude_user1: false
-      codesnippet:
-        before: ''
-        after: ''
-      performance: false
-      script_type: minified
-      _core:
-        default_config_hash: 3TMRvOFlA3eT_Vk11OHppz1qwBLFyZt4OcA4mFniMfE
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml b/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml
deleted file mode 100644
index 0b54404..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml
+++ /dev/null
@@ -1,1724 +0,0 @@
-uuid: 57d44644-2760-4239-926d-829cb5e3d2bd
-langcode: en
-status: true
-dependencies:
-  module:
-    - visitors_geoip
-id: config_sync.module.visitors_geoip
-snapshotSet: config_sync
-extensionType: module
-extensionName: visitors_geoip
-items:
-  -
-    collection: ''
-    name: views.view.visitors_geoip
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - visitors
-        enforced:
-          module:
-            - visitors_geoip
-      id: visitors_geoip
-      label: 'Visitors GeoIP'
-      module: views
-      description: 'Region and City location reports.'
-      tag: ''
-      base_table: visitors
-      base_field: ''
-      display:
-        default:
-          id: default
-          display_title: Default
-          display_plugin: default
-          position: 0
-          display_options:
-            fields:
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: 0
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-            pager:
-              type: mini
-              options:
-                offset: 0
-                items_per_page: 10
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-            exposed_form:
-              type: basic
-              options:
-                submit_button: Apply
-                reset_button: false
-                reset_button_label: Reset
-                exposed_sorts_label: 'Sort by'
-                expose_sort_order: true
-                sort_asc_label: Asc
-                sort_desc_label: Desc
-            access:
-              type: none
-              options: {  }
-            cache:
-              type: tag
-              options: {  }
-            empty: {  }
-            sorts:
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: ''
-                exposed: false
-            arguments: {  }
-            filters:
-              bot:
-                id: bot
-                table: visitors
-                field: bot
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: boolean
-                operator: '!='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_date
-                operator: between
-                value:
-                  min: to
-                  max: from
-                  value: ''
-                  type: global
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                  min_placeholder: ''
-                  max_placeholder: ''
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            style:
-              type: table
-              options:
-                grouping: {  }
-                row_class: ''
-                default_row_class: true
-                columns:
-                  location_region_1: location_region_1
-                  location_country_2: location_country_2
-                  location_country: location_country
-                  location_region: location_region
-                  location_country_1: location_country_1
-                  visitor_id: visitor_id
-                default: visitor_id
-                info:
-                  location_region_1:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  location_country_2:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  location_country:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  location_region:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  location_country_1:
-                    sortable: false
-                    default_sort_order: asc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                  visitor_id:
-                    sortable: true
-                    default_sort_order: desc
-                    align: ''
-                    separator: ''
-                    empty_column: false
-                    responsive: ''
-                override: true
-                sticky: false
-                summary: ''
-                empty_table: false
-                caption: ''
-                description: ''
-            row:
-              type: fields
-              options:
-                default_field_elements: true
-                inline: {  }
-                separator: ''
-                hide_empty: false
-            query:
-              type: views_query
-              options:
-                query_comment: ''
-                disable_sql_rewrite: false
-                distinct: false
-                replica: false
-                query_tags: {  }
-            relationships: {  }
-            group_by: true
-            header: {  }
-            footer: {  }
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url.query_args
-            tags: {  }
-        city_table:
-          id: city_table
-          display_title: City
-          display_plugin: embed
-          position: 3
-          display_options:
-            fields:
-              location_country_2:
-                id: location_country_2
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Abbreviation
-                exclude: true
-                alter:
-                  alter_text: true
-                  text: '{{ location_country_2|lower }}'
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-                text: false
-                abbreviation: true
-              location_region:
-                id: location_region
-                table: visitors
-                field: location_region
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: 'Region url'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: _none
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              location_city_1:
-                id: location_city_1
-                table: visitors
-                field: location_city
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: 'City url'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: _none
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              location_city:
-                id: location_city
-                table: visitors
-                field: location_city
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: City
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: Unknown
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Country
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-                text: false
-              location_country_1:
-                id: location_country_1
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: City
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: '{{ location_country }} {{ location_city }}, {{ location_country_1 }}'
-                  make_link: true
-                  path: 'internal:/visitors/location/city/{{ location_country_2 }}/{{ location_region }}/{{ location_city_1 }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-                text: true
-                abbreviation: false
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: 0
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-            arguments:
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-              location_region:
-                id: location_region
-                table: visitors
-                field: location_region
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            defaults:
-              fields: false
-              arguments: false
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-        recent_view_table:
-          id: recent_view_table
-          display_title: 'Recent Views'
-          display_plugin: embed
-          position: 3
-          display_options:
-            fields:
-              visitors_id:
-                id: visitors_id
-                table: visitors
-                field: visitors_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: numeric
-                label: 'Visitors ID'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: false
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-              visitors_url:
-                id: visitors_url
-                table: visitors
-                field: visitors_url
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: URL
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: date
-                label: 'Date Time'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                date_format: short
-                custom_date_format: ''
-                timezone: ''
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Visitor
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              nothing:
-                id: nothing
-                table: views
-                field: nothing
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: custom
-                label: Operations
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: details
-                  make_link: true
-                  path: 'internal:/visitors/hits/{{ visitors_id }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: false
-            pager:
-              type: full
-              options:
-                offset: 0
-                items_per_page: 10
-                total_pages: null
-                id: 0
-                tags:
-                  next: ››
-                  previous: ‹‹
-                  first: '« First'
-                  last: 'Last »'
-                expose:
-                  items_per_page: false
-                  items_per_page_label: 'Items per page'
-                  items_per_page_options: '5, 10, 25, 50'
-                  items_per_page_options_all: false
-                  items_per_page_options_all_label: '- All -'
-                  offset: false
-                  offset_label: Offset
-                quantity: 9
-            sorts:
-              visitors_id:
-                id: visitors_id
-                table: visitors
-                field: visitors_id
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                order: DESC
-                expose:
-                  label: ''
-                  field_identifier: ''
-                exposed: false
-            arguments:
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: lower
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-              location_region:
-                id: location_region
-                table: visitors
-                field: location_region
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-              location_city:
-                id: location_city
-                table: visitors
-                field: location_city
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            filters:
-              bot:
-                id: bot
-                table: visitors
-                field: bot
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: boolean
-                operator: '!='
-                value: '1'
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_date_time:
-                id: visitors_date_time
-                table: visitors
-                field: visitors_date_time
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_date
-                operator: between
-                value:
-                  min: to
-                  max: from
-                  value: ''
-                  type: global
-                group: 1
-                exposed: false
-                expose:
-                  operator_id: ''
-                  label: ''
-                  description: ''
-                  use_operator: false
-                  operator: ''
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: ''
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                  min_placeholder: ''
-                  max_placeholder: ''
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-              visitors_path:
-                id: visitors_path
-                table: visitors
-                field: visitors_path
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                operator: starts
-                value: ''
-                group: 1
-                exposed: true
-                expose:
-                  operator_id: visitors_path_op
-                  label: Path
-                  description: ''
-                  use_operator: false
-                  operator: visitors_path_op
-                  operator_limit_selection: false
-                  operator_list: {  }
-                  identifier: visitors_path
-                  required: false
-                  remember: false
-                  multiple: false
-                  remember_roles:
-                    authenticated: authenticated
-                    anonymous: '0'
-                    content_editor: '0'
-                    administrator: '0'
-                  placeholder: ''
-                is_grouped: false
-                group_info:
-                  label: ''
-                  description: ''
-                  identifier: ''
-                  optional: true
-                  widget: select
-                  multiple: false
-                  remember: false
-                  default_group: All
-                  default_group_multiple: {  }
-                  group_items: {  }
-            filter_groups:
-              operator: AND
-              groups:
-                1: AND
-            defaults:
-              pager: false
-              group_by: false
-              fields: false
-              sorts: false
-              arguments: false
-              filters: false
-              filter_groups: false
-              header: false
-            group_by: false
-            display_description: ''
-            header:
-              result:
-                id: result
-                table: views
-                field: result
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: result
-                empty: false
-                content: 'Displaying @start - @end of @total'
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-        region_table:
-          id: region_table
-          display_title: Region
-          display_plugin: embed
-          position: 2
-          display_options:
-            fields:
-              location_region_1:
-                id: location_region_1
-                table: visitors
-                field: location_region
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: 'Region link'
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: _none
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              location_country_2:
-                id: location_country_2
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Abbreviation
-                exclude: true
-                alter:
-                  alter_text: true
-                  text: '{{ location_country_2|lower }}'
-                  make_link: false
-                  path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-                text: false
-                abbreviation: true
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Flag
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: false
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: true
-                text: false
-              location_region:
-                id: location_region
-                table: visitors
-                field: location_region
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: standard
-                label: Region
-                exclude: true
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: Unknown
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-              location_country_1:
-                id: location_country_1
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: visitors_country
-                label: Region
-                exclude: false
-                alter:
-                  alter_text: true
-                  text: '{{location_country }} {{ location_region }}, {{ location_country_1 }} '
-                  make_link: true
-                  path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region_1 }}'
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: Unknown
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                icon: false
-                text: true
-                abbreviation: false
-              visitor_id:
-                id: visitor_id
-                table: visitors
-                field: visitor_id
-                relationship: none
-                group_type: count_distinct
-                admin_label: ''
-                plugin_id: standard
-                label: 'Unique visitors'
-                exclude: false
-                alter:
-                  alter_text: false
-                  text: ''
-                  make_link: false
-                  path: ''
-                  absolute: false
-                  external: false
-                  replace_spaces: false
-                  path_case: none
-                  trim_whitespace: false
-                  alt: ''
-                  rel: ''
-                  link_class: ''
-                  prefix: ''
-                  suffix: ''
-                  target: ''
-                  nl2br: false
-                  max_length: 0
-                  word_boundary: true
-                  ellipsis: true
-                  more_link: false
-                  more_link_text: ''
-                  more_link_path: ''
-                  strip_tags: false
-                  trim: false
-                  preserve_tags: ''
-                  html: false
-                element_type: ''
-                element_class: ''
-                element_label_type: ''
-                element_label_class: ''
-                element_label_colon: true
-                element_wrapper_type: ''
-                element_wrapper_class: ''
-                element_default_classes: true
-                empty: ''
-                hide_empty: false
-                empty_zero: false
-                hide_alter_empty: true
-                set_precision: false
-                precision: 0
-                decimal: .
-                separator: ','
-                format_plural: 0
-                format_plural_string: !!binary MQNAY291bnQ=
-                prefix: ''
-                suffix: ''
-            arguments:
-              location_country:
-                id: location_country
-                table: visitors
-                field: location_country
-                relationship: none
-                group_type: group
-                admin_label: ''
-                plugin_id: string
-                default_action: ignore
-                exception:
-                  value: all
-                  title_enable: false
-                  title: All
-                title_enable: false
-                title: ''
-                default_argument_type: fixed
-                default_argument_options:
-                  argument: ''
-                summary_options:
-                  base_path: ''
-                  count: true
-                  override: false
-                  items_per_page: 25
-                summary:
-                  sort_order: asc
-                  number_of_records: 0
-                  format: default_summary
-                specify_validation: false
-                validate:
-                  type: none
-                  fail: 'not found'
-                validate_options: {  }
-                glossary: false
-                limit: 0
-                case: none
-                path_case: none
-                transform_dash: false
-                break_phrase: false
-            defaults:
-              fields: false
-              arguments: false
-            display_description: ''
-            display_extenders: {  }
-          cache_metadata:
-            max-age: -1
-            contexts:
-              - 'languages:language_interface'
-              - url
-              - url.query_args
-            tags: {  }
-      _core:
-        default_config_hash: xSLp7qH6ygL6WYOeKvgeihL8VlZYZnZFbRsvYGLGsGk
-  -
-    collection: ''
-    name: visitors_geoip.settings
-    data:
-      geoip_path: ../
-      license: ''
-      _core:
-        default_config_hash: O9-sVp7oOgWfsRZB65TyOT-R2o4IJBha_ud5Ar9oOtw
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.workflow_buttons.yml b/config/sync/config_snapshot.snapshot.config_sync.module.workflow_buttons.yml
deleted file mode 100644
index 3310bfc..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.workflow_buttons.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: 3b7814aa-71f8-4911-a434-ae79eefc927d
-langcode: en
-status: true
-dependencies:
-  module:
-    - workflow_buttons
-id: config_sync.module.workflow_buttons
-snapshotSet: config_sync
-extensionType: module
-extensionName: workflow_buttons
-items:
-  -
-    collection: ''
-    name: workflow_buttons.settings
-    data:
-      display:
-        top_buttons: false
-      _core:
-        default_config_hash: MNhJFHOSodAXLNq8PWQ57QuQ9cKrQjTTCLh0hcLiIY8
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.workflow_buttons_trash.yml b/config/sync/config_snapshot.snapshot.config_sync.module.workflow_buttons_trash.yml
deleted file mode 100644
index 5b5443c..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.workflow_buttons_trash.yml
+++ /dev/null
@@ -1,106 +0,0 @@
-uuid: 66215c48-b04c-4d44-a330-13cbaa5eb314
-langcode: en
-status: true
-dependencies:
-  module:
-    - workflow_buttons_trash
-id: config_sync.module.workflow_buttons_trash
-snapshotSet: config_sync
-extensionType: module
-extensionName: workflow_buttons_trash
-items:
-  -
-    collection: ''
-    name: workflows.workflow.workflow_buttons_trash_publishing
-    data:
-      langcode: en
-      status: true
-      dependencies:
-        module:
-          - content_moderation
-      id: workflow_buttons_trash_publishing
-      label: 'Publishing (with draft and soft delete)'
-      type: content_moderation
-      type_settings:
-        states:
-          draft:
-            label: Draft
-            published: false
-            default_revision: false
-            weight: -2
-          published:
-            label: Published
-            published: true
-            default_revision: true
-            weight: 0
-          trash:
-            published: false
-            default_revision: true
-            label: Trash
-            weight: 1
-          unpublished:
-            published: false
-            default_revision: true
-            label: Unpublished
-            weight: 2
-        transitions:
-          create_new_draft:
-            label: Save
-            to: draft
-            weight: -5
-            from:
-              - draft
-          delete:
-            label: Delete
-            from:
-              - draft
-              - published
-              - unpublished
-            to: trash
-            weight: 1
-          publish:
-            label: Publish
-            to: published
-            weight: -1
-            from:
-              - draft
-              - unpublished
-          restore_draft:
-            label: 'Restore to Draft'
-            from:
-              - trash
-            to: draft
-            weight: 2
-          restore_publish:
-            label: 'Restore and Publish'
-            from:
-              - trash
-            to: published
-            weight: 3
-          save_draft_leave_current_published:
-            label: 'Create draft (leave current version published)'
-            from:
-              - published
-            to: draft
-            weight: -2
-          save_unpublished:
-            label: Save
-            from:
-              - unpublished
-            to: unpublished
-            weight: -4
-          unpublish:
-            label: Unpublish
-            from:
-              - published
-            to: unpublished
-            weight: 0
-          update:
-            label: Update
-            from:
-              - published
-            to: published
-            weight: -3
-        default_moderation_state: draft
-      _core:
-        default_config_hash: C0jZewM2mDrvz1X6CgI-Z0c5suz-odCZu1SKLKhotjo
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml b/config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
deleted file mode 100644
index 7fcb605..0000000
--- a/config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: b4b9a27c-ff2b-4454-9a95-49b6a73ba7c4
-langcode: en
-status: true
-dependencies:
-  module:
-    - wysiwyg_linebreaks
-id: config_sync.module.wysiwyg_linebreaks
-snapshotSet: config_sync
-extensionType: module
-extensionName: wysiwyg_linebreaks
-items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml
index ebb569d..d57649a 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml
@@ -36,8 +36,6 @@ items:
         level: 1
         depth: 1
       visibility: {  }
-      _core:
-        default_config_hash: ivRfdXcG0y7oqxOSNtZVZoHjqp4UiRzqxBkeWu-td7w
   -
     collection: ''
     name: block.block.bulma_branding
@@ -64,8 +62,6 @@ items:
         use_site_name: true
         use_site_slogan: true
       visibility: {  }
-      _core:
-        default_config_hash: 5nFquolsBvfMODac4talrrzlz8UQuLwL4tsU2fXxuNw
   -
     collection: ''
     name: block.block.bulma_content
@@ -89,8 +85,6 @@ items:
         provider: system
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: ZdQFxp_aNkFGWiHwnq1dL4zlpO3nJayqrgx9F7q_F5c
   -
     collection: ''
     name: block.block.bulma_help
@@ -114,8 +108,6 @@ items:
         provider: help
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: FJJ2r0bw42DqHL5Q2FufIbCe31Z-THwXZURQ-M0i87s
   -
     collection: ''
     name: block.block.bulma_local_tasks
@@ -139,8 +131,6 @@ items:
         primary: true
         secondary: true
       visibility: {  }
-      _core:
-        default_config_hash: igXl1RwWLK2KijmB1eu6sT8BVJcxQqwbbKcI91DVZc8
   -
     collection: ''
     name: block.block.bulma_main_menu
@@ -168,8 +158,6 @@ items:
         level: 1
         depth: 1
       visibility: {  }
-      _core:
-        default_config_hash: q9K0LS21F7XLuNT68ck1R3U5if0oqI0ZyyIVhfCXdN8
   -
     collection: ''
     name: block.block.bulma_messages
@@ -193,8 +181,6 @@ items:
         provider: system
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: Ron5OcY_0EyL7s5mDBUiLG_9LEvcC8KIPNmv6M5uAgE
   -
     collection: ''
     name: block.block.bulma_page_title
@@ -216,8 +202,6 @@ items:
         provider: core
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: vKDVSFwHMcXw-AbHhOcynvv3NSyQWNLZPS605mARwDw
   -
     collection: ''
     name: block.block.bulma_powered
@@ -241,8 +225,6 @@ items:
         provider: system
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: e_Xh9DIa3ZyP3C0BZayzu0bpWKwWH3Uz0afzQXOGVx8
   -
     collection: ''
     name: block.block.bulma_tools
@@ -270,8 +252,6 @@ items:
         level: 1
         depth: 0
       visibility: {  }
-      _core:
-        default_config_hash: QJJjJ6HJDvVZazsyjBAOMao6Ffxnior9KqgZxZqPh2E
   -
     collection: ''
     name: bulma.settings
@@ -303,9 +283,7 @@ items:
         narrow: 0
       cdn:
         bulma:
-          version: 0.9.1
+          version: 0.5.3
         bulmaswatch:
-          version: 0.8.1
+          version: 0.5.1
           theme: default
-      _core:
-        default_config_hash: QfWMJov5ZfW5ByL0Vo3QlL069XBMiMEO5STgyeSiwNY
diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.claro.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.claro.yml
index c6988d6..aec9b98 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.theme.claro.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.claro.yml
@@ -29,11 +29,9 @@ items:
       settings:
         id: system_breadcrumb_block
         label: Breadcrumbs
-        label_display: '0'
         provider: system
+        label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
   -
     collection: ''
     name: block.block.claro_content
@@ -54,11 +52,9 @@ items:
       settings:
         id: system_main_block
         label: 'Main page content'
-        label_display: '0'
         provider: system
+        label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
   -
     collection: ''
     name: block.block.claro_help
@@ -79,11 +75,9 @@ items:
       settings:
         id: help_block
         label: Help
-        label_display: '0'
         provider: help
+        label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
   -
     collection: ''
     name: block.block.claro_local_actions
@@ -102,11 +96,9 @@ items:
       settings:
         id: local_actions_block
         label: 'Primary admin actions'
-        label_display: '0'
         provider: core
+        label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
   -
     collection: ''
     name: block.block.claro_messages
@@ -127,11 +119,9 @@ items:
       settings:
         id: system_messages_block
         label: 'Status messages'
-        label_display: '0'
         provider: system
+        label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
   -
     collection: ''
     name: block.block.claro_page_title
@@ -150,11 +140,9 @@ items:
       settings:
         id: page_title_block
         label: 'Page title'
-        label_display: '0'
         provider: core
+        label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
   -
     collection: ''
     name: block.block.claro_primary_local_tasks
@@ -173,13 +161,11 @@ items:
       settings:
         id: local_tasks_block
         label: 'Primary tabs'
-        label_display: '0'
         provider: core
+        label_display: '0'
         primary: true
         secondary: false
       visibility: {  }
-      _core:
-        default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
   -
     collection: ''
     name: block.block.claro_secondary_local_tasks
@@ -198,10 +184,15 @@ items:
       settings:
         id: local_tasks_block
         label: 'Secondary tabs'
-        label_display: '0'
         provider: core
+        label_display: '0'
         primary: false
         secondary: true
       visibility: {  }
-      _core:
-        default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
+  -
+    collection: ''
+    name: claro.settings
+    data:
+      third_party_settings:
+        shortcut:
+          module_link: true
diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.classy.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.classy.yml
new file mode 100644
index 0000000..03e441b
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.classy.yml
@@ -0,0 +1,11 @@
+uuid: 0b98ca7b-9b88-498c-a1da-639a92d1bb9d
+langcode: en
+status: true
+dependencies:
+  theme:
+    - classy
+id: config_sync.theme.classy
+snapshotSet: config_sync
+extensionType: theme
+extensionName: classy
+items: {  }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml
index 4e47aa7..2aa8b9c 100644
--- a/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml
@@ -36,8 +36,6 @@ items:
         level: 1
         depth: 1
       visibility: {  }
-      _core:
-        default_config_hash: vy-C4gu3RzSygiqQgbVRviyDx_EYg3GqyyaJFULGJK8
   -
     collection: ''
     name: block.block.octavia_branding
@@ -64,8 +62,6 @@ items:
         use_site_name: true
         use_site_slogan: true
       visibility: {  }
-      _core:
-        default_config_hash: iPg6898SxUQVlYH_NuWRzSkMQuOaPSwLjQBREX8oAaI
   -
     collection: ''
     name: block.block.octavia_content
@@ -89,8 +85,6 @@ items:
         provider: system
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: Z6hRh19g_ISc7jSTDck4pGBBLH9O0d7na9N-yBHCeQg
   -
     collection: ''
     name: block.block.octavia_help
@@ -114,8 +108,6 @@ items:
         provider: help
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: j3YKEEyjzssnOoME1eq04152YXaW9TcGetpZOwq-iv8
   -
     collection: ''
     name: block.block.octavia_local_tasks
@@ -139,8 +131,6 @@ items:
         primary: true
         secondary: true
       visibility: {  }
-      _core:
-        default_config_hash: kPIjtle6zFWxDFqQU5rSNq4Bov31ojFsMyXTwM949vU
   -
     collection: ''
     name: block.block.octavia_main_menu
@@ -168,8 +158,6 @@ items:
         level: 1
         depth: 2
       visibility: {  }
-      _core:
-        default_config_hash: '-GYFkdwy2i0163rMx99Cxo9jHfj7lngADq0BZbnTUi0'
   -
     collection: ''
     name: block.block.octavia_messages
@@ -193,8 +181,6 @@ items:
         provider: system
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: PIFOE-_FeI-mqeoVBDWS6F1cmZYnvTKOSC1ZRLCGFXg
   -
     collection: ''
     name: block.block.octavia_page_title
@@ -216,8 +202,6 @@ items:
         provider: core
         label_display: '0'
       visibility: {  }
-      _core:
-        default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM
   -
     collection: ''
     name: octavia.settings
@@ -266,5 +250,3 @@ items:
         use_default: true
       favicon:
         use_default: true
-      _core:
-        default_config_hash: 67Xcg6LAsHVMjU8lsXcnGGSsYifNZYozNWZPyqK0gaA
diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.seven.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.seven.yml
new file mode 100644
index 0000000..5263541
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.seven.yml
@@ -0,0 +1,11 @@
+uuid: 0a805a76-d84e-43c1-a204-9164f27cedae
+langcode: en
+status: true
+dependencies:
+  theme:
+    - seven
+id: config_sync.theme.seven
+snapshotSet: config_sync
+extensionType: theme
+extensionName: seven
+items: {  }
diff --git a/config/sync/contact.form.feedback.yml b/config/sync/contact.form.feedback.yml
index 63ca213..e01ff72 100644
--- a/config/sync/contact.form.feedback.yml
+++ b/config/sync/contact.form.feedback.yml
@@ -7,7 +7,7 @@ _core:
 id: feedback
 label: 'Website feedback'
 recipients:
-  - editors@geo.coop
+  - admin@example.com
 reply: ''
 weight: 0
 message: 'Your message has been sent.'
diff --git a/config/sync/contact.settings.yml b/config/sync/contact.settings.yml
index 1c949a6..a2903f5 100644
--- a/config/sync/contact.settings.yml
+++ b/config/sync/contact.settings.yml
@@ -1,7 +1,7 @@
-_core:
-  default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
 default_form: feedback
 flood:
   limit: 5
   interval: 3600
 user_default_enabled: true
+_core:
+  default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
diff --git a/config/sync/core.date_format.medium.yml b/config/sync/core.date_format.medium.yml
index e99abbe..e50532c 100644
--- a/config/sync/core.date_format.medium.yml
+++ b/config/sync/core.date_format.medium.yml
@@ -7,4 +7,4 @@ _core:
 id: medium
 label: 'Default medium date'
 locked: false
-pattern: 'F j, Y, g:i a'
+pattern: 'D, m/d/Y - H:i'
diff --git a/config/sync/core.entity_form_display.block_content.basic.default.yml b/config/sync/core.entity_form_display.block_content.basic.default.yml
new file mode 100644
index 0000000..47f2c53
--- /dev/null
+++ b/config/sync/core.entity_form_display.block_content.basic.default.yml
@@ -0,0 +1,34 @@
+uuid: a5778e9e-c9ca-4a16-933d-03389265271c
+langcode: en
+status: true
+dependencies:
+  config:
+    - block_content.type.basic
+    - field.field.block_content.basic.body
+  module:
+    - text
+_core:
+  default_config_hash: 6qtUzM5E9WGaNTRlMmYhrScXEP509jFMzRWm3gqFXvQ
+id: block_content.basic.default
+targetEntityType: block_content
+bundle: basic
+mode: default
+content:
+  body:
+    type: text_textarea_with_summary
+    weight: -4
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+  info:
+    type: string_textfield
+    weight: -5
+    settings:
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    region: content
+hidden: {  }
diff --git a/config/sync/core.entity_form_display.block_content.slide.default.yml b/config/sync/core.entity_form_display.block_content.slide.default.yml
index bec5ecb..29b60dd 100644
--- a/config/sync/core.entity_form_display.block_content.slide.default.yml
+++ b/config/sync/core.entity_form_display.block_content.slide.default.yml
@@ -17,7 +17,6 @@ content:
   field_slide:
     type: entity_reference_paragraphs
     weight: 26
-    region: content
     settings:
       title: Paragraph
       title_plural: Paragraphs
@@ -26,6 +25,7 @@ content:
       form_display_mode: default
       default_paragraph_type: ''
     third_party_settings: {  }
+    region: content
   info:
     type: string_textfield
     weight: -5
diff --git a/config/sync/core.entity_form_display.comment.comment.default.yml b/config/sync/core.entity_form_display.comment.comment.default.yml
index 3e94ddf..03267ae 100644
--- a/config/sync/core.entity_form_display.comment.comment.default.yml
+++ b/config/sync/core.entity_form_display.comment.comment.default.yml
@@ -22,15 +22,10 @@ content:
   comment_body:
     type: text_textarea
     weight: 1
-    region: content
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
-  comment_notify_settings:
-    weight: 1
     region: content
-    settings: {  }
-    third_party_settings: {  }
 hidden:
   subject: true
diff --git a/config/sync/core.entity_form_display.contact_message.feedback.default.yml b/config/sync/core.entity_form_display.contact_message.feedback.default.yml
deleted file mode 100644
index 1c1ebf4..0000000
--- a/config/sync/core.entity_form_display.contact_message.feedback.default.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-uuid: 2ac83193-334d-4c4c-b74c-9dfc93d92765
-langcode: en
-status: true
-dependencies:
-  config:
-    - contact.form.feedback
-id: contact_message.feedback.default
-targetEntityType: contact_message
-bundle: feedback
-mode: default
-content:
-  copy:
-    weight: 5
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  mail:
-    weight: 1
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  message:
-    type: string_textarea
-    weight: 3
-    region: content
-    settings:
-      rows: 12
-      placeholder: ''
-    third_party_settings: {  }
-  name:
-    weight: 0
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  preview:
-    weight: 4
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  subject:
-    type: string_textfield
-    weight: 2
-    region: content
-    settings:
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden: {  }
diff --git a/config/sync/core.entity_form_display.media.audio.default.yml b/config/sync/core.entity_form_display.media.audio.default.yml
deleted file mode 100644
index be644ae..0000000
--- a/config/sync/core.entity_form_display.media.audio.default.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-uuid: 7878cb69-e0dd-4460-a1a9-ce9554202885
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.audio.field_media_audio_file
-    - media.type.audio
-  module:
-    - file
-    - path
-_core:
-  default_config_hash: G2_SKH3jmI9FQeXSUxo3KgQqiyF1hPDEkc7-3-rCSbc
-id: media.audio.default
-targetEntityType: media
-bundle: audio
-mode: default
-content:
-  created:
-    type: datetime_timestamp
-    weight: 10
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  field_media_audio_file:
-    type: file_generic
-    weight: 0
-    region: content
-    settings:
-      progress_indicator: throbber
-    third_party_settings: {  }
-  path:
-    type: path
-    weight: 30
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 100
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  uid:
-    type: entity_reference_autocomplete
-    weight: 5
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden:
-  name: true
diff --git a/config/sync/core.entity_form_display.media.audio.media_library.yml b/config/sync/core.entity_form_display.media.audio.media_library.yml
deleted file mode 100644
index 2992cd4..0000000
--- a/config/sync/core.entity_form_display.media.audio.media_library.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 5be82444-ff70-4028-9210-f67ab1afc3a9
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_form_mode.media.media_library
-    - field.field.media.audio.field_media_audio_file
-    - media.type.audio
-_core:
-  default_config_hash: 28vwMIYtvyjPcD4RyciZXIztxtZgmuWRCNgYemr_SZE
-id: media.audio.media_library
-targetEntityType: media
-bundle: audio
-mode: media_library
-content: {  }
-hidden:
-  created: true
-  field_media_audio_file: true
-  name: true
-  path: true
-  status: true
-  uid: true
diff --git a/config/sync/core.entity_form_display.media.document.default.yml b/config/sync/core.entity_form_display.media.document.default.yml
deleted file mode 100644
index 617e24f..0000000
--- a/config/sync/core.entity_form_display.media.document.default.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-uuid: 6c80efec-2297-4d04-a791-bab9e91b927e
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.document.field_media_document
-    - media.type.document
-  module:
-    - file
-    - path
-_core:
-  default_config_hash: j3PwHXJrIDYYTMBtwbGTChh6m3fzbh9KJyHZ4wJdb1U
-id: media.document.default
-targetEntityType: media
-bundle: document
-mode: default
-content:
-  created:
-    type: datetime_timestamp
-    weight: 10
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  field_media_document:
-    type: file_generic
-    weight: 0
-    region: content
-    settings:
-      progress_indicator: throbber
-    third_party_settings: {  }
-  path:
-    type: path
-    weight: 30
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 100
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  uid:
-    type: entity_reference_autocomplete
-    weight: 5
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden:
-  name: true
diff --git a/config/sync/core.entity_form_display.media.document.media_library.yml b/config/sync/core.entity_form_display.media.document.media_library.yml
deleted file mode 100644
index 7061258..0000000
--- a/config/sync/core.entity_form_display.media.document.media_library.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 5e5d1a21-1ba6-42da-bab2-13e042412356
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_form_mode.media.media_library
-    - field.field.media.document.field_media_document
-    - media.type.document
-_core:
-  default_config_hash: dcpfpqyLXOSGpulacMAJW3H-G34_LeNsjdfxd1_oCfY
-id: media.document.media_library
-targetEntityType: media
-bundle: document
-mode: media_library
-content: {  }
-hidden:
-  created: true
-  field_media_document: true
-  name: true
-  path: true
-  status: true
-  uid: true
diff --git a/config/sync/core.entity_form_display.media.image.default.yml b/config/sync/core.entity_form_display.media.image.default.yml
deleted file mode 100644
index fd37bc0..0000000
--- a/config/sync/core.entity_form_display.media.image.default.yml
+++ /dev/null
@@ -1,65 +0,0 @@
-uuid: 43ae5c46-1d6d-4e4f-ac52-1d6895d237f1
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.image.field_media_image
-    - image.style.media_library
-    - media.type.image
-  module:
-    - image_widget_crop
-    - path
-_core:
-  default_config_hash: v5qWuH4sE0OlCxD1-nK7_3VpLAN3Doi1y05Hvl-7Zwk
-id: media.image.default
-targetEntityType: media
-bundle: image
-mode: default
-content:
-  created:
-    type: datetime_timestamp
-    weight: 10
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  field_media_image:
-    type: image_widget_crop
-    weight: 0
-    region: content
-    settings:
-      progress_indicator: throbber
-      preview_image_style: media_library
-      crop_preview_image_style: crop_thumbnail
-      crop_list:
-        - extra_wide_rectangle
-        - wide_rectangle
-      crop_types_required: {  }
-      warn_multiple_usages: true
-      show_crop_area: false
-      show_default_crop: true
-    third_party_settings: {  }
-  path:
-    type: path
-    weight: 30
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 100
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  uid:
-    type: entity_reference_autocomplete
-    weight: 5
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden:
-  name: true
diff --git a/config/sync/core.entity_form_display.media.image.main.yml b/config/sync/core.entity_form_display.media.image.main.yml
deleted file mode 100644
index 7cc26d6..0000000
--- a/config/sync/core.entity_form_display.media.image.main.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-uuid: 63cead63-8e58-4ea3-87dc-b9a70772c724
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_form_mode.media.main
-    - field.field.media.image.field_media_image
-    - image.style.media_library
-    - media.type.image
-  module:
-    - image_widget_crop
-_core:
-  default_config_hash: 3U-oqNeYCjMf0Ut-MGSnlAVCChG9hh-CcFHBjll6rco
-id: media.image.main
-targetEntityType: media
-bundle: image
-mode: main
-content:
-  field_media_image:
-    type: image_widget_crop
-    weight: 0
-    region: content
-    settings:
-      progress_indicator: throbber
-      preview_image_style: media_library
-      crop_preview_image_style: crop_thumbnail
-      crop_list:
-        - extra_wide_rectangle
-        - wide_rectangle
-      crop_types_required: {  }
-      warn_multiple_usages: true
-      show_crop_area: false
-      show_default_crop: true
-    third_party_settings: {  }
-hidden:
-  created: true
-  name: true
-  path: true
-  status: true
-  uid: true
diff --git a/config/sync/core.entity_form_display.media.image.media_library.yml b/config/sync/core.entity_form_display.media.image.media_library.yml
deleted file mode 100644
index 064366e..0000000
--- a/config/sync/core.entity_form_display.media.image.media_library.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-uuid: c507cbea-8345-4410-90b2-1d6ecd29d0ef
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_form_mode.media.media_library
-    - field.field.media.image.field_media_image
-    - image.style.media_library
-    - media.type.image
-  module:
-    - image_widget_crop
-_core:
-  default_config_hash: wIK8DFl2IN-h0ibfi0dIjMcjCErV1qHMOTfENAHs7qw
-id: media.image.media_library
-targetEntityType: media
-bundle: image
-mode: media_library
-content:
-  field_media_image:
-    type: image_widget_crop
-    weight: 1
-    region: content
-    settings:
-      progress_indicator: throbber
-      preview_image_style: media_library
-      crop_preview_image_style: crop_thumbnail
-      crop_list:
-        - extra_wide_rectangle
-        - wide_rectangle
-      crop_types_required: {  }
-      warn_multiple_usages: true
-      show_crop_area: false
-      show_default_crop: true
-    third_party_settings: {  }
-hidden:
-  created: true
-  name: true
-  path: true
-  status: true
-  uid: true
diff --git a/config/sync/core.entity_form_display.media.remote_video.default.yml b/config/sync/core.entity_form_display.media.remote_video.default.yml
deleted file mode 100644
index ffed902..0000000
--- a/config/sync/core.entity_form_display.media.remote_video.default.yml
+++ /dev/null
@@ -1,56 +0,0 @@
-uuid: c3f055d1-2982-4ac3-aa67-0812fb55ef2d
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.remote_video.field_media_oembed_video
-    - media.type.remote_video
-  module:
-    - media
-    - path
-_core:
-  default_config_hash: pM8mGlwfpvfG_y5tZn0lGAXFLXz2_yKkL7MvWZsRqdA
-id: media.remote_video.default
-targetEntityType: media
-bundle: remote_video
-mode: default
-content:
-  created:
-    type: datetime_timestamp
-    weight: 10
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  field_media_oembed_video:
-    type: oembed_textfield
-    weight: 0
-    region: content
-    settings:
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-  path:
-    type: path
-    weight: 30
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 100
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  uid:
-    type: entity_reference_autocomplete
-    weight: 5
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden:
-  name: true
diff --git a/config/sync/core.entity_form_display.media.remote_video.media_library.yml b/config/sync/core.entity_form_display.media.remote_video.media_library.yml
deleted file mode 100644
index d44b357..0000000
--- a/config/sync/core.entity_form_display.media.remote_video.media_library.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 4abedeb4-96a3-4cc2-8fb0-3a4f581ee206
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_form_mode.media.media_library
-    - field.field.media.remote_video.field_media_oembed_video
-    - media.type.remote_video
-_core:
-  default_config_hash: TBgPW-uaXRaICBwLaVc16rXpRiLSknDIdF9q0XL7qso
-id: media.remote_video.media_library
-targetEntityType: media
-bundle: remote_video
-mode: media_library
-content: {  }
-hidden:
-  created: true
-  field_media_oembed_video: true
-  name: true
-  path: true
-  status: true
-  uid: true
diff --git a/config/sync/core.entity_form_display.media.video.default.yml b/config/sync/core.entity_form_display.media.video.default.yml
deleted file mode 100644
index 8f97c0f..0000000
--- a/config/sync/core.entity_form_display.media.video.default.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-uuid: ecc70309-b995-47ca-b939-11982d665b04
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.video.field_media_video_file
-    - media.type.video
-  module:
-    - file
-    - path
-_core:
-  default_config_hash: 0kIIaDTt6dixXy8TZkat2MNGZJ6vkRG8TaBWTy3E1bM
-id: media.video.default
-targetEntityType: media
-bundle: video
-mode: default
-content:
-  created:
-    type: datetime_timestamp
-    weight: 10
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  field_media_video_file:
-    type: file_generic
-    weight: 0
-    region: content
-    settings:
-      progress_indicator: throbber
-    third_party_settings: {  }
-  path:
-    type: path
-    weight: 30
-    region: content
-    settings: {  }
-    third_party_settings: {  }
-  status:
-    type: boolean_checkbox
-    weight: 100
-    region: content
-    settings:
-      display_label: true
-    third_party_settings: {  }
-  uid:
-    type: entity_reference_autocomplete
-    weight: 5
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden:
-  name: true
diff --git a/config/sync/core.entity_form_display.media.video.media_library.yml b/config/sync/core.entity_form_display.media.video.media_library.yml
deleted file mode 100644
index ed98af4..0000000
--- a/config/sync/core.entity_form_display.media.video.media_library.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 67d732ed-73cc-43ff-9a25-f0d5094ebae5
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_form_mode.media.media_library
-    - field.field.media.video.field_media_video_file
-    - media.type.video
-_core:
-  default_config_hash: kGv8YsopqHvzTzb7QTINWcv0fnNa5ZDQyZxpOQR2vro
-id: media.video.media_library
-targetEntityType: media
-bundle: video
-mode: media_library
-content: {  }
-hidden:
-  created: true
-  field_media_video_file: true
-  name: true
-  path: true
-  status: true
-  uid: true
diff --git a/config/sync/core.entity_form_display.node.article.default.yml b/config/sync/core.entity_form_display.node.article.default.yml
index 85abc05..7efc984 100644
--- a/config/sync/core.entity_form_display.node.article.default.yml
+++ b/config/sync/core.entity_form_display.node.article.default.yml
@@ -7,25 +7,28 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
+    - field.field.node.article.field_economic_sectors
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
+    - field.field.node.article.field_institutions_structures
     - field.field.node.article.field_meta_tags
+    - field.field.node.article.field_movements_struggles
+    - field.field.node.article.field_practices_tools_strategies
     - field.field.node.article.field_publication_date
+    - field.field.node.article.field_regions
     - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
     - field.field.node.article.field_upload
+    - field.field.node.article.field_visions_models
+    - image.style.thumbnail
     - node.type.article
   module:
     - comment
-    - cshs
     - datetime
-    - entity_reference_override
     - file
-    - media_library_media_modify
+    - focal_point
     - metatag
     - paragraphs
     - path
@@ -39,46 +42,33 @@ mode: default
 content:
   comment:
     type: comment_default
-    weight: 13
-    region: content
+    weight: 12
     settings: {  }
     third_party_settings: {  }
+    region: content
   created:
     type: datetime_timestamp
-    weight: 10
-    region: content
+    weight: 9
     settings: {  }
     third_party_settings: {  }
+    region: content
   field_article_type:
-    type: options_select
     weight: 2
-    region: content
     settings: {  }
     third_party_settings: {  }
+    type: options_select
+    region: content
   field_authors:
     type: entity_reference_autocomplete
     weight: 3
     region: content
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
-  field_biography:
-    type: entity_reference_override_autocomplete
-    weight: 7
-    region: content
-    settings:
-      match_operator: CONTAINS
-      size: '120'
-      placeholder: ''
-      match_limit: 10
-    third_party_settings: {  }
   field_body_paragraph:
-    type: entity_reference_paragraphs
     weight: 6
-    region: content
     settings:
       title: Paragraph
       title_plural: Paragraphs
@@ -87,119 +77,165 @@ content:
       form_display_mode: default
       default_paragraph_type: text
     third_party_settings: {  }
-  field_media_image:
-    type: media_library_media_modify_widget
+    type: entity_reference_paragraphs
+    region: content
+  field_economic_sectors:
+    weight: 26
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_image:
+    type: image_focal_point
     weight: 4
-    region: content
     settings:
-      media_types: {  }
-      form_mode: default
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+      preview_link: true
+      offsets: '50,50'
     third_party_settings: {  }
+    region: content
+  field_institutions_structures:
+    weight: 27
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
   field_meta_tags:
-    type: metatag_firehose
-    weight: 15
-    region: content
-    settings:
-      sidebar: true
-      use_details: true
-    third_party_settings: {  }
-  field_publication_date:
-    type: datetime_default
-    weight: 19
-    region: content
+    weight: 14
     settings: {  }
     third_party_settings: {  }
-  field_subtitle:
-    type: string_textfield
-    weight: 1
+    type: metatag_firehose
     region: content
+  field_movements_struggles:
+    weight: 28
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_practices_tools_strategies:
+    weight: 29
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_publication_date:
+    weight: 24
+    settings: {  }
+    third_party_settings: {  }
+    type: datetime_default
+    region: content
+  field_regions:
+    weight: 30
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_subtitle:
+    weight: 1
     settings:
       size: 100
       placeholder: ''
     third_party_settings: {  }
-  field_summary:
-    type: text_textarea
-    weight: 5
+    type: string_textfield
     region: content
+  field_summary:
+    weight: 5
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
-  field_topics:
-    type: cshs
-    weight: 8
+    type: text_textarea
     region: content
+  field_tags:
+    type: entity_reference_autocomplete_tags
+    weight: 7
     settings:
-      save_lineage: false
-      force_deepest: true
-      parent: '0'
-      level_labels: ''
-      hierarchy_depth: 0
-      required_depth: 0
-      none_label: '- Please select -'
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
     third_party_settings: {  }
-  field_upload:
-    type: file_generic
-    weight: 18
     region: content
+  field_upload:
+    weight: 17
     settings:
       progress_indicator: throbber
     third_party_settings: {  }
+    type: file_generic
+    region: content
+  field_visions_models:
+    weight: 31
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
   path:
     type: path
-    weight: 14
-    region: content
+    weight: 13
     settings: {  }
     third_party_settings: {  }
+    region: content
   promote:
     type: boolean_checkbox
-    weight: 11
-    region: content
     settings:
       display_label: true
+    weight: 10
     third_party_settings: {  }
+    region: content
   status:
     type: boolean_checkbox
-    weight: 16
-    region: content
     settings:
       display_label: true
+    weight: 15
+    region: content
     third_party_settings: {  }
   sticky:
     type: boolean_checkbox
-    weight: 12
-    region: content
     settings:
       display_label: true
+    weight: 11
     third_party_settings: {  }
+    region: content
   title:
     type: string_textfield
     weight: 0
-    region: content
     settings:
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   uid:
     type: entity_reference_autocomplete
-    weight: 9
-    region: content
+    weight: 8
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   url_redirects:
-    weight: 17
+    weight: 16
     region: content
     settings: {  }
     third_party_settings: {  }
 hidden:
   body: true
-  field_image: true
-  field_tags: true
+  field_topics: true
diff --git a/config/sync/core.entity_form_display.node.blog.default.yml b/config/sync/core.entity_form_display.node.blog.default.yml
index 79624f2..00c408e 100644
--- a/config/sync/core.entity_form_display.node.blog.default.yml
+++ b/config/sync/core.entity_form_display.node.blog.default.yml
@@ -7,19 +7,23 @@ dependencies:
     - field.field.node.blog.comment
     - field.field.node.blog.field_authors
     - field.field.node.blog.field_body_paragraph
+    - field.field.node.blog.field_economic_sectors
     - field.field.node.blog.field_image
+    - field.field.node.blog.field_institutions_structures
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
+    - field.field.node.blog.field_movements_struggles
+    - field.field.node.blog.field_practices_tools_strategies
+    - field.field.node.blog.field_regions
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
     - field.field.node.blog.field_upload
+    - field.field.node.blog.field_visions_models
     - image.style.thumbnail
     - node.type.blog
   module:
     - comment
     - cshs
-    - datetime
     - file
     - focal_point
     - metatag
@@ -34,31 +38,28 @@ bundle: blog
 mode: default
 content:
   comment:
-    type: comment_default
     weight: 11
-    region: content
     settings: {  }
     third_party_settings: {  }
+    type: comment_default
+    region: content
   created:
     type: datetime_timestamp
     weight: 7
-    region: content
     settings: {  }
     third_party_settings: {  }
-  field_authors:
-    type: entity_reference_autocomplete
-    weight: 1
     region: content
+  field_authors:
+    weight: 1
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
-  field_body_paragraph:
-    type: entity_reference_paragraphs
-    weight: 3
+    type: entity_reference_autocomplete
     region: content
+  field_body_paragraph:
+    weight: 4
     settings:
       title: Paragraph
       title_plural: Paragraphs
@@ -67,101 +68,155 @@ content:
       form_display_mode: default
       default_paragraph_type: text
     third_party_settings: {  }
-  field_media_image:
-    type: media_library_media_modify_widget
-    weight: 4
+    type: entity_reference_paragraphs
     region: content
+  field_economic_sectors:
+    weight: 16
     settings:
-      media_types: {  }
-      form_mode: main
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
     third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_image:
+    weight: 2
+    settings:
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+      preview_link: true
+      offsets: '50,50'
+    third_party_settings: {  }
+    type: image_focal_point
+    region: content
+  field_institutions_structures:
+    weight: 17
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
   field_meta_tags:
-    type: metatag_firehose
     weight: 12
-    region: content
-    settings:
-      sidebar: true
-      use_details: true
-    third_party_settings: {  }
-  field_publication_date:
-    type: datetime_default
-    weight: 26
-    region: content
     settings: {  }
     third_party_settings: {  }
-  field_summary:
-    type: text_textarea
-    weight: 2
+    type: metatag_firehose
     region: content
+  field_movements_struggles:
+    weight: 18
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_practices_tools_strategies:
+    weight: 19
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_regions:
+    weight: 20
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_summary:
+    weight: 3
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
+    type: text_textarea
+    region: content
+  field_tags:
+    weight: 5
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete_tags
+    region: content
   field_topics:
     type: cshs
-    weight: 5
+    weight: 22
     region: content
     settings:
-      force_deepest: true
-      parent: '0'
+      parent: 0
       level_labels: ''
+      force_deepest: false
     third_party_settings: {  }
   field_upload:
-    type: file_generic
     weight: 15
-    region: content
     settings:
       progress_indicator: throbber
     third_party_settings: {  }
+    type: file_generic
+    region: content
+  field_visions_models:
+    weight: 21
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
   path:
     type: path
     weight: 10
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
   promote:
     type: boolean_checkbox
-    weight: 8
-    region: content
     settings:
       display_label: true
+    weight: 8
     third_party_settings: {  }
+    region: content
   status:
     type: boolean_checkbox
-    weight: 13
-    region: content
     settings:
       display_label: true
+    weight: 13
+    region: content
     third_party_settings: {  }
   sticky:
     type: boolean_checkbox
-    weight: 9
-    region: content
     settings:
       display_label: true
+    weight: 9
     third_party_settings: {  }
+    region: content
   title:
     type: string_textfield
     weight: 0
-    region: content
     settings:
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   uid:
     type: entity_reference_autocomplete
     weight: 6
-    region: content
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   url_redirects:
     weight: 14
     region: content
@@ -169,5 +224,3 @@ content:
     third_party_settings: {  }
 hidden:
   body: true
-  field_image: true
-  field_tags: true
diff --git a/config/sync/core.entity_form_display.node.collection.default.yml b/config/sync/core.entity_form_display.node.collection.default.yml
index e2050ae..a63bd3d 100644
--- a/config/sync/core.entity_form_display.node.collection.default.yml
+++ b/config/sync/core.entity_form_display.node.collection.default.yml
@@ -6,24 +6,19 @@ dependencies:
     - field.field.node.collection.body
     - field.field.node.collection.comment
     - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
     - field.field.node.collection.field_collection_items
     - field.field.node.collection.field_collection_type
     - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
     - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
     - field.field.node.collection.field_summary
     - field.field.node.collection.field_tags
     - field.field.node.collection.field_topics
+    - image.style.thumbnail
     - node.type.collection
   module:
     - comment
-    - cshs
-    - datetime
-    - media_library_media_modify
+    - image
     - metatag
-    - paragraphs
     - path
     - text
 _core:
@@ -34,118 +29,107 @@ bundle: collection
 mode: default
 content:
   comment:
-    type: comment_default
-    weight: 16
-    region: content
+    weight: 26
     settings: {  }
     third_party_settings: {  }
+    type: comment_default
+    region: content
   created:
     type: datetime_timestamp
-    weight: 13
+    weight: 10
     region: content
     settings: {  }
     third_party_settings: {  }
   field_authors:
-    type: entity_reference_autocomplete
-    weight: 2
-    region: content
+    weight: 4
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
-  field_body_paragraph:
-    type: entity_reference_paragraphs
+    type: entity_reference_autocomplete
+    region: content
+  field_collection_items:
     weight: 5
-    region: content
     settings:
-      title: Paragraph
-      title_plural: Paragraphs
-      edit_mode: open
-      add_mode: button
-      form_display_mode: default
-      default_paragraph_type: text
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
     third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
   field_collection_type:
-    type: options_select
     weight: 1
-    region: content
     settings: {  }
     third_party_settings: {  }
-  field_media_image:
-    type: media_library_media_modify_widget
+    type: options_select
+    region: content
+  field_image:
     weight: 3
-    region: content
     settings:
-      media_types: {  }
-      form_mode: default
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
+      progress_indicator: throbber
+      preview_image_style: thumbnail
     third_party_settings: {  }
+    type: image_image
+    region: content
   field_meta_tags:
-    type: metatag_firehose
-    weight: 8
-    region: content
-    settings:
-      sidebar: true
-      use_details: true
-    third_party_settings: {  }
-  field_publication_date:
-    type: datetime_default
-    weight: 9
-    region: content
+    weight: 7
     settings: {  }
     third_party_settings: {  }
-  field_summary:
-    type: text_textarea
-    weight: 4
+    type: metatag_firehose
     region: content
+  field_summary:
+    weight: 2
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
-  field_topics:
-    type: cshs
-    weight: 6
+    type: text_textarea
     region: content
+  field_tags:
+    weight: 15
     settings:
-      save_lineage: false
-      force_deepest: true
-      parent: '0'
-      level_labels: ''
-      hierarchy_depth: 0
-      required_depth: 0
-      none_label: '- Please select -'
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
     third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
+  field_topics:
+    weight: 14
+    settings:
+      match_operator: CONTAINS
+      size: 60
+      placeholder: ''
+    third_party_settings: {  }
+    type: entity_reference_autocomplete
+    region: content
   path:
     type: path
-    weight: 11
+    weight: 8
     region: content
     settings: {  }
     third_party_settings: {  }
   promote:
     type: boolean_checkbox
-    weight: 10
-    region: content
     settings:
       display_label: true
+    weight: 12
+    region: content
     third_party_settings: {  }
   status:
     type: boolean_checkbox
-    weight: 15
-    region: content
     settings:
       display_label: true
+    weight: 13
+    region: content
     third_party_settings: {  }
   sticky:
     type: boolean_checkbox
-    weight: 14
-    region: content
     settings:
       display_label: true
+    weight: 11
+    region: content
     third_party_settings: {  }
   title:
     type: string_textfield
@@ -157,21 +141,17 @@ content:
     third_party_settings: {  }
   uid:
     type: entity_reference_autocomplete
-    weight: 7
-    region: content
+    weight: 6
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
+    region: content
     third_party_settings: {  }
   url_redirects:
-    weight: 12
+    weight: 9
     region: content
     settings: {  }
     third_party_settings: {  }
 hidden:
   body: true
-  field_collection_items: true
-  field_image: true
-  field_tags: true
diff --git a/config/sync/core.entity_form_display.node.gleaning.default.yml b/config/sync/core.entity_form_display.node.gleaning.default.yml
index 78773b8..ec0daa3 100644
--- a/config/sync/core.entity_form_display.node.gleaning.default.yml
+++ b/config/sync/core.entity_form_display.node.gleaning.default.yml
@@ -6,14 +6,13 @@ dependencies:
     - field.field.node.gleaning.body
     - field.field.node.gleaning.comment
     - field.field.node.gleaning.field_image
-    - field.field.node.gleaning.field_media_image
-    - field.field.node.gleaning.field_publication_date
     - field.field.node.gleaning.field_upload
+    - image.style.thumbnail
     - node.type.gleaning
   module:
-    - datetime
+    - comment
     - file
-    - media_library_media_modify
+    - image
     - path
     - text
 id: node.gleaning.default
@@ -23,75 +22,70 @@ mode: default
 content:
   body:
     type: text_textarea_with_summary
-    weight: 2
-    region: content
+    weight: 121
     settings:
       rows: 9
       summary_rows: 3
       placeholder: ''
-      show_summary: false
     third_party_settings: {  }
+    region: content
+  comment:
+    weight: 124
+    settings: {  }
+    third_party_settings: {  }
+    type: comment_default
+    region: content
   created:
     type: datetime_timestamp
-    weight: 6
+    weight: 10
     region: content
     settings: {  }
     third_party_settings: {  }
-  field_media_image:
-    type: media_library_media_modify_widget
-    weight: 3
-    region: content
+  field_image:
+    weight: 122
     settings:
-      media_types: {  }
-      form_mode: default
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
+      progress_indicator: throbber
+      preview_image_style: thumbnail
     third_party_settings: {  }
-  field_publication_date:
-    type: datetime_default
-    weight: 1
+    type: image_image
     region: content
-    settings: {  }
-    third_party_settings: {  }
   field_upload:
-    type: file_generic
-    weight: 4
-    region: content
+    weight: 123
     settings:
       progress_indicator: throbber
     third_party_settings: {  }
+    type: file_generic
+    region: content
   path:
     type: path
-    weight: 9
+    weight: 30
     region: content
     settings: {  }
     third_party_settings: {  }
   promote:
     type: boolean_checkbox
-    weight: 8
-    region: content
     settings:
       display_label: true
+    weight: 15
+    region: content
     third_party_settings: {  }
   status:
     type: boolean_checkbox
-    weight: 11
-    region: content
     settings:
       display_label: true
+    weight: 120
+    region: content
     third_party_settings: {  }
   sticky:
     type: boolean_checkbox
-    weight: 7
-    region: content
     settings:
       display_label: true
+    weight: 16
+    region: content
     third_party_settings: {  }
   title:
     type: string_textfield
-    weight: 0
+    weight: -5
     region: content
     settings:
       size: 60
@@ -100,18 +94,15 @@ content:
   uid:
     type: entity_reference_autocomplete
     weight: 5
-    region: content
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
+    region: content
     third_party_settings: {  }
   url_redirects:
-    weight: 10
-    region: content
+    weight: 50
     settings: {  }
     third_party_settings: {  }
-hidden:
-  comment: true
-  field_image: true
+    region: content
+hidden: {  }
diff --git a/config/sync/core.entity_form_display.node.landing_page.default.yml b/config/sync/core.entity_form_display.node.landing_page.default.yml
index 9de5c85..244b533 100644
--- a/config/sync/core.entity_form_display.node.landing_page.default.yml
+++ b/config/sync/core.entity_form_display.node.landing_page.default.yml
@@ -3,10 +3,12 @@ langcode: en
 status: true
 dependencies:
   config:
+    - field.field.node.landing_page.comment
     - field.field.node.landing_page.field_body_paragraph
     - field.field.node.landing_page.field_meta_tags
     - node.type.landing_page
   module:
+    - comment
     - metatag
     - paragraphs
     - path
@@ -17,6 +19,12 @@ targetEntityType: node
 bundle: landing_page
 mode: default
 content:
+  comment:
+    weight: 51
+    settings: {  }
+    third_party_settings: {  }
+    type: comment_default
+    region: content
   created:
     type: datetime_timestamp
     weight: 3
@@ -24,9 +32,7 @@ content:
     settings: {  }
     third_party_settings: {  }
   field_body_paragraph:
-    type: entity_reference_paragraphs
     weight: 1
-    region: content
     settings:
       title: Paragraph
       title_plural: Paragraphs
@@ -35,12 +41,14 @@ content:
       form_display_mode: default
       default_paragraph_type: _none
     third_party_settings: {  }
-  field_meta_tags:
-    type: metatag_firehose
-    weight: 5
+    type: entity_reference_paragraphs
     region: content
+  field_meta_tags:
+    weight: 5
     settings: {  }
     third_party_settings: {  }
+    type: metatag_firehose
+    region: content
   path:
     type: path
     weight: 4
@@ -49,10 +57,10 @@ content:
     third_party_settings: {  }
   status:
     type: boolean_checkbox
-    weight: 6
-    region: content
     settings:
       display_label: true
+    weight: 6
+    region: content
     third_party_settings: {  }
   title:
     type: string_textfield
@@ -65,18 +73,17 @@ content:
   uid:
     type: entity_reference_autocomplete
     weight: 2
-    region: content
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
+    region: content
     third_party_settings: {  }
   url_redirects:
     weight: 50
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
 hidden:
   promote: true
   sticky: true
diff --git a/config/sync/core.entity_form_display.node.page.default.yml b/config/sync/core.entity_form_display.node.page.default.yml
index d3c10f8..e2ca52c 100644
--- a/config/sync/core.entity_form_display.node.page.default.yml
+++ b/config/sync/core.entity_form_display.node.page.default.yml
@@ -4,11 +4,13 @@ status: true
 dependencies:
   config:
     - field.field.node.page.body
+    - field.field.node.page.comment
     - field.field.node.page.field_body_paragraph
     - field.field.node.page.field_meta_tags
     - field.field.node.page.field_summary
     - node.type.page
   module:
+    - comment
     - metatag
     - paragraphs
     - path
@@ -20,16 +22,20 @@ targetEntityType: node
 bundle: page
 mode: default
 content:
+  comment:
+    weight: 51
+    settings: {  }
+    third_party_settings: {  }
+    type: comment_default
+    region: content
   created:
     type: datetime_timestamp
     weight: 4
-    region: content
     settings: {  }
     third_party_settings: {  }
-  field_body_paragraph:
-    type: entity_reference_paragraphs
-    weight: 2
     region: content
+  field_body_paragraph:
+    weight: 2
     settings:
       title: Paragraph
       title_plural: Paragraphs
@@ -38,56 +44,57 @@ content:
       form_display_mode: default
       default_paragraph_type: text
     third_party_settings: {  }
-  field_meta_tags:
-    type: metatag_firehose
-    weight: 6
+    type: entity_reference_paragraphs
     region: content
+  field_meta_tags:
+    weight: 6
     settings: {  }
     third_party_settings: {  }
-  field_summary:
-    type: text_textarea
-    weight: 1
+    type: metatag_firehose
     region: content
+  field_summary:
+    weight: 1
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
+    type: text_textarea
+    region: content
   path:
     type: path
     weight: 5
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
   status:
     type: boolean_checkbox
-    weight: 7
-    region: content
     settings:
       display_label: true
+    weight: 7
+    region: content
     third_party_settings: {  }
   title:
     type: string_textfield
     weight: 0
-    region: content
     settings:
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   uid:
     type: entity_reference_autocomplete
     weight: 3
-    region: content
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   url_redirects:
     weight: 50
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
 hidden:
   body: true
   promote: true
diff --git a/config/sync/core.entity_form_display.node.people.default.yml b/config/sync/core.entity_form_display.node.people.default.yml
index d9dd264..eab228c 100644
--- a/config/sync/core.entity_form_display.node.people.default.yml
+++ b/config/sync/core.entity_form_display.node.people.default.yml
@@ -5,15 +5,15 @@ dependencies:
   config:
     - field.field.node.people.body
     - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
+    - field.field.node.people.field_image
     - field.field.node.people.field_meta_tags
     - field.field.node.people.field_people_position
     - field.field.node.people.field_people_type
     - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
+    - image.style.thumbnail
     - node.type.people
   module:
-    - media_library_media_modify
+    - focal_point
     - metatag
     - paragraphs
     - path
@@ -28,13 +28,11 @@ content:
   created:
     type: datetime_timestamp
     weight: 7
-    region: content
     settings: {  }
     third_party_settings: {  }
-  field_body_paragraph:
-    type: entity_reference_paragraphs
-    weight: 5
     region: content
+  field_body_paragraph:
+    weight: 5
     settings:
       title: Paragraph
       title_plural: Paragraphs
@@ -43,104 +41,94 @@ content:
       form_display_mode: default
       default_paragraph_type: text
     third_party_settings: {  }
-  field_media_image:
-    type: media_library_media_modify_widget
-    weight: 4
+    type: entity_reference_paragraphs
     region: content
+  field_image:
+    weight: 3
     settings:
-      media_types: {  }
-      form_mode: main
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+      preview_link: true
+      offsets: '50,50'
     third_party_settings: {  }
+    type: image_focal_point
+    region: content
   field_meta_tags:
-    type: metatag_firehose
     weight: 26
-    region: content
-    settings:
-      sidebar: true
-      use_details: true
+    settings: {  }
     third_party_settings: {  }
-  field_people_position:
-    type: string_textfield
-    weight: 1
+    type: metatag_firehose
     region: content
+  field_people_position:
+    weight: 1
     settings:
       size: 60
       placeholder: ''
     third_party_settings: {  }
-  field_people_type:
-    type: options_select
-    weight: 2
+    type: string_textfield
     region: content
+  field_people_type:
+    weight: 2
     settings: {  }
     third_party_settings: {  }
-  field_summary:
-    type: text_textarea
-    weight: 4
+    type: options_select
     region: content
+  field_summary:
+    weight: 4
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
-  field_topics:
-    type: options_select
-    weight: 2
+    type: text_textarea
     region: content
-    settings: {  }
-    third_party_settings: {  }
   path:
     type: path
     weight: 10
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
   promote:
     type: boolean_checkbox
-    weight: 8
-    region: content
     settings:
       display_label: true
+    weight: 8
     third_party_settings: {  }
+    region: content
   status:
     type: boolean_checkbox
-    weight: 120
-    region: content
     settings:
       display_label: true
+    weight: 120
+    region: content
     third_party_settings: {  }
   sticky:
     type: boolean_checkbox
-    weight: 9
-    region: content
     settings:
       display_label: true
+    weight: 9
     third_party_settings: {  }
+    region: content
   title:
     type: string_textfield
     weight: 0
-    region: content
     settings:
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   uid:
     type: entity_reference_autocomplete
     weight: 6
-    region: content
     settings:
       match_operator: CONTAINS
-      match_limit: 10
       size: 60
       placeholder: ''
     third_party_settings: {  }
+    region: content
   url_redirects:
     weight: 50
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
 hidden:
   body: true
-  field_image: true
diff --git a/config/sync/core.entity_form_display.paragraph.drutopia_collection.default.yml b/config/sync/core.entity_form_display.paragraph.drutopia_collection.default.yml
deleted file mode 100644
index bc97c17..0000000
--- a/config/sync/core.entity_form_display.paragraph.drutopia_collection.default.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: ef91aa1b-8215-4118-9e9d-cc99b1d9b039
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.paragraph.drutopia_collection.field_items
-    - paragraphs.paragraphs_type.drutopia_collection
-_core:
-  default_config_hash: _1hZ95TGb11kRSt9dhg0nFE2VsiWz58W7YnNBRFKIO8
-id: paragraph.drutopia_collection.default
-targetEntityType: paragraph
-bundle: drutopia_collection
-mode: default
-content:
-  field_items:
-    type: entity_reference_autocomplete
-    weight: 0
-    region: content
-    settings:
-      match_operator: CONTAINS
-      match_limit: 10
-      size: 60
-      placeholder: ''
-    third_party_settings: {  }
-hidden:
-  created: true
-  status: true
diff --git a/config/sync/core.entity_form_display.paragraph.faq.default.yml b/config/sync/core.entity_form_display.paragraph.faq.default.yml
index d70ecf2..d578907 100644
--- a/config/sync/core.entity_form_display.paragraph.faq.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.faq.default.yml
@@ -15,9 +15,7 @@ bundle: faq
 mode: default
 content:
   field_faq:
-    type: faqfield_default
     weight: 0
-    region: content
     settings:
       answer_widget: text_format
       question_title: Question
@@ -28,6 +26,8 @@ content:
         question_rows: 0
         answer_rows: 3
     third_party_settings: {  }
+    type: faqfield_default
+    region: content
 hidden:
   created: true
   status: true
diff --git a/config/sync/core.entity_form_display.paragraph.file.default.yml b/config/sync/core.entity_form_display.paragraph.file.default.yml
index 55bca17..01ea205 100644
--- a/config/sync/core.entity_form_display.paragraph.file.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.file.default.yml
@@ -15,12 +15,12 @@ bundle: file
 mode: default
 content:
   field_file:
-    type: file_generic
     weight: 0
-    region: content
     settings:
       progress_indicator: throbber
     third_party_settings: {  }
+    type: file_generic
+    region: content
 hidden:
   created: true
   status: true
diff --git a/config/sync/core.entity_form_display.paragraph.image.default.yml b/config/sync/core.entity_form_display.paragraph.image.default.yml
index 54de93d..067a5be 100644
--- a/config/sync/core.entity_form_display.paragraph.image.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.image.default.yml
@@ -4,10 +4,10 @@ status: true
 dependencies:
   config:
     - field.field.paragraph.image.field_image
-    - field.field.paragraph.image.field_media_image
+    - image.style.thumbnail
     - paragraphs.paragraphs_type.image
   module:
-    - media_library_media_modify
+    - image
 _core:
   default_config_hash: ou3xPG2m27zKOuCQrqnDiacrj7Bel9oz6I80NH4QHkY
 id: paragraph.image.default
@@ -15,20 +15,15 @@ targetEntityType: paragraph
 bundle: image
 mode: default
 content:
-  field_media_image:
-    type: media_library_media_modify_widget
+  field_image:
     weight: 0
-    region: content
     settings:
-      media_types: {  }
-      form_mode: default
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
+      progress_indicator: throbber
+      preview_image_style: thumbnail
     third_party_settings: {  }
+    type: image_image
+    region: content
 hidden:
   created: true
-  field_image: true
   status: true
   uid: true
diff --git a/config/sync/core.entity_form_display.paragraph.slide.default.yml b/config/sync/core.entity_form_display.paragraph.slide.default.yml
index 23cd3bc..1f4d9af 100644
--- a/config/sync/core.entity_form_display.paragraph.slide.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.slide.default.yml
@@ -5,12 +5,12 @@ dependencies:
   config:
     - field.field.paragraph.slide.field_image
     - field.field.paragraph.slide.field_link
-    - field.field.paragraph.slide.field_media_image
     - field.field.paragraph.slide.field_text
+    - image.style.thumbnail
     - paragraphs.paragraphs_type.slide
   module:
+    - image
     - link
-    - media_library_media_modify
     - text
 _core:
   default_config_hash: 9DmaPeGJlntQ_TPQkheefttDgdO2Avh10rSJih-ADVM
@@ -19,36 +19,31 @@ targetEntityType: paragraph
 bundle: slide
 mode: default
 content:
-  field_link:
-    type: link_default
-    weight: 1
+  field_image:
+    weight: 5
+    settings:
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+    third_party_settings: {  }
+    type: image_image
     region: content
+  field_link:
+    weight: 4
     settings:
       placeholder_url: ''
       placeholder_title: ''
     third_party_settings: {  }
-  field_media_image:
-    type: media_library_media_modify_widget
-    weight: 0
+    type: link_default
     region: content
-    settings:
-      media_types: {  }
-      form_mode: default
-      check_selected: false
-      replace_checkbox_by_order_indicator: false
-      multi_edit_on_create: false
-      no_edit_on_create: false
-    third_party_settings: {  }
   field_text:
-    type: text_textarea
-    weight: 2
-    region: content
+    weight: 6
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
+    type: text_textarea
+    region: content
 hidden:
   created: true
-  field_image: true
   status: true
   uid: true
diff --git a/config/sync/core.entity_form_display.paragraph.text.default.yml b/config/sync/core.entity_form_display.paragraph.text.default.yml
index bd97a41..0906881 100644
--- a/config/sync/core.entity_form_display.paragraph.text.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.text.default.yml
@@ -15,13 +15,13 @@ bundle: text
 mode: default
 content:
   field_text:
-    type: text_textarea
     weight: 0
-    region: content
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
+    type: text_textarea
+    region: content
 hidden:
   created: true
   status: true
diff --git a/config/sync/core.entity_form_display.paragraph.update.default.yml b/config/sync/core.entity_form_display.paragraph.update.default.yml
index 437a3d4..581dd15 100644
--- a/config/sync/core.entity_form_display.paragraph.update.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.update.default.yml
@@ -17,19 +17,19 @@ bundle: update
 mode: default
 content:
   field_text:
-    type: text_textarea
     weight: 1
-    region: content
     settings:
       rows: 5
       placeholder: ''
     third_party_settings: {  }
-  field_update_date:
-    type: datetime_default
-    weight: 0
+    type: text_textarea
     region: content
+  field_update_date:
+    weight: 0
     settings: {  }
     third_party_settings: {  }
+    type: datetime_default
+    region: content
 hidden:
   created: true
   status: true
diff --git a/config/sync/core.entity_form_display.paragraph.video.default.yml b/config/sync/core.entity_form_display.paragraph.video.default.yml
index 500203a..88267b1 100644
--- a/config/sync/core.entity_form_display.paragraph.video.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.video.default.yml
@@ -15,11 +15,11 @@ bundle: video
 mode: default
 content:
   field_video_embed:
-    type: video_embed_field_textfield
     weight: 0
-    region: content
     settings: {  }
     third_party_settings: {  }
+    type: video_embed_field_textfield
+    region: content
 hidden:
   created: true
   status: true
diff --git a/config/sync/core.entity_form_display.user.user.default.yml b/config/sync/core.entity_form_display.user.user.default.yml
index 2b865b3..32d4189 100644
--- a/config/sync/core.entity_form_display.user.user.default.yml
+++ b/config/sync/core.entity_form_display.user.user.default.yml
@@ -7,7 +7,6 @@ dependencies:
     - image.style.thumbnail
   module:
     - image
-    - path
     - user
 id: user.user.default
 targetEntityType: user
@@ -16,37 +15,27 @@ mode: default
 content:
   account:
     weight: -10
-    region: content
     settings: {  }
     third_party_settings: {  }
-  comment_notify_settings:
-    weight: 4
     region: content
-    settings: {  }
-    third_party_settings: {  }
   contact:
     weight: 5
-    region: content
     settings: {  }
     third_party_settings: {  }
-  field_user_picture:
-    type: image_image
-    weight: 7
     region: content
+  field_user_picture:
+    weight: 7
     settings:
       progress_indicator: throbber
       preview_image_style: thumbnail
     third_party_settings: {  }
-  google_analytics:
-    weight: 3
+    type: image_image
     region: content
-    settings: {  }
-    third_party_settings: {  }
   language:
     weight: 0
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
   path:
     type: path
     weight: 30
@@ -55,7 +44,7 @@ content:
     third_party_settings: {  }
   timezone:
     weight: 6
-    region: content
     settings: {  }
     third_party_settings: {  }
+    region: content
 hidden: {  }
diff --git a/config/sync/core.entity_form_mode.media.main.yml b/config/sync/core.entity_form_mode.media.main.yml
deleted file mode 100644
index 0e96136..0000000
--- a/config/sync/core.entity_form_mode.media.main.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 9b01c3f0-1148-4f28-bf6f-e97b2524a075
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: ENk37W6NnKGWq84DwzIkfEhYQv_afN8gHHugUQi7jjs
-id: media.main
-label: Main
-description: ''
-targetEntityType: media
-cache: true
diff --git a/config/sync/core.entity_form_mode.media.media_library.yml b/config/sync/core.entity_form_mode.media.media_library.yml
deleted file mode 100644
index ec6aa9a..0000000
--- a/config/sync/core.entity_form_mode.media.media_library.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: c74c0a3f-ac98-415a-88ec-2ca916862690
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-  enforced:
-    module:
-      - media_library
-_core:
-  default_config_hash: 04_dAqpWYP1WmsXZ7IXJ7-yarCvNddD10EUkBDtIFy4
-id: media.media_library
-label: 'Media library'
-description: ''
-targetEntityType: media
-cache: true
diff --git a/config/sync/core.entity_form_mode.user.register.yml b/config/sync/core.entity_form_mode.user.register.yml
index 1c859fc..5b97643 100644
--- a/config/sync/core.entity_form_mode.user.register.yml
+++ b/config/sync/core.entity_form_mode.user.register.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
 id: user.register
 label: Register
-description: ''
 targetEntityType: user
 cache: true
diff --git a/config/sync/core.entity_view_display.block_content.basic.default.yml b/config/sync/core.entity_view_display.block_content.basic.default.yml
new file mode 100644
index 0000000..c54dc7e
--- /dev/null
+++ b/config/sync/core.entity_view_display.block_content.basic.default.yml
@@ -0,0 +1,25 @@
+uuid: f9567bb7-42ab-4324-a38b-6f52148ba18b
+langcode: en
+status: true
+dependencies:
+  config:
+    - block_content.type.basic
+    - field.field.block_content.basic.body
+  module:
+    - text
+_core:
+  default_config_hash: ZmrLwX4svxxV3Aken0pkjS60giyJMVW-lWYmgtMLTjI
+id: block_content.basic.default
+targetEntityType: block_content
+bundle: basic
+mode: default
+content:
+  body:
+    label: hidden
+    type: text_default
+    weight: 0
+    settings: {  }
+    third_party_settings: {  }
+    region: content
+hidden:
+  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.block_content.slide.columnar.yml b/config/sync/core.entity_view_display.block_content.slide.columnar.yml
index 22f199a..86e293f 100644
--- a/config/sync/core.entity_view_display.block_content.slide.columnar.yml
+++ b/config/sync/core.entity_view_display.block_content.slide.columnar.yml
@@ -18,14 +18,14 @@ mode: columnar
 content:
   field_slide:
     type: entity_reference_revisions_entity_view
-    label: hidden
+    weight: 0
+    label: visually_hidden
     settings:
       view_mode: columnar
       link: ''
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 0
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.block_content.slide.default.yml b/config/sync/core.entity_view_display.block_content.slide.default.yml
index ed342ac..ba3d1b2 100644
--- a/config/sync/core.entity_view_display.block_content.slide.default.yml
+++ b/config/sync/core.entity_view_display.block_content.slide.default.yml
@@ -16,12 +16,12 @@ mode: default
 content:
   field_slide:
     type: entity_reference_revisions_entity_view
-    label: hidden
+    weight: 0
+    label: visually_hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 0
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.comment.comment.default.yml b/config/sync/core.entity_view_display.comment.comment.default.yml
index 94bf3b1..2235a99 100644
--- a/config/sync/core.entity_view_display.comment.comment.default.yml
+++ b/config/sync/core.entity_view_display.comment.comment.default.yml
@@ -15,11 +15,11 @@ bundle: comment
 mode: default
 content:
   comment_body:
-    type: text_default
     label: hidden
+    type: text_default
+    weight: 0
     settings: {  }
     third_party_settings: {  }
-    weight: 0
     region: content
   links:
     weight: 100
diff --git a/config/sync/core.entity_view_display.media.audio.default.yml b/config/sync/core.entity_view_display.media.audio.default.yml
deleted file mode 100644
index 3b9766d..0000000
--- a/config/sync/core.entity_view_display.media.audio.default.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: f125a31b-857e-4866-8271-e392b30a6993
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.audio.field_media_audio_file
-    - media.type.audio
-  module:
-    - file
-_core:
-  default_config_hash: rfAE0z_NC8oZIIWcz_BI71xUCTEXycqq7siaMS2E2M0
-id: media.audio.default
-targetEntityType: media
-bundle: audio
-mode: default
-content:
-  field_media_audio_file:
-    type: file_audio
-    label: hidden
-    settings:
-      controls: true
-      autoplay: false
-      loop: false
-      multiple_file_display_type: tags
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.audio.media_library.yml b/config/sync/core.entity_view_display.media.audio.media_library.yml
deleted file mode 100644
index 36db04b..0000000
--- a/config/sync/core.entity_view_display.media.audio.media_library.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: 03e35b19-1f47-4c01-83c5-01f10175900d
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.media_library
-    - field.field.media.audio.field_media_audio_file
-    - image.style.thumbnail
-    - media.type.audio
-  module:
-    - image
-_core:
-  default_config_hash: 7DNpi1Sl1MWQhNyyLfTpd-yIhueyFZAcL2Snbr2sTUI
-id: media.audio.media_library
-targetEntityType: media
-bundle: audio
-mode: media_library
-content:
-  thumbnail:
-    type: image
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: thumbnail
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  field_media_audio_file: true
-  name: true
-  search_api_excerpt: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.document.default.yml b/config/sync/core.entity_view_display.media.document.default.yml
deleted file mode 100644
index d0b7416..0000000
--- a/config/sync/core.entity_view_display.media.document.default.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-uuid: 17c49517-f75c-4b61-ac18-7acc8ec5bc37
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.document.field_media_document
-    - media.type.document
-  module:
-    - file
-_core:
-  default_config_hash: WbV90lV3EUgETbXm-h7gUppdt-ECLhXrHI5_l92Md-8
-id: media.document.default
-targetEntityType: media
-bundle: document
-mode: default
-content:
-  field_media_document:
-    type: file_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
-    weight: 1
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.document.media_library.yml b/config/sync/core.entity_view_display.media.document.media_library.yml
deleted file mode 100644
index d78ef64..0000000
--- a/config/sync/core.entity_view_display.media.document.media_library.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: 050ae7fc-6b6a-4e5f-80a3-a4cc7085320c
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.media_library
-    - field.field.media.document.field_media_document
-    - image.style.thumbnail
-    - media.type.document
-  module:
-    - image
-_core:
-  default_config_hash: QElKo67rYqcbExc-UzpEXj_f14eAMPr57XAF5Pbt_iY
-id: media.document.media_library
-targetEntityType: media
-bundle: document
-mode: media_library
-content:
-  thumbnail:
-    type: image
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: thumbnail
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  field_media_document: true
-  name: true
-  search_api_excerpt: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.image.default.yml b/config/sync/core.entity_view_display.media.image.default.yml
deleted file mode 100644
index b2af442..0000000
--- a/config/sync/core.entity_view_display.media.image.default.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-uuid: c3944acb-b57d-4e11-b295-e1ea0c791af4
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.image.field_media_image
-    - media.type.image
-    - responsive_image.styles.drutopia_wide
-  module:
-    - responsive_image
-_core:
-  default_config_hash: O6cONwdUd3G9aEefXjJt9-jzCgj-UeIbUVr70hc8L7Y
-id: media.image.default
-targetEntityType: media
-bundle: image
-mode: default
-content:
-  field_media_image:
-    type: responsive_image
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_wide
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 1
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.image.media_library.yml b/config/sync/core.entity_view_display.media.image.media_library.yml
deleted file mode 100644
index acccb91..0000000
--- a/config/sync/core.entity_view_display.media.image.media_library.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: 77eda360-567c-4e23-bd13-9b0395149458
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.media_library
-    - field.field.media.image.field_media_image
-    - image.style.medium
-    - media.type.image
-  module:
-    - image
-_core:
-  default_config_hash: YMZYbnh33BQJRLbrQ3jWBetF1pUdG9gOA7dGUBoiDeg
-id: media.image.media_library
-targetEntityType: media
-bundle: image
-mode: media_library
-content:
-  thumbnail:
-    type: image
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: medium
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  field_media_image: true
-  name: true
-  search_api_excerpt: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.image.narrow.yml b/config/sync/core.entity_view_display.media.image.narrow.yml
deleted file mode 100644
index 2cf4a2e..0000000
--- a/config/sync/core.entity_view_display.media.image.narrow.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: 0f37acb9-543f-45c4-bd31-c0d8e96d3a19
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.narrow
-    - field.field.media.image.field_media_image
-    - media.type.image
-    - responsive_image.styles.narrow
-  module:
-    - responsive_image
-_core:
-  default_config_hash: jqdouSPdlMuhGbF2hOxwtaBMZy190ZRvQOIYFGk-P9I
-id: media.image.narrow
-targetEntityType: media
-bundle: image
-mode: narrow
-content:
-  field_media_image:
-    type: responsive_image
-    label: hidden
-    settings:
-      responsive_image_style: narrow
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 1
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.image.wide.yml b/config/sync/core.entity_view_display.media.image.wide.yml
deleted file mode 100644
index 4e02680..0000000
--- a/config/sync/core.entity_view_display.media.image.wide.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: cc5d9b20-1205-4853-8fbc-bbcfd4675ac3
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.wide
-    - field.field.media.image.field_media_image
-    - media.type.image
-    - responsive_image.styles.drutopia_wide
-  module:
-    - responsive_image
-_core:
-  default_config_hash: L-tvHNhWMxmlrY5QcpYWXhODjMwypFqXoEXNSroi5j8
-id: media.image.wide
-targetEntityType: media
-bundle: image
-mode: wide
-content:
-  field_media_image:
-    type: responsive_image
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_wide
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 1
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.remote_video.default.yml b/config/sync/core.entity_view_display.media.remote_video.default.yml
deleted file mode 100644
index 428991d..0000000
--- a/config/sync/core.entity_view_display.media.remote_video.default.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 714d0b3f-6a27-4736-9d0b-1d65ba53200a
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.remote_video.field_media_oembed_video
-    - media.type.remote_video
-  module:
-    - media
-_core:
-  default_config_hash: z8VkL4rSXlcRRvvZGTQYRJ8CVzOKwsK4z-2LusSkO5Q
-id: media.remote_video.default
-targetEntityType: media
-bundle: remote_video
-mode: default
-content:
-  field_media_oembed_video:
-    type: oembed
-    label: hidden
-    settings:
-      max_width: 0
-      max_height: 0
-      loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.remote_video.media_library.yml b/config/sync/core.entity_view_display.media.remote_video.media_library.yml
deleted file mode 100644
index 652d8d4..0000000
--- a/config/sync/core.entity_view_display.media.remote_video.media_library.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: 96804e06-b928-42f8-868d-51420549faac
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.media_library
-    - field.field.media.remote_video.field_media_oembed_video
-    - image.style.medium
-    - media.type.remote_video
-  module:
-    - image
-_core:
-  default_config_hash: V6aNSetHlDgDfn65BhxM6lScmnrnL0aBxkTU9va5GgU
-id: media.remote_video.media_library
-targetEntityType: media
-bundle: remote_video
-mode: media_library
-content:
-  thumbnail:
-    type: image
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: medium
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  field_media_oembed_video: true
-  name: true
-  search_api_excerpt: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.video.default.yml b/config/sync/core.entity_view_display.media.video.default.yml
deleted file mode 100644
index ae5d7fa..0000000
--- a/config/sync/core.entity_view_display.media.video.default.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: ee8ab99b-4321-45e0-b3a1-64dd12d47cca
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.media.video.field_media_video_file
-    - media.type.video
-  module:
-    - file
-_core:
-  default_config_hash: j4MJgDdEXztLGlE1HOfShdrBXLbbJRWHxayzF0V9R4A
-id: media.video.default
-targetEntityType: media
-bundle: video
-mode: default
-content:
-  field_media_video_file:
-    type: file_video
-    label: hidden
-    settings:
-      controls: true
-      autoplay: false
-      loop: false
-      multiple_file_display_type: tags
-      muted: false
-      width: 640
-      height: 480
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  name: true
-  search_api_excerpt: true
-  thumbnail: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.media.video.media_library.yml b/config/sync/core.entity_view_display.media.video.media_library.yml
deleted file mode 100644
index 3d2df8d..0000000
--- a/config/sync/core.entity_view_display.media.video.media_library.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: a50ffb63-ae68-4961-8225-eaa94d0a531f
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.media_library
-    - field.field.media.video.field_media_video_file
-    - image.style.thumbnail
-    - media.type.video
-  module:
-    - image
-_core:
-  default_config_hash: ra9pCZSNfC2E0v0rxibirEcUAgp79s6oke7osDjpst0
-id: media.video.media_library
-targetEntityType: media
-bundle: video
-mode: media_library
-content:
-  thumbnail:
-    type: image
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: thumbnail
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  created: true
-  field_media_video_file: true
-  name: true
-  search_api_excerpt: true
-  uid: true
diff --git a/config/sync/core.entity_view_display.node.article.box.yml b/config/sync/core.entity_view_display.node.article.box.yml
index 791e6f1..9107bb7 100644
--- a/config/sync/core.entity_view_display.node.article.box.yml
+++ b/config/sync/core.entity_view_display.node.article.box.yml
@@ -8,17 +8,12 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
     - node.type.article
   module:
     - ds
@@ -31,21 +26,18 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
         - node_title
         - node_post_date
-        - geo_citation
     fields:
       node_post_date:
         plugin_id: node_post_date
@@ -67,23 +59,16 @@ id: node.article.box
 targetEntityType: node
 bundle: article
 mode: box
-content:
-  geo_citation:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 90
-    region: ds_content
+content: {  }
 hidden:
   body: true
   comment: true
   field_article_type: true
   field_authors: true
-  field_biography: true
   field_body_paragraph: true
   field_economic_sectors: true
   field_image: true
   field_institutions_structures: true
-  field_media_image: true
   field_meta_tags: true
   field_movements_struggles: true
   field_practices_tools_strategies: true
diff --git a/config/sync/core.entity_view_display.node.article.card.yml b/config/sync/core.entity_view_display.node.article.card.yml
index 33858d5..35e8e37 100644
--- a/config/sync/core.entity_view_display.node.article.card.yml
+++ b/config/sync/core.entity_view_display.node.article.card.yml
@@ -8,24 +8,19 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
     - node.type.article
-    - responsive_image.styles.card_extra_wide
+    - responsive_image.styles.narrow
   module:
-    - datetime
     - ds
     - field_group
-    - media_responsive_thumbnail
+    - responsive_image
+    - text
     - user
 third_party_settings:
   ds:
@@ -35,28 +30,31 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class:
-            is-article: is-article
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - group_card_content
-        - field_publication_date
+        - node_post_date
         - node_title
-        - field_authors
+        - field_summary
+        - field_topics
     fields:
+      node_post_date:
+        plugin_id: node_post_date
+        weight: 3
+        label: hidden
+        formatter: ds_post_date_month_day_year
       node_title:
         plugin_id: node_title
-        weight: 5
+        weight: 4
         label: hidden
         formatter: default
         settings:
@@ -66,41 +64,24 @@ third_party_settings:
   field_group:
     group_card_content:
       children:
-        - field_publication_date
+        - node_post_date
         - node_title
-        - field_authors
-      label: 'Card content'
+        - field_summary
+        - field_topics
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
-    group_card_content_bottom:
-      children:
-        - field_topics
-      label: 'Card content bottom'
-      parent_name: ''
+      label: 'Card content'
       region: hidden
-      weight: 24
-      format_type: html_element
-      format_settings:
-        classes: ''
-        id: ''
-        element: div
-        show_label: false
-        label_element: h3
-        label_element_classes: ''
-        attributes: ''
-        effect: none
-        speed: fast
 _core:
   default_config_hash: p6e_07jFYgDYzfPzft22FzzqyvPqhEUyM-XdQCUljIY
 id: node.article.card
@@ -108,47 +89,49 @@ targetEntityType: node
 bundle: article
 mode: card
 content:
-  field_authors:
-    type: entity_reference_label
-    label: hidden
-    settings:
-      link: false
-    third_party_settings: {  }
-    weight: 6
-    region: ds_content
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: card_extra_wide
-      image_link: content
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
     region: ds_content
-  field_publication_date:
-    type: datetime_default
-    label: hidden
+    label: visually_hidden
     settings:
-      timezone_override: ''
-      format_type: month_day_year
+      responsive_image_style: narrow
+      image_link: content
     third_party_settings: {  }
-    weight: 4
+  field_summary:
+    type: text_trimmed
+    weight: 5
     region: ds_content
+    label: visually_hidden
+    settings:
+      trim_length: 180
+    third_party_settings: {  }
+  field_topics:
+    type: entity_reference_label
+    weight: 6
+    region: ds_content
+    label: visually_hidden
+    settings:
+      link: true
+    third_party_settings:
+      ds:
+        ds_limit: ''
 hidden:
   body: true
   comment: true
   field_article_type: true
-  field_biography: true
+  field_authors: true
   field_body_paragraph: true
-  field_image: true
+  field_economic_sectors: true
+  field_institutions_structures: true
   field_meta_tags: true
+  field_movements_struggles: true
+  field_practices_tools_strategies: true
+  field_publication_date: true
+  field_regions: true
   field_subtitle: true
-  field_summary: true
   field_tags: true
-  field_topics: true
   field_upload: true
-  geo_citation: true
+  field_visions_models: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.article.default.yml b/config/sync/core.entity_view_display.node.article.default.yml
index 44e2626..34d5b53 100644
--- a/config/sync/core.entity_view_display.node.article.default.yml
+++ b/config/sync/core.entity_view_display.node.article.default.yml
@@ -7,22 +7,24 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
+    - field.field.node.article.field_economic_sectors
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
+    - field.field.node.article.field_institutions_structures
     - field.field.node.article.field_meta_tags
+    - field.field.node.article.field_movements_struggles
+    - field.field.node.article.field_practices_tools_strategies
     - field.field.node.article.field_publication_date
+    - field.field.node.article.field_regions
     - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
     - field.field.node.article.field_upload
+    - field.field.node.article.field_visions_models
     - node.type.article
   module:
     - datetime
-    - ds
-    - entity_reference_override
     - file
     - user
 _core:
@@ -32,47 +34,78 @@ targetEntityType: node
 bundle: article
 mode: default
 content:
-  field_biography:
-    type: entity_reference_override_entity
-    label: visually_hidden
-    settings:
-      view_mode: default
-      link: false
-      override_action: field_summary
-    third_party_settings:
-      ds:
-        ds_limit: ''
-    weight: 91
-    region: content
-  field_publication_date:
-    type: datetime_default
+  field_economic_sectors:
+    weight: 2
     label: above
     settings:
-      timezone_override: ''
-      format_type: medium
+      link: true
     third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_institutions_structures:
+    weight: 3
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_movements_struggles:
+    weight: 4
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_practices_tools_strategies:
+    weight: 5
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_publication_date:
     weight: 8
+    label: above
+    settings:
+      format_type: medium
+      timezone_override: ''
+    third_party_settings: {  }
+    type: datetime_default
+    region: content
+  field_regions:
+    weight: 7
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
     region: content
   field_subtitle:
-    type: string
+    weight: 9
     label: above
     settings:
       link_to_entity: false
     third_party_settings: {  }
-    weight: 9
+    type: string
     region: content
   field_upload:
-    type: file_default
+    weight: 1
     label: above
     settings:
       use_description_as_link_text: true
     third_party_settings: {  }
-    weight: 1
+    type: file_default
     region: content
-  geo_citation:
-    settings: {  }
+  field_visions_models:
+    weight: 6
+    label: above
+    settings:
+      link: true
     third_party_settings: {  }
-    weight: 90
+    type: entity_reference_label
     region: content
 hidden:
   body: true
@@ -81,7 +114,6 @@ hidden:
   field_authors: true
   field_body_paragraph: true
   field_image: true
-  field_media_image: true
   field_meta_tags: true
   field_summary: true
   field_tags: true
diff --git a/config/sync/core.entity_view_display.node.article.full.yml b/config/sync/core.entity_view_display.node.article.full.yml
index e1187b7..cf54162 100644
--- a/config/sync/core.entity_view_display.node.article.full.yml
+++ b/config/sync/core.entity_view_display.node.article.full.yml
@@ -9,25 +9,30 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
+    - field.field.node.article.field_economic_sectors
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
+    - field.field.node.article.field_institutions_structures
     - field.field.node.article.field_meta_tags
+    - field.field.node.article.field_movements_struggles
+    - field.field.node.article.field_practices_tools_strategies
     - field.field.node.article.field_publication_date
+    - field.field.node.article.field_regions
     - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
     - field.field.node.article.field_upload
+    - field.field.node.article.field_visions_models
     - node.type.article
-    - responsive_image.styles.drutopia_wide
+    - responsive_image.styles.wide
   module:
     - comment
+    - datetime
     - ds
-    - entity_reference_override
     - entity_reference_revisions
-    - media_responsive_thumbnail
+    - responsive_image
+    - taxonomy
     - user
 third_party_settings:
   ds:
@@ -37,12 +42,6 @@ third_party_settings:
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          header: {  }
-          left: {  }
-          right: {  }
-          footer: {  }
         wrappers:
           header: div
           left: div
@@ -52,29 +51,29 @@ third_party_settings:
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       header:
-        - field_media_image
+        - field_image
         - field_subtitle
       left:
-        - field_article_type
-        - node_post_date
+        - field_publication_date
         - field_authors
       right:
         - field_body_paragraph
-        - field_biography
+        - field_article_type
         - field_topics
         - field_tags
-        - geo_citation
         - comment
         - links
-    fields:
-      node_post_date:
-        plugin_id: node_post_date
-        weight: 3
-        label: hidden
-        formatter: ds_post_date_month_day_year
+      footer:
+        - field_practices_tools_strategies
+        - field_movements_struggles
+        - field_institutions_structures
+        - field_economic_sectors
+        - field_regions
+        - field_visions_models
 _core:
   default_config_hash: 88P_fOnhb5d6oRPKtL8-5NspKV-UrjBqgmc1Ixtg9is
 id: node.article.full
@@ -83,105 +82,141 @@ bundle: article
 mode: full
 content:
   comment:
-    type: comment_default
     label: above
+    type: comment_default
+    weight: 8
     settings:
-      view_mode: default
       pager_id: 0
+      view_mode: default
     third_party_settings: {  }
-    weight: 10
     region: right
   field_article_type:
-    type: entity_reference_label
-    label: hidden
+    weight: 5
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 2
-    region: left
+    type: entity_reference_label
+    region: right
   field_authors:
     type: entity_reference_label
-    label: hidden
+    weight: 3
+    region: left
+    label: visually_hidden
     settings:
       link: true
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 4
-    region: left
-  field_biography:
-    type: entity_reference_override_entity
-    label: hidden
-    settings:
-      view_mode: teaser
-      link: false
-      override_action: field_summary
-    third_party_settings:
-      ds:
-        ds_limit: ''
-    weight: 6
-    region: right
   field_body_paragraph:
-    type: entity_reference_revisions_entity_view
-    label: hidden
+    weight: 4
+    label: visually_hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 5
+    type: entity_reference_revisions_entity_view
     region: right
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
+  field_economic_sectors:
+    type: entity_reference_label
+    weight: 13
+    region: footer
+    label: above
     settings:
-      responsive_image_style: drutopia_wide
+      link: true
+    third_party_settings: {  }
+  field_image:
+    type: responsive_image
+    weight: 0
+    settings:
+      responsive_image_style: wide
       image_link: ''
-      image_loading:
-        attribute: lazy
     third_party_settings:
       ds:
-        ds_limit: ''
-    weight: 0
+        ds_limit: '1'
+    label: hidden
     region: header
+  field_institutions_structures:
+    type: entity_reference_label
+    weight: 12
+    region: footer
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+  field_movements_struggles:
+    type: entity_reference_entity_view
+    weight: 11
+    region: footer
+    label: above
+    settings:
+      view_mode: default
+      link: false
+    third_party_settings: {  }
+  field_practices_tools_strategies:
+    type: entity_reference_rss_category
+    weight: 10
+    region: footer
+    label: above
+    settings: {  }
+    third_party_settings: {  }
+  field_publication_date:
+    type: datetime_default
+    weight: 2
+    region: left
+    label: visually_hidden
+    settings:
+      timezone_override: ''
+      format_type: medium
+    third_party_settings: {  }
+  field_regions:
+    type: entity_reference_label
+    weight: 14
+    region: footer
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
   field_subtitle:
     type: string
+    weight: 1
+    region: header
     label: hidden
     settings:
       link_to_entity: false
     third_party_settings: {  }
-    weight: 1
-    region: header
   field_tags:
     type: entity_reference_label
+    weight: 7
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 8
     region: right
   field_topics:
     type: entity_reference_label
-    label: hidden
+    weight: 6
+    region: right
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 7
-    region: right
-  geo_citation:
-    settings: {  }
+  field_visions_models:
+    type: entity_reference_label
+    weight: 15
+    region: footer
+    label: above
+    settings:
+      link: true
     third_party_settings: {  }
+  links:
     weight: 9
     region: right
-  links:
     settings: {  }
     third_party_settings: {  }
-    weight: 11
-    region: right
 hidden:
   body: true
-  field_image: true
   field_meta_tags: true
-  field_publication_date: true
   field_summary: true
   field_upload: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.article.media.yml b/config/sync/core.entity_view_display.node.article.media.yml
index 7f4d2fb..f4735fc 100644
--- a/config/sync/core.entity_view_display.node.article.media.yml
+++ b/config/sync/core.entity_view_display.node.article.media.yml
@@ -8,23 +8,18 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
-    - image.style.medium
+    - image.style.square_thumbnail
     - node.type.article
   module:
     - ds
     - field_group
-    - media
+    - image
     - user
 third_party_settings:
   ds:
@@ -34,24 +29,21 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
         - group_media_left
-        - field_media_image
+        - field_image
         - group_media_content
         - node_title
         - field_topics
-        - geo_citation
     fields:
       node_title:
         plugin_id: node_title
@@ -67,37 +59,37 @@ third_party_settings:
       children:
         - node_title
         - field_topics
-      label: 'Media content'
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+      label: 'Media content'
+      region: hidden
     group_media_left:
       children:
-        - field_media_image
-      label: 'Media left'
+        - field_image
       parent_name: ''
-      region: ds_content
       weight: 0
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+      label: 'Media left'
+      region: hidden
 _core:
   default_config_hash: pHHfXZyyi7wI5eBxiS_wqW988jhenUljfftdaOuSuGk
 id: node.article.media
@@ -105,39 +97,30 @@ targetEntityType: node
 bundle: article
 mode: media
 content:
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: content
-      image_style: medium
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: image
     weight: 0
     region: ds_content
+    label: visually_hidden
+    settings:
+      image_style: square_thumbnail
+      image_link: content
+    third_party_settings: {  }
   field_topics:
     type: entity_reference_label
-    label: hidden
+    weight: 3
+    region: ds_content
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 3
-    region: ds_content
-  geo_citation:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 90
-    region: ds_content
 hidden:
   body: true
   comment: true
   field_article_type: true
   field_authors: true
-  field_biography: true
   field_body_paragraph: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
diff --git a/config/sync/core.entity_view_display.node.article.rss.yml b/config/sync/core.entity_view_display.node.article.rss.yml
index cc2a5d3..99b6190 100644
--- a/config/sync/core.entity_view_display.node.article.rss.yml
+++ b/config/sync/core.entity_view_display.node.article.rss.yml
@@ -8,22 +8,17 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
-    - image.style.drutopia_wide_large
+    - image.style.small_square
     - node.type.article
   module:
     - ds
-    - media
+    - image
     - taxonomy
     - text
     - user
@@ -35,22 +30,31 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        label: ''
-        classes:
-          layout_class: {  }
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
+        - field_image
+        - node_title
         - field_summary
-        - field_media_image
         - field_topics
         - links
+    fields:
+      node_title:
+        plugin_id: node_title
+        weight: 1
+        label: hidden
+        formatter: default
+        settings:
+          link: true
+          wrapper: h2
+          class: ''
 _core:
   default_config_hash: qkZsE06xoZ42p5C0rjPL_VqIm82SI6KuwaQJwHEycTg
 id: node.article.rss
@@ -58,45 +62,41 @@ targetEntityType: node
 bundle: article
 mode: rss
 content:
-  field_media_image:
-    type: media_thumbnail
+  field_image:
+    type: image
+    weight: 0
     label: hidden
     settings:
+      image_style: small_square
       image_link: ''
-      image_style: drutopia_wide_large
-      image_loading:
-        attribute: eager
     third_party_settings: {  }
-    weight: 1
     region: ds_content
   field_summary:
     type: text_default
+    weight: 2
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 0
     region: ds_content
   field_topics:
     type: entity_reference_rss_category
+    weight: 3
+    region: ds_content
     label: inline
     settings: {  }
     third_party_settings: {  }
-    weight: 2
-    region: ds_content
   links:
+    weight: 4
+    region: ds_content
     settings: {  }
     third_party_settings: {  }
-    weight: 3
-    region: ds_content
 hidden:
   body: true
   comment: true
   field_article_type: true
   field_authors: true
-  field_biography: true
   field_body_paragraph: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
@@ -107,6 +107,4 @@ hidden:
   field_tags: true
   field_upload: true
   field_visions_models: true
-  footnotes_group: true
-  geo_citation: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.article.search_index.yml b/config/sync/core.entity_view_display.node.article.search_index.yml
index 997faba..76d13cb 100644
--- a/config/sync/core.entity_view_display.node.article.search_index.yml
+++ b/config/sync/core.entity_view_display.node.article.search_index.yml
@@ -8,23 +8,17 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
     - node.type.article
   module:
     - ds
     - entity_reference_revisions
-    - media
-    - text
+    - responsive_image
     - user
 third_party_settings:
   ds:
@@ -34,26 +28,22 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_summary
+        - field_image
         - field_authors
-        - field_media_image
         - node_post_date
         - field_body_paragraph
         - field_topics
         - field_tags
-        - geo_citation
     fields:
       node_post_date:
         plugin_id: node_post_date
@@ -69,67 +59,51 @@ mode: search_index
 content:
   field_authors:
     type: entity_reference_label
+    weight: 1
+    region: ds_content
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 1
-    region: ds_content
   field_body_paragraph:
     type: entity_reference_revisions_entity_view
+    weight: 3
+    region: ds_content
     label: hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 3
-    region: ds_content
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 1
-    region: ds_content
-  field_summary:
-    type: text_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
     region: ds_content
+    label: hidden
+    settings:
+      responsive_image_style: ''
+      image_link: ''
+    third_party_settings: {  }
   field_tags:
     type: entity_reference_label
-    label: hidden
-    settings:
-      link: true
-    third_party_settings: {  }
     weight: 5
     region: ds_content
-  field_topics:
-    type: entity_reference_label
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
+  field_topics:
+    type: entity_reference_label
     weight: 4
     region: ds_content
-  geo_citation:
-    settings: {  }
+    label: hidden
+    settings:
+      link: true
     third_party_settings: {  }
-    weight: 90
-    region: ds_content
 hidden:
   body: true
   comment: true
   field_article_type: true
-  field_biography: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
@@ -137,6 +111,7 @@ hidden:
   field_publication_date: true
   field_regions: true
   field_subtitle: true
+  field_summary: true
   field_upload: true
   field_visions_models: true
   links: true
diff --git a/config/sync/core.entity_view_display.node.article.simple_card.yml b/config/sync/core.entity_view_display.node.article.simple_card.yml
index acf7078..d360c76 100644
--- a/config/sync/core.entity_view_display.node.article.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.article.simple_card.yml
@@ -8,23 +8,18 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
     - node.type.article
-    - responsive_image.styles.drutopia_card
+    - responsive_image.styles.narrow
   module:
     - ds
     - field_group
-    - media_responsive_thumbnail
+    - responsive_image
     - user
 third_party_settings:
   ds:
@@ -34,19 +29,17 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - 'bundle_field:node'
         - group_card_content
         - node_title
@@ -71,20 +64,20 @@ third_party_settings:
       children:
         - 'bundle_field:node'
         - node_title
-      label: 'Card content'
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+      label: 'Card content'
+      region: hidden
 _core:
   default_config_hash: 9VKribt4b49hO1yfd4qsunZ-1wi3LabVys-CdFmVrQ4
 id: node.article.simple_card
@@ -92,32 +85,33 @@ targetEntityType: node
 bundle: article
 mode: simple_card
 content:
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_card
-      image_link: content
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
     region: ds_content
+    label: visually_hidden
+    settings:
+      responsive_image_style: narrow
+      image_link: content
+    third_party_settings: {  }
 hidden:
   body: true
   comment: true
   field_article_type: true
   field_authors: true
-  field_biography: true
   field_body_paragraph: true
-  field_image: true
+  field_economic_sectors: true
+  field_institutions_structures: true
   field_meta_tags: true
+  field_movements_struggles: true
+  field_practices_tools_strategies: true
   field_publication_date: true
+  field_regions: true
   field_subtitle: true
   field_summary: true
   field_tags: true
   field_topics: true
   field_upload: true
-  geo_citation: true
+  field_visions_models: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.article.teaser.yml b/config/sync/core.entity_view_display.node.article.teaser.yml
index ee01e0e..e4421c3 100644
--- a/config/sync/core.entity_view_display.node.article.teaser.yml
+++ b/config/sync/core.entity_view_display.node.article.teaser.yml
@@ -8,22 +8,17 @@ dependencies:
     - field.field.node.article.comment
     - field.field.node.article.field_article_type
     - field.field.node.article.field_authors
-    - field.field.node.article.field_biography
     - field.field.node.article.field_body_paragraph
     - field.field.node.article.field_image
-    - field.field.node.article.field_media_image
     - field.field.node.article.field_meta_tags
-    - field.field.node.article.field_publication_date
-    - field.field.node.article.field_subtitle
     - field.field.node.article.field_summary
     - field.field.node.article.field_tags
     - field.field.node.article.field_topics
-    - field.field.node.article.field_upload
     - node.type.article
     - responsive_image.styles.narrow
   module:
     - ds
-    - media_responsive_thumbnail
+    - responsive_image
     - text
     - user
 third_party_settings:
@@ -34,11 +29,6 @@ third_party_settings:
       disable_css: true
       entity_classes: all_classes
       settings:
-        label: ''
-        classes:
-          layout_class: {  }
-          left: {  }
-          right: {  }
         wrappers:
           left: div
           right: div
@@ -46,9 +36,11 @@ third_party_settings:
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       left:
-        - field_media_image
+        - field_image
       right:
         - node_post_date
         - node_title
@@ -79,46 +71,42 @@ mode: teaser
 content:
   field_authors:
     type: entity_reference_label
-    label: hidden
+    weight: 3
+    region: right
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 3
-    region: right
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
+  field_image:
+    type: responsive_image
+    weight: 0
     settings:
       responsive_image_style: narrow
       image_link: content
-      image_loading:
-        attribute: lazy
     third_party_settings: {  }
-    weight: 0
+    label: visually_hidden
     region: left
   field_summary:
     type: text_default
-    label: hidden
+    weight: 4
+    label: visually_hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 4
     region: right
   field_topics:
     type: entity_reference_label
-    label: hidden
+    weight: 5
+    region: right
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 5
-    region: right
 hidden:
   body: true
   comment: true
   field_article_type: true
-  field_biography: true
   field_body_paragraph: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
@@ -129,7 +117,5 @@ hidden:
   field_tags: true
   field_upload: true
   field_visions_models: true
-  footnotes_group: true
-  geo_citation: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.card.yml b/config/sync/core.entity_view_display.node.blog.card.yml
index b4b02ab..de09aaf 100644
--- a/config/sync/core.entity_view_display.node.blog.card.yml
+++ b/config/sync/core.entity_view_display.node.blog.card.yml
@@ -9,19 +9,17 @@ dependencies:
     - field.field.node.blog.field_authors
     - field.field.node.blog.field_body_paragraph
     - field.field.node.blog.field_image
-    - field.field.node.blog.field_media_image
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
     - node.type.blog
-    - responsive_image.styles.card_extra_wide
+    - responsive_image.styles.narrow
   module:
     - ds
     - field_group
-    - media_responsive_thumbnail
+    - responsive_image
+    - text
     - user
 third_party_settings:
   ds:
@@ -31,23 +29,22 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class:
-            is-blog: is-blog
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - group_card_content
         - node_title
         - field_authors
+        - field_summary
+        - field_topics
     fields:
       node_title:
         plugin_id: node_title
@@ -63,38 +60,22 @@ third_party_settings:
       children:
         - node_title
         - field_authors
-      label: 'Card content'
+        - field_summary
+        - field_topics
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
-    group_card_content_bottom:
-      children:
-        - field_topics
-      label: 'Card content bottom'
-      parent_name: ''
+      label: 'Card content'
       region: hidden
-      weight: 2
-      format_type: html_element
-      format_settings:
-        classes: ''
-        id: ''
-        element: div
-        show_label: false
-        label_element: h3
-        label_element_classes: ''
-        attributes: ''
-        effect: none
-        speed: fast
 _core:
   default_config_hash: XYwyKKa3-njRWSk_M5xND_313C_fphpvWjlySBpNcxY
 id: node.blog.card
@@ -104,33 +85,48 @@ mode: card
 content:
   field_authors:
     type: entity_reference_label
-    label: hidden
+    weight: 4
+    region: ds_content
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 4
-    region: ds_content
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: card_extra_wide
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
     region: ds_content
+    label: visually_hidden
+    settings:
+      responsive_image_style: narrow
+      image_link: content
+    third_party_settings: {  }
+  field_summary:
+    type: text_default
+    weight: 5
+    region: ds_content
+    label: visually_hidden
+    settings: {  }
+    third_party_settings: {  }
+  field_topics:
+    type: entity_reference_label
+    weight: 6
+    region: ds_content
+    label: visually_hidden
+    settings:
+      link: true
+    third_party_settings: {  }
 hidden:
   body: true
   comment: true
   field_body_paragraph: true
-  field_image: true
+  field_economic_sectors: true
+  field_institutions_structures: true
   field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
+  field_movements_struggles: true
+  field_practices_tools_strategies: true
+  field_regions: true
   field_tags: true
-  field_topics: true
   field_upload: true
+  field_visions_models: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.default.yml b/config/sync/core.entity_view_display.node.blog.default.yml
index 2d66a33..656a797 100644
--- a/config/sync/core.entity_view_display.node.blog.default.yml
+++ b/config/sync/core.entity_view_display.node.blog.default.yml
@@ -7,20 +7,22 @@ dependencies:
     - field.field.node.blog.comment
     - field.field.node.blog.field_authors
     - field.field.node.blog.field_body_paragraph
+    - field.field.node.blog.field_economic_sectors
     - field.field.node.blog.field_image
-    - field.field.node.blog.field_media_image
+    - field.field.node.blog.field_institutions_structures
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
+    - field.field.node.blog.field_movements_struggles
+    - field.field.node.blog.field_practices_tools_strategies
+    - field.field.node.blog.field_regions
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
     - field.field.node.blog.field_upload
+    - field.field.node.blog.field_visions_models
     - node.type.blog
   module:
-    - datetime
     - ds
     - file
-    - text
     - user
 third_party_settings:
   ds:
@@ -30,22 +32,15 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        label: ''
-        classes:
-          layout_class: {  }
-          ds_content: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-    regions:
-      ds_content:
-        - field_authors
-        - body
-        - field_upload
-        - field_publication_date
+        classes:
+          layout_class: {  }
+    regions: {  }
 _core:
   default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM
 id: node.blog.default
@@ -53,47 +48,71 @@ targetEntityType: node
 bundle: blog
 mode: default
 content:
-  body:
-    type: text_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
-    weight: 1
-    region: ds_content
-  field_authors:
-    type: entity_reference_label
+  field_economic_sectors:
+    weight: 2
     label: above
     settings:
       link: true
     third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  field_publication_date:
-    type: datetime_default
-    label: hidden
-    settings:
-      timezone_override: ''
-      format_type: medium
-    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_institutions_structures:
     weight: 3
-    region: ds_content
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_movements_struggles:
+    weight: 4
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_practices_tools_strategies:
+    weight: 5
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
+  field_regions:
+    weight: 6
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
   field_upload:
-    type: file_default
-    label: hidden
+    weight: 1
+    label: above
     settings:
       use_description_as_link_text: true
     third_party_settings: {  }
-    weight: 2
-    region: ds_content
+    type: file_default
+    region: content
+  field_visions_models:
+    weight: 7
+    label: above
+    settings:
+      link: true
+    third_party_settings: {  }
+    type: entity_reference_label
+    region: content
 hidden:
+  body: true
   comment: true
+  field_authors: true
   field_body_paragraph: true
   field_image: true
-  field_media_image: true
   field_meta_tags: true
   field_summary: true
   field_tags: true
   field_topics: true
-  footnotes_group: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.full.yml b/config/sync/core.entity_view_display.node.blog.full.yml
index 2ae5aec..dfe16da 100644
--- a/config/sync/core.entity_view_display.node.blog.full.yml
+++ b/config/sync/core.entity_view_display.node.blog.full.yml
@@ -10,68 +10,61 @@ dependencies:
     - field.field.node.blog.field_authors
     - field.field.node.blog.field_body_paragraph
     - field.field.node.blog.field_image
-    - field.field.node.blog.field_media_image
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
     - node.type.blog
-    - responsive_image.styles.drutopia_wide
+    - responsive_image.styles.wide
   module:
     - comment
     - ds
     - entity_reference_revisions
-    - media_responsive_thumbnail
+    - responsive_image
     - user
 third_party_settings:
   ds:
     layout:
-      id: ds_2col_stacked
-      library: ds/ds_2col_stacked
+      id: ds_3col_stacked
+      library: ds/ds_3col_stacked
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          header: {  }
-          left: {  }
-          right: {  }
-          footer: {  }
         wrappers:
           header: div
           left: div
+          middle: div
           right: div
           footer: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       header:
-        - field_media_image
+        - field_image
       left:
-        - node_post_date
         - field_authors
-      right:
+      middle:
+        - node_post_date
         - field_body_paragraph
         - field_topics
         - field_tags
         - node_links
         - comment
     fields:
+      node_post_date:
+        plugin_id: node_post_date
+        weight: 2
+        label: hidden
+        formatter: ds_post_date_month_day_year
       node_links:
         plugin_id: node_links
         weight: 6
         label: hidden
         formatter: default
-      node_post_date:
-        plugin_id: node_post_date
-        weight: 1
-        label: hidden
-        formatter: ds_post_date_month_day_year
 _core:
   default_config_hash: eLe_jwnmC3YVxzxyG5O3Vc3cB-yoH17iuPzsEFt3TDM
 id: node.blog.full
@@ -80,68 +73,70 @@ bundle: blog
 mode: full
 content:
   comment:
-    type: comment_default
+    weight: 7
     label: above
     settings:
-      view_mode: default
       pager_id: 0
+      view_mode: default
     third_party_settings: {  }
-    weight: 7
-    region: right
+    type: comment_default
+    region: middle
   field_authors:
     type: entity_reference_label
-    label: hidden
+    weight: 1
+    region: left
+    label: visually_hidden
     settings:
       link: true
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 2
-    region: left
   field_body_paragraph:
-    type: entity_reference_revisions_entity_view
-    label: hidden
+    weight: 3
+    label: visually_hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 3
-    region: right
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
+    type: entity_reference_revisions_entity_view
+    region: middle
+  field_image:
+    weight: 0
+    label: visually_hidden
     settings:
-      responsive_image_style: drutopia_wide
+      responsive_image_style: wide
       image_link: ''
-      image_loading:
-        attribute: lazy
     third_party_settings:
       ds:
-        ds_limit: ''
-    weight: 0
+        ds_limit: '1'
+    type: responsive_image
     region: header
   field_tags:
-    type: entity_reference_label
-    label: hidden
+    weight: 5
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 5
-    region: right
+    type: entity_reference_label
+    region: middle
   field_topics:
     type: entity_reference_label
-    label: hidden
+    weight: 4
+    region: middle
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 4
-    region: right
 hidden:
   body: true
-  field_image: true
+  field_economic_sectors: true
+  field_institutions_structures: true
   field_meta_tags: true
-  field_publication_date: true
+  field_movements_struggles: true
+  field_practices_tools_strategies: true
+  field_regions: true
   field_summary: true
   field_upload: true
+  field_visions_models: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.media.yml b/config/sync/core.entity_view_display.node.blog.media.yml
index 0e8d006..0f71781 100644
--- a/config/sync/core.entity_view_display.node.blog.media.yml
+++ b/config/sync/core.entity_view_display.node.blog.media.yml
@@ -10,17 +10,15 @@ dependencies:
     - field.field.node.blog.field_body_paragraph
     - field.field.node.blog.field_image
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
     - image.style.square_thumbnail
     - node.type.blog
   module:
     - ds
     - field_group
-    - media
+    - image
     - user
 third_party_settings:
   ds:
@@ -30,20 +28,19 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
         - group_media_left
         - group_media_content
-        - field_media_image
+        - field_image
         - node_title
         - field_topics
     fields:
@@ -59,40 +56,40 @@ third_party_settings:
   field_group:
     group_media_left:
       children:
-        - field_media_image
-      label: 'Media left'
+        - field_image
       parent_name: ''
-      region: ds_content
       weight: 0
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+      label: 'Media left'
+      region: hidden
     group_media_content:
       children:
         - node_title
         - field_topics
-      label: 'Media content'
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
         label: 'Media content'
-        classes: ''
-        id: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+        id: ''
+        classes: ''
+      label: 'Media content'
+      region: hidden
 _core:
   default_config_hash: Rj3ojtU612xgYn4zfkX4bS8c3ONib2NditNp_5QsD48
 id: node.blog.media
@@ -100,37 +97,33 @@ targetEntityType: node
 bundle: blog
 mode: media
 content:
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: media_library
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
+  field_image:
+    type: image
+    weight: 2
     region: ds_content
+    label: visually_hidden
+    settings:
+      image_style: square_thumbnail
+      image_link: content
+    third_party_settings: {  }
   field_topics:
     type: entity_reference_label
-    label: hidden
+    weight: 3
+    region: ds_content
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 3
-    region: ds_content
 hidden:
   body: true
   comment: true
   field_authors: true
   field_body_paragraph: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
   field_practices_tools_strategies: true
-  field_publication_date: true
   field_regions: true
   field_summary: true
   field_tags: true
diff --git a/config/sync/core.entity_view_display.node.blog.rss.yml b/config/sync/core.entity_view_display.node.blog.rss.yml
deleted file mode 100644
index 333c578..0000000
--- a/config/sync/core.entity_view_display.node.blog.rss.yml
+++ /dev/null
@@ -1,99 +0,0 @@
-uuid: 8e99bb76-debd-4372-9416-cd97dfc4ed13
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.rss
-    - field.field.node.blog.body
-    - field.field.node.blog.comment
-    - field.field.node.blog.field_authors
-    - field.field.node.blog.field_body_paragraph
-    - field.field.node.blog.field_image
-    - field.field.node.blog.field_media_image
-    - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
-    - field.field.node.blog.field_summary
-    - field.field.node.blog.field_tags
-    - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
-    - node.type.blog
-  module:
-    - datetime
-    - ds
-    - taxonomy
-    - text
-    - user
-third_party_settings:
-  ds:
-    layout:
-      id: ds_1col
-      library: null
-      disable_css: false
-      entity_classes: all_classes
-      settings:
-        label: ''
-        classes:
-          layout_class: {  }
-          ds_content: {  }
-        wrappers:
-          ds_content: div
-        outer_wrapper: div
-        attributes: ''
-        link_attribute: ''
-        link_custom: ''
-    regions:
-      ds_content:
-        - field_publication_date
-        - field_authors
-        - field_summary
-        - field_topics
-_core:
-  default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM
-id: node.blog.rss
-targetEntityType: node
-bundle: blog
-mode: rss
-content:
-  field_authors:
-    type: entity_reference_label
-    label: inline
-    settings:
-      link: true
-    third_party_settings: {  }
-    weight: 1
-    region: ds_content
-  field_publication_date:
-    type: datetime_default
-    label: hidden
-    settings:
-      timezone_override: ''
-      format_type: medium
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  field_summary:
-    type: text_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
-    weight: 2
-    region: ds_content
-  field_topics:
-    type: entity_reference_rss_category
-    label: inline
-    settings: {  }
-    third_party_settings: {  }
-    weight: 3
-    region: ds_content
-hidden:
-  body: true
-  comment: true
-  field_body_paragraph: true
-  field_image: true
-  field_media_image: true
-  field_meta_tags: true
-  field_tags: true
-  field_upload: true
-  footnotes_group: true
-  links: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.search_index.yml b/config/sync/core.entity_view_display.node.blog.search_index.yml
index d33430e..1dbc4b5 100644
--- a/config/sync/core.entity_view_display.node.blog.search_index.yml
+++ b/config/sync/core.entity_view_display.node.blog.search_index.yml
@@ -10,16 +10,14 @@ dependencies:
     - field.field.node.blog.field_body_paragraph
     - field.field.node.blog.field_image
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
     - node.type.blog
   module:
     - ds
     - entity_reference_revisions
-    - media
+    - responsive_image
     - user
 third_party_settings:
   ds:
@@ -29,18 +27,17 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - field_authors
         - node_post_date
         - field_body_paragraph
@@ -61,62 +58,58 @@ mode: search_index
 content:
   field_authors:
     type: entity_reference_label
+    weight: 1
+    region: ds_content
     label: hidden
     settings:
       link: true
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 1
-    region: ds_content
   field_body_paragraph:
     type: entity_reference_revisions_entity_view
+    weight: 3
+    region: ds_content
     label: hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 3
-    region: ds_content
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
     region: ds_content
+    label: hidden
+    settings:
+      responsive_image_style: ''
+      image_link: ''
+    third_party_settings: {  }
   field_tags:
     type: entity_reference_label
+    weight: 5
+    region: ds_content
     label: hidden
     settings:
       link: true
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 5
-    region: ds_content
   field_topics:
     type: entity_reference_label
+    weight: 4
+    region: ds_content
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 4
-    region: ds_content
 hidden:
   body: true
   comment: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
   field_practices_tools_strategies: true
-  field_publication_date: true
   field_regions: true
   field_summary: true
   field_upload: true
diff --git a/config/sync/core.entity_view_display.node.blog.simple_card.yml b/config/sync/core.entity_view_display.node.blog.simple_card.yml
index 6a7bcc1..38c4eec 100644
--- a/config/sync/core.entity_view_display.node.blog.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.blog.simple_card.yml
@@ -10,17 +10,15 @@ dependencies:
     - field.field.node.blog.field_body_paragraph
     - field.field.node.blog.field_image
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
     - node.type.blog
     - responsive_image.styles.narrow
   module:
     - ds
     - field_group
-    - media_responsive_thumbnail
+    - responsive_image
     - user
 third_party_settings:
   ds:
@@ -30,22 +28,26 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - group_card_content
         - 'bundle_field:node'
         - node_title
     fields:
+      'bundle_field:node':
+        plugin_id: 'bundle_field:node'
+        weight: 2
+        label: hidden
+        formatter: default
       node_title:
         plugin_id: node_title
         weight: 3
@@ -56,30 +58,25 @@ third_party_settings:
           wrapper: h2
           class: ''
           exclude_node_title: '1'
-      'bundle_field:node':
-        plugin_id: 'bundle_field:node'
-        weight: 2
-        label: hidden
-        formatter: default
   field_group:
     group_card_content:
       children:
         - 'bundle_field:node'
         - node_title
-      label: 'Card content'
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+      label: 'Card content'
+      region: hidden
 _core:
   default_config_hash: wUTdzmd_uDUyf43YNRpJ7ic0Yg9me0T6jp-MTE2t874
 id: node.blog.simple_card
@@ -87,29 +84,25 @@ targetEntityType: node
 bundle: blog
 mode: simple_card
 content:
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_card
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
     region: ds_content
+    label: visually_hidden
+    settings:
+      responsive_image_style: narrow
+      image_link: content
+    third_party_settings: {  }
 hidden:
   body: true
   comment: true
   field_authors: true
   field_body_paragraph: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
   field_practices_tools_strategies: true
-  field_publication_date: true
   field_regions: true
   field_summary: true
   field_tags: true
diff --git a/config/sync/core.entity_view_display.node.blog.teaser.yml b/config/sync/core.entity_view_display.node.blog.teaser.yml
index 664108f..edf6452 100644
--- a/config/sync/core.entity_view_display.node.blog.teaser.yml
+++ b/config/sync/core.entity_view_display.node.blog.teaser.yml
@@ -10,16 +10,14 @@ dependencies:
     - field.field.node.blog.field_body_paragraph
     - field.field.node.blog.field_image
     - field.field.node.blog.field_meta_tags
-    - field.field.node.blog.field_publication_date
     - field.field.node.blog.field_summary
     - field.field.node.blog.field_tags
     - field.field.node.blog.field_topics
-    - field.field.node.blog.field_upload
     - node.type.blog
     - responsive_image.styles.narrow
   module:
     - ds
-    - media_responsive_thumbnail
+    - responsive_image
     - text
     - user
 third_party_settings:
@@ -30,10 +28,6 @@ third_party_settings:
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          left: {  }
-          right: {  }
         wrappers:
           left: div
           right: div
@@ -41,16 +35,23 @@ third_party_settings:
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       left:
-        - field_media_image
+        - field_image
       right:
         - node_post_date
         - node_title
         - field_authors
         - field_summary
+        - field_topics
     fields:
+      node_post_date:
+        plugin_id: node_post_date
+        weight: 1
+        label: hidden
+        formatter: ds_post_date_month_day_year
       node_title:
         plugin_id: node_title
         weight: 2
@@ -60,11 +61,6 @@ third_party_settings:
           link: true
           wrapper: h2
           class: ''
-      node_post_date:
-        plugin_id: node_post_date
-        weight: 1
-        label: hidden
-        formatter: ds_post_date_month_day_year
 _core:
   default_config_hash: 53n1XaLVXVvOb4o-_UMQh5byPnkR8COqK2YHtdExSdE
 id: node.blog.teaser
@@ -74,44 +70,47 @@ mode: teaser
 content:
   field_authors:
     type: entity_reference_label
-    label: hidden
+    weight: 3
+    region: right
+    label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 3
-    region: right
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_card
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
+  field_image:
+    type: responsive_image
     weight: 0
+    label: visually_hidden
+    settings:
+      responsive_image_style: narrow
+      image_link: content
+    third_party_settings: {  }
     region: left
   field_summary:
     type: text_default
-    label: hidden
+    weight: 4
+    label: visually_hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 4
     region: right
+  field_topics:
+    type: entity_reference_label
+    weight: 5
+    region: right
+    label: visually_hidden
+    settings:
+      link: true
+    third_party_settings: {  }
 hidden:
   body: true
   comment: true
   field_body_paragraph: true
   field_economic_sectors: true
-  field_image: true
   field_institutions_structures: true
   field_meta_tags: true
   field_movements_struggles: true
   field_practices_tools_strategies: true
-  field_publication_date: true
   field_regions: true
   field_tags: true
-  field_topics: true
   field_upload: true
   field_visions_models: true
   links: true
diff --git a/config/sync/core.entity_view_display.node.collection.card.yml b/config/sync/core.entity_view_display.node.collection.card.yml
deleted file mode 100644
index 2808ef9..0000000
--- a/config/sync/core.entity_view_display.node.collection.card.yml
+++ /dev/null
@@ -1,130 +0,0 @@
-uuid: fd726346-9c58-4db8-91f8-0e974db1a9d4
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.card
-    - field.field.node.collection.body
-    - field.field.node.collection.comment
-    - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
-    - field.field.node.collection.field_collection_items
-    - field.field.node.collection.field_collection_type
-    - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
-    - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
-    - field.field.node.collection.field_summary
-    - field.field.node.collection.field_tags
-    - field.field.node.collection.field_topics
-    - node.type.collection
-    - responsive_image.styles.card_extra_wide
-  module:
-    - ds
-    - field_group
-    - media_responsive_thumbnail
-    - user
-third_party_settings:
-  ds:
-    layout:
-      id: ds_1col
-      library: null
-      disable_css: false
-      entity_classes: all_classes
-      settings:
-        classes:
-          layout_class:
-            is-collection: is-collection
-          ds_content: {  }
-        wrappers:
-          ds_content: div
-        outer_wrapper: div
-        attributes: ''
-        link_attribute: ''
-        link_custom: ''
-        label: ''
-    regions:
-      ds_content:
-        - field_media_image
-        - group_card_content
-        - node_post_date
-        - node_title
-        - field_authors
-    fields:
-      node_post_date:
-        plugin_id: node_post_date
-        weight: 6
-        label: hidden
-        formatter: ds_post_date_month_day_year
-      node_title:
-        plugin_id: node_title
-        weight: 7
-        label: hidden
-        formatter: default
-        settings:
-          link: true
-          wrapper: h2
-          class: ''
-  field_group:
-    group_card_content:
-      children:
-        - node_post_date
-        - node_title
-        - field_authors
-      label: 'card content'
-      parent_name: ''
-      region: ds_content
-      weight: 1
-      format_type: html_element
-      format_settings:
-        classes: ''
-        id: ''
-        element: div
-        show_label: false
-        label_element: h3
-        label_element_classes: ''
-        attributes: ''
-        effect: none
-        speed: fast
-_core:
-  default_config_hash: VdRPCswDeQt_699xq5eV44VFlk9cve4hp9aTbmY4qIM
-id: node.collection.card
-targetEntityType: node
-bundle: collection
-mode: card
-content:
-  field_authors:
-    type: entity_reference_label
-    label: hidden
-    settings:
-      link: false
-    third_party_settings:
-      ds:
-        ds_limit: ''
-    weight: 8
-    region: ds_content
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: card_extra_wide
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-hidden:
-  body: true
-  comment: true
-  field_body_paragraph: true
-  field_collection_items: true
-  field_collection_type: true
-  field_image: true
-  field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
-  field_tags: true
-  field_topics: true
-  links: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.default.yml b/config/sync/core.entity_view_display.node.collection.default.yml
index b78e410..cee26d6 100644
--- a/config/sync/core.entity_view_display.node.collection.default.yml
+++ b/config/sync/core.entity_view_display.node.collection.default.yml
@@ -3,24 +3,19 @@ langcode: en
 status: true
 dependencies:
   config:
-    - core.entity_view_display.comment.comment.default
     - field.field.node.collection.body
-    - field.field.node.collection.comment
     - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
     - field.field.node.collection.field_collection_items
     - field.field.node.collection.field_collection_type
     - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
     - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
     - field.field.node.collection.field_summary
     - field.field.node.collection.field_tags
     - field.field.node.collection.field_topics
     - node.type.collection
   module:
-    - comment
-    - datetime
+    - ds
+    - image
     - metatag
     - text
     - user
@@ -32,31 +27,22 @@ bundle: collection
 mode: default
 content:
   body:
-    type: text_default
     label: hidden
+    type: text_default
+    weight: 2
     settings: {  }
     third_party_settings: {  }
-    weight: 2
-    region: content
-  comment:
-    type: comment_default
-    label: above
-    settings:
-      view_mode: default
-      pager_id: 0
-    third_party_settings: {  }
-    weight: 10
     region: content
   field_authors:
-    type: entity_reference_label
+    weight: 5
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 5
+    type: entity_reference_label
     region: content
   field_collection_items:
-    type: entity_reference_entity_view
+    weight: 6
     label: hidden
     settings:
       view_mode: teaser
@@ -64,70 +50,59 @@ content:
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 6
+    type: entity_reference_entity_view
     region: content
   field_collection_type:
-    type: entity_reference_label
+    weight: 9
     label: above
     settings:
       link: true
     third_party_settings: {  }
-    weight: 9
+    type: entity_reference_label
     region: content
-  field_media_image:
-    type: entity_reference_entity_view
-    label: above
-    settings:
-      view_mode: default
-      link: false
-    third_party_settings: {  }
+  field_image:
     weight: 3
+    label: hidden
+    settings:
+      image_style: ''
+      image_link: ''
+    third_party_settings: {  }
+    type: image
     region: content
   field_meta_tags:
-    type: metatag_empty_formatter
+    weight: 4
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 4
-    region: content
-  field_publication_date:
-    type: datetime_default
-    label: above
-    settings:
-      timezone_override: ''
-      format_type: medium
-    third_party_settings: {  }
-    weight: 11
+    type: metatag_empty_formatter
     region: content
   field_summary:
-    type: text_default
+    weight: 1
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 1
+    type: text_default
     region: content
   field_tags:
-    type: entity_reference_label
+    weight: 8
     label: above
     settings:
       link: true
     third_party_settings: {  }
-    weight: 8
+    type: entity_reference_label
     region: content
   field_topics:
-    type: entity_reference_label
+    weight: 7
     label: above
     settings:
       link: true
     third_party_settings: {  }
-    weight: 7
+    type: entity_reference_label
     region: content
   links:
-    settings: {  }
-    third_party_settings: {  }
     weight: 0
     region: content
+    settings: {  }
+    third_party_settings: {  }
 hidden:
-  field_body_paragraph: true
-  field_image: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.full.yml b/config/sync/core.entity_view_display.node.collection.full.yml
index 6a8102a..11d142d 100644
--- a/config/sync/core.entity_view_display.node.collection.full.yml
+++ b/config/sync/core.entity_view_display.node.collection.full.yml
@@ -5,24 +5,19 @@ dependencies:
   config:
     - core.entity_view_mode.node.full
     - field.field.node.collection.body
-    - field.field.node.collection.comment
     - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
     - field.field.node.collection.field_collection_items
     - field.field.node.collection.field_collection_type
     - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
     - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
     - field.field.node.collection.field_summary
     - field.field.node.collection.field_tags
     - field.field.node.collection.field_topics
     - node.type.collection
-    - responsive_image.styles.drutopia_wide
   module:
     - ds
-    - entity_reference_revisions
-    - media_responsive_thumbnail
+    - image
+    - text
     - user
 third_party_settings:
   ds:
@@ -32,12 +27,6 @@ third_party_settings:
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          header: {  }
-          left: {  }
-          right: {  }
-          footer: {  }
         wrappers:
           header: div
           left: div
@@ -47,10 +36,11 @@ third_party_settings:
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       header:
-        - field_media_image
+        - field_image
       left:
         - node_post_date
         - field_authors
@@ -58,8 +48,8 @@ third_party_settings:
         - field_topics
         - field_tags
       right:
+        - field_summary
         - field_collection_items
-        - field_body_paragraph
     fields:
       node_post_date:
         plugin_id: node_post_date
@@ -74,24 +64,15 @@ bundle: collection
 mode: full
 content:
   field_authors:
-    type: entity_reference_label
+    weight: 2
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 2
+    type: entity_reference_label
     region: left
-  field_body_paragraph:
-    type: entity_reference_revisions_entity_view
-    label: hidden
-    settings:
-      view_mode: default
-      link: ''
-    third_party_settings: {  }
-    weight: 7
-    region: right
   field_collection_items:
-    type: entity_reference_entity_view
+    weight: 7
     label: hidden
     settings:
       view_mode: teaser
@@ -99,51 +80,50 @@ content:
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 6
+    type: entity_reference_entity_view
     region: right
   field_collection_type:
     type: entity_reference_label
-    label: hidden
+    weight: 3
+    region: left
+    label: visually_hidden
     settings:
       link: false
     third_party_settings: {  }
-    weight: 3
-    region: left
-  field_media_image:
-    type: media_responsive_thumbnail
+  field_image:
+    weight: 0
     label: hidden
     settings:
-      responsive_image_style: drutopia_wide
+      image_style: ''
       image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings:
-      ds:
-        ds_limit: ''
-    weight: 0
+    third_party_settings: {  }
+    type: image
     region: header
+  field_summary:
+    weight: 6
+    label: hidden
+    settings: {  }
+    third_party_settings: {  }
+    type: text_default
+    region: right
   field_tags:
     type: entity_reference_label
+    weight: 5
+    region: left
+    label: hidden
+    settings:
+      link: true
+    third_party_settings: {  }
+  field_topics:
+    type: entity_reference_label
+    weight: 4
+    region: left
     label: visually_hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 5
-    region: left
-  field_topics:
-    type: entity_reference_label
-    label: hidden
-    settings:
-      link: true
-    third_party_settings: {  }
-    weight: 4
-    region: left
 hidden:
   body: true
-  comment: true
-  field_image: true
   field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.media.yml b/config/sync/core.entity_view_display.node.collection.media.yml
deleted file mode 100644
index 66e996d..0000000
--- a/config/sync/core.entity_view_display.node.collection.media.yml
+++ /dev/null
@@ -1,59 +0,0 @@
-uuid: 2bb75354-a007-456a-96a2-f71fb987d153
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.media
-    - field.field.node.collection.body
-    - field.field.node.collection.comment
-    - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
-    - field.field.node.collection.field_collection_items
-    - field.field.node.collection.field_collection_type
-    - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
-    - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
-    - field.field.node.collection.field_summary
-    - field.field.node.collection.field_tags
-    - field.field.node.collection.field_topics
-    - image.style.medium
-    - node.type.collection
-  module:
-    - media
-    - user
-id: node.collection.media
-targetEntityType: node
-bundle: collection
-mode: media
-content:
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: content
-      image_style: medium
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  links:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 100
-    region: content
-hidden:
-  body: true
-  comment: true
-  field_authors: true
-  field_body_paragraph: true
-  field_collection_items: true
-  field_collection_type: true
-  field_image: true
-  field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
-  field_tags: true
-  field_topics: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.rss.yml b/config/sync/core.entity_view_display.node.collection.rss.yml
deleted file mode 100644
index ceb1ad1..0000000
--- a/config/sync/core.entity_view_display.node.collection.rss.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-uuid: a6e52697-12c5-4250-96cb-f208b8c8c868
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.rss
-    - field.field.node.collection.body
-    - field.field.node.collection.comment
-    - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
-    - field.field.node.collection.field_collection_items
-    - field.field.node.collection.field_collection_type
-    - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
-    - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
-    - field.field.node.collection.field_summary
-    - field.field.node.collection.field_tags
-    - field.field.node.collection.field_topics
-    - node.type.collection
-  module:
-    - media
-    - user
-id: node.collection.rss
-targetEntityType: node
-bundle: collection
-mode: rss
-content:
-  field_media_image:
-    type: media_thumbnail
-    label: above
-    settings:
-      image_link: ''
-      image_style: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  links:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 100
-    region: content
-hidden:
-  body: true
-  comment: true
-  field_authors: true
-  field_body_paragraph: true
-  field_collection_items: true
-  field_collection_type: true
-  field_image: true
-  field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
-  field_tags: true
-  field_topics: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.search_index.yml b/config/sync/core.entity_view_display.node.collection.search_index.yml
deleted file mode 100644
index 316e2ed..0000000
--- a/config/sync/core.entity_view_display.node.collection.search_index.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-uuid: 6110b07f-6e37-4100-a53c-bf93ecc1f9c2
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.search_index
-    - field.field.node.collection.body
-    - field.field.node.collection.comment
-    - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
-    - field.field.node.collection.field_collection_items
-    - field.field.node.collection.field_collection_type
-    - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
-    - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
-    - field.field.node.collection.field_summary
-    - field.field.node.collection.field_tags
-    - field.field.node.collection.field_topics
-    - node.type.collection
-  module:
-    - media
-    - user
-id: node.collection.search_index
-targetEntityType: node
-bundle: collection
-mode: search_index
-content:
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 1
-    region: ds_content
-  links:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 100
-    region: content
-hidden:
-  body: true
-  comment: true
-  field_authors: true
-  field_body_paragraph: true
-  field_collection_items: true
-  field_collection_type: true
-  field_image: true
-  field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
-  field_tags: true
-  field_topics: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.simple_card.yml b/config/sync/core.entity_view_display.node.collection.simple_card.yml
deleted file mode 100644
index c3a71e1..0000000
--- a/config/sync/core.entity_view_display.node.collection.simple_card.yml
+++ /dev/null
@@ -1,130 +0,0 @@
-uuid: 7d1eab58-45fa-41ca-a978-916a87d1fd36
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.simple_card
-    - field.field.node.collection.body
-    - field.field.node.collection.comment
-    - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
-    - field.field.node.collection.field_collection_items
-    - field.field.node.collection.field_collection_type
-    - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
-    - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
-    - field.field.node.collection.field_summary
-    - field.field.node.collection.field_tags
-    - field.field.node.collection.field_topics
-    - node.type.collection
-    - responsive_image.styles.drutopia_card
-    - responsive_image.styles.narrow
-  module:
-    - ds
-    - field_group
-    - media_responsive_thumbnail
-    - responsive_image
-    - user
-third_party_settings:
-  ds:
-    layout:
-      id: ds_1col
-      library: null
-      disable_css: false
-      entity_classes: all_classes
-      settings:
-        classes:
-          layout_class: {  }
-        wrappers:
-          ds_content: div
-        outer_wrapper: div
-        attributes: ''
-        link_attribute: ''
-        link_custom: ''
-    regions:
-      ds_content:
-        - field_image
-        - 'bundle_field:node'
-        - group_card_content
-        - node_title
-    fields:
-      'bundle_field:node':
-        plugin_id: 'bundle_field:node'
-        weight: 0
-        label: hidden
-        formatter: default
-      node_title:
-        plugin_id: node_title
-        weight: 2
-        label: hidden
-        formatter: default
-        settings:
-          link: true
-          wrapper: h2
-          class: ''
-  field_group:
-    group_card_content:
-      children:
-        - 'bundle_field:node'
-        - node_title
-      label: 'card content'
-      parent_name: ''
-      region: hidden
-      weight: 1
-      format_type: html_element
-      format_settings:
-        classes: ''
-        id: ''
-        element: div
-        show_label: false
-        label_element: h3
-        label_element_classes: ''
-        attributes: ''
-        effect: none
-        speed: fast
-_core:
-  default_config_hash: VdRPCswDeQt_699xq5eV44VFlk9cve4hp9aTbmY4qIM
-id: node.collection.simple_card
-targetEntityType: node
-bundle: collection
-mode: simple_card
-content:
-  field_image:
-    type: responsive_image
-    label: hidden
-    settings:
-      responsive_image_style: narrow
-      image_link: content
-      image_loading:
-        attribute: eager
-    third_party_settings:
-      ds:
-        ds_limit: '1'
-    weight: 0
-    region: ds_content
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_card
-      image_link: content
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-hidden:
-  body: true
-  comment: true
-  field_authors: true
-  field_body_paragraph: true
-  field_collection_items: true
-  field_collection_type: true
-  field_meta_tags: true
-  field_publication_date: true
-  field_summary: true
-  field_tags: true
-  field_topics: true
-  links: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.collection.teaser.yml b/config/sync/core.entity_view_display.node.collection.teaser.yml
index f7dd5e1..9e0c58c 100644
--- a/config/sync/core.entity_view_display.node.collection.teaser.yml
+++ b/config/sync/core.entity_view_display.node.collection.teaser.yml
@@ -5,22 +5,16 @@ dependencies:
   config:
     - core.entity_view_mode.node.teaser
     - field.field.node.collection.body
-    - field.field.node.collection.comment
     - field.field.node.collection.field_authors
-    - field.field.node.collection.field_body_paragraph
     - field.field.node.collection.field_collection_items
     - field.field.node.collection.field_collection_type
     - field.field.node.collection.field_image
-    - field.field.node.collection.field_media_image
     - field.field.node.collection.field_meta_tags
-    - field.field.node.collection.field_publication_date
     - field.field.node.collection.field_summary
     - field.field.node.collection.field_tags
     - field.field.node.collection.field_topics
     - node.type.collection
-    - responsive_image.styles.narrow
   module:
-    - media_responsive_thumbnail
     - text
     - user
 _core:
@@ -30,35 +24,26 @@ targetEntityType: node
 bundle: collection
 mode: teaser
 content:
-  field_media_image:
-    type: media_responsive_thumbnail
+  body:
     label: hidden
+    type: text_summary_or_trimmed
+    weight: 101
     settings:
-      responsive_image_style: narrow
-      image_link: content
-      image_loading:
-        attribute: lazy
+      trim_length: 600
     third_party_settings: {  }
-    weight: 0
-    region: left
-  field_summary:
-    type: text_default
-    label: hidden
+    region: content
+  links:
+    weight: 100
     settings: {  }
     third_party_settings: {  }
-    weight: 0
     region: content
 hidden:
-  body: true
-  comment: true
   field_authors: true
-  field_body_paragraph: true
   field_collection_items: true
   field_collection_type: true
   field_image: true
   field_meta_tags: true
-  field_publication_date: true
+  field_summary: true
   field_tags: true
   field_topics: true
-  links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.gleaning.card.yml b/config/sync/core.entity_view_display.node.gleaning.card.yml
deleted file mode 100644
index 3c60b97..0000000
--- a/config/sync/core.entity_view_display.node.gleaning.card.yml
+++ /dev/null
@@ -1,108 +0,0 @@
-uuid: 711db482-2ff5-48a0-8073-59d9a3e8133e
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.card
-    - field.field.node.gleaning.body
-    - field.field.node.gleaning.comment
-    - field.field.node.gleaning.field_image
-    - field.field.node.gleaning.field_media_image
-    - field.field.node.gleaning.field_publication_date
-    - field.field.node.gleaning.field_upload
-    - node.type.gleaning
-    - responsive_image.styles.card_extra_wide
-  module:
-    - datetime
-    - ds
-    - field_group
-    - media_responsive_thumbnail
-    - user
-third_party_settings:
-  field_group:
-    group_card_content:
-      children:
-        - field_publication_date
-        - node_title
-      label: 'Card content'
-      parent_name: ''
-      region: ds_content
-      weight: 1
-      format_type: html_element
-      format_settings:
-        classes: ''
-        id: ''
-        element: div
-        show_label: false
-        label_element: h3
-        label_element_classes: ''
-        attributes: ''
-        effect: none
-        speed: fast
-  ds:
-    layout:
-      id: ds_1col
-      library: null
-      disable_css: false
-      entity_classes: all_classes
-      settings:
-        classes:
-          layout_class:
-            is-gleaning: is-gleaning
-          ds_content: {  }
-        wrappers:
-          ds_content: div
-        outer_wrapper: div
-        attributes: ''
-        link_attribute: ''
-        link_custom: ''
-        label: ''
-    regions:
-      ds_content:
-        - field_media_image
-        - group_card_content
-        - field_publication_date
-        - node_title
-    fields:
-      node_title:
-        plugin_id: node_title
-        weight: 16
-        label: hidden
-        formatter: default
-        settings:
-          link: true
-          wrapper: h2
-          class: ''
-          exclude_node_title: '1'
-id: node.gleaning.card
-targetEntityType: node
-bundle: gleaning
-mode: card
-content:
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: card_extra_wide
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  field_publication_date:
-    type: datetime_default
-    label: hidden
-    settings:
-      timezone_override: ''
-      format_type: month_day_year
-    third_party_settings: {  }
-    weight: 15
-    region: ds_content
-hidden:
-  body: true
-  comment: true
-  field_image: true
-  field_upload: true
-  links: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.gleaning.default.yml b/config/sync/core.entity_view_display.node.gleaning.default.yml
index 5b114a1..7a5b3b7 100644
--- a/config/sync/core.entity_view_display.node.gleaning.default.yml
+++ b/config/sync/core.entity_view_display.node.gleaning.default.yml
@@ -4,15 +4,12 @@ status: true
 dependencies:
   config:
     - field.field.node.gleaning.body
-    - field.field.node.gleaning.comment
     - field.field.node.gleaning.field_image
-    - field.field.node.gleaning.field_media_image
-    - field.field.node.gleaning.field_publication_date
     - field.field.node.gleaning.field_upload
     - node.type.gleaning
   module:
-    - datetime
     - file
+    - image
     - text
     - user
 id: node.gleaning.default
@@ -21,44 +18,33 @@ bundle: gleaning
 mode: default
 content:
   body:
-    type: text_default
     label: hidden
+    type: text_default
+    weight: 101
     settings: {  }
     third_party_settings: {  }
-    weight: 1
     region: content
-  field_media_image:
-    type: entity_reference_entity_view
+  field_image:
+    weight: 102
     label: above
     settings:
-      view_mode: default
-      link: false
+      image_style: ''
+      image_link: ''
     third_party_settings: {  }
-    weight: 2
-    region: content
-  field_publication_date:
-    type: datetime_default
-    label: above
-    settings:
-      timezone_override: ''
-      format_type: medium
-    third_party_settings: {  }
-    weight: 4
+    type: image
     region: content
   field_upload:
-    type: file_default
+    weight: 103
     label: above
     settings:
       use_description_as_link_text: true
     third_party_settings: {  }
-    weight: 3
+    type: file_default
     region: content
   links:
+    weight: 100
     settings: {  }
     third_party_settings: {  }
-    weight: 0
     region: content
 hidden:
-  comment: true
-  field_image: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.gleaning.full.yml b/config/sync/core.entity_view_display.node.gleaning.full.yml
deleted file mode 100644
index 80dd662..0000000
--- a/config/sync/core.entity_view_display.node.gleaning.full.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-uuid: 302a64ad-f345-49d1-a38d-630c3302a492
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_display.comment.comment.default
-    - core.entity_view_mode.node.full
-    - field.field.node.gleaning.body
-    - field.field.node.gleaning.comment
-    - field.field.node.gleaning.field_image
-    - field.field.node.gleaning.field_media_image
-    - field.field.node.gleaning.field_publication_date
-    - field.field.node.gleaning.field_upload
-    - node.type.gleaning
-  module:
-    - comment
-    - file
-    - text
-    - user
-id: node.gleaning.full
-targetEntityType: node
-bundle: gleaning
-mode: full
-content:
-  body:
-    type: text_default
-    label: hidden
-    settings: {  }
-    third_party_settings: {  }
-    weight: 1
-    region: content
-  comment:
-    type: comment_default
-    label: above
-    settings:
-      view_mode: default
-      pager_id: 0
-    third_party_settings: {  }
-    weight: 3
-    region: content
-  field_upload:
-    type: file_default
-    label: above
-    settings:
-      use_description_as_link_text: true
-    third_party_settings: {  }
-    weight: 2
-    region: content
-  links:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  field_image: true
-  field_media_image: true
-  field_publication_date: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.gleaning.teaser.yml b/config/sync/core.entity_view_display.node.gleaning.teaser.yml
index 56ab661..3bc0ae6 100644
--- a/config/sync/core.entity_view_display.node.gleaning.teaser.yml
+++ b/config/sync/core.entity_view_display.node.gleaning.teaser.yml
@@ -5,11 +5,6 @@ dependencies:
   config:
     - core.entity_view_mode.node.teaser
     - field.field.node.gleaning.body
-    - field.field.node.gleaning.comment
-    - field.field.node.gleaning.field_image
-    - field.field.node.gleaning.field_media_image
-    - field.field.node.gleaning.field_publication_date
-    - field.field.node.gleaning.field_upload
     - node.type.gleaning
   module:
     - text
@@ -20,18 +15,19 @@ bundle: gleaning
 mode: teaser
 content:
   body:
-    type: text_summary_or_trimmed
     label: hidden
+    type: text_summary_or_trimmed
+    weight: 101
     settings:
       trim_length: 600
     third_party_settings: {  }
-    weight: 0
+    region: content
+  links:
+    weight: 100
+    settings: {  }
+    third_party_settings: {  }
     region: content
 hidden:
-  comment: true
   field_image: true
-  field_media_image: true
-  field_publication_date: true
   field_upload: true
-  links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.landing_page.full.yml b/config/sync/core.entity_view_display.node.landing_page.full.yml
index 08ab12c..caf7bff 100644
--- a/config/sync/core.entity_view_display.node.landing_page.full.yml
+++ b/config/sync/core.entity_view_display.node.landing_page.full.yml
@@ -19,14 +19,14 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
         - field_body_paragraph
@@ -38,13 +38,13 @@ bundle: landing_page
 mode: full
 content:
   field_body_paragraph:
-    type: entity_reference_revisions_entity_view
-    label: hidden
+    weight: 0
+    label: visually_hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 0
+    type: entity_reference_revisions_entity_view
     region: ds_content
 hidden:
   field_meta_tags: true
diff --git a/config/sync/core.entity_view_display.node.page.default.yml b/config/sync/core.entity_view_display.node.page.default.yml
index 3952c7e..b51a51e 100644
--- a/config/sync/core.entity_view_display.node.page.default.yml
+++ b/config/sync/core.entity_view_display.node.page.default.yml
@@ -19,14 +19,14 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions: {  }
 _core:
   default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg
diff --git a/config/sync/core.entity_view_display.node.page.full.yml b/config/sync/core.entity_view_display.node.page.full.yml
index 847c8c6..185d93a 100644
--- a/config/sync/core.entity_view_display.node.page.full.yml
+++ b/config/sync/core.entity_view_display.node.page.full.yml
@@ -17,19 +17,19 @@ third_party_settings:
   ds:
     layout:
       id: ds_1col
+      path: modules/contrib/ds
       library: ''
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-      path: modules/contrib/ds
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
         - field_body_paragraph
@@ -42,18 +42,18 @@ bundle: page
 mode: full
 content:
   field_body_paragraph:
-    type: entity_reference_revisions_entity_view
+    weight: 1
     label: hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 1
+    type: entity_reference_revisions_entity_view
     region: ds_content
   links:
+    weight: 2
     settings: {  }
     third_party_settings: {  }
-    weight: 2
     region: ds_content
 hidden:
   body: true
diff --git a/config/sync/core.entity_view_display.node.page.teaser.yml b/config/sync/core.entity_view_display.node.page.teaser.yml
index e1fd599..22a485d 100644
--- a/config/sync/core.entity_view_display.node.page.teaser.yml
+++ b/config/sync/core.entity_view_display.node.page.teaser.yml
@@ -21,14 +21,14 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
         - node_title
@@ -52,10 +52,10 @@ mode: teaser
 content:
   field_summary:
     type: text_default
+    weight: 1
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 1
     region: ds_content
 hidden:
   body: true
diff --git a/config/sync/core.entity_view_display.node.people.card.yml b/config/sync/core.entity_view_display.node.people.card.yml
deleted file mode 100644
index 00192b6..0000000
--- a/config/sync/core.entity_view_display.node.people.card.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-uuid: 43883af9-9681-4d72-8ae8-f39287a1f303
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.card
-    - field.field.node.people.body
-    - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
-    - field.field.node.people.field_meta_tags
-    - field.field.node.people.field_people_position
-    - field.field.node.people.field_people_type
-    - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
-    - node.type.people
-    - responsive_image.styles.drutopia_card
-  module:
-    - media_responsive_thumbnail
-    - user
-_core:
-  default_config_hash: 5aDOMfLAFwDCqdovft_rABpy4XtO8GoXknScnpzs-rc
-id: node.people.card
-targetEntityType: node
-bundle: people
-mode: card
-content:
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_card
-      image_link: content
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  links:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 100
-    region: content
-hidden:
-  body: true
-  field_body_paragraph: true
-  field_image: true
-  field_meta_tags: true
-  field_people_position: true
-  field_people_type: true
-  field_summary: true
-  field_topics: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.people.default.yml b/config/sync/core.entity_view_display.node.people.default.yml
index 254d5b2..0aaeb60 100644
--- a/config/sync/core.entity_view_display.node.people.default.yml
+++ b/config/sync/core.entity_view_display.node.people.default.yml
@@ -5,14 +5,14 @@ dependencies:
   config:
     - field.field.node.people.body
     - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
+    - field.field.node.people.field_image
     - field.field.node.people.field_meta_tags
     - field.field.node.people.field_people_position
     - field.field.node.people.field_people_type
     - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
     - node.type.people
   module:
+    - ds
     - user
 third_party_settings:
   ds:
@@ -22,14 +22,14 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions: {  }
 _core:
   default_config_hash: PcM71wVDAKyWoQ4OFb7991GgWRB9kh4ZBoyqhQ5aHeU
@@ -42,11 +42,9 @@ hidden:
   body: true
   field_body_paragraph: true
   field_image: true
-  field_media_image: true
   field_meta_tags: true
   field_people_position: true
   field_people_type: true
   field_summary: true
-  field_topics: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.people.full.yml b/config/sync/core.entity_view_display.node.people.full.yml
index 68e24e7..464a063 100644
--- a/config/sync/core.entity_view_display.node.people.full.yml
+++ b/config/sync/core.entity_view_display.node.people.full.yml
@@ -7,51 +7,41 @@ dependencies:
     - field.field.node.people.body
     - field.field.node.people.field_body_paragraph
     - field.field.node.people.field_image
-    - field.field.node.people.field_media_image
     - field.field.node.people.field_meta_tags
     - field.field.node.people.field_people_position
     - field.field.node.people.field_people_type
     - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
     - node.type.people
-    - responsive_image.styles.drutopia_wide
+    - responsive_image.styles.tall
   module:
     - ds
     - entity_reference_revisions
-    - media_responsive_thumbnail
+    - responsive_image
     - user
 third_party_settings:
   ds:
     layout:
-      id: ds_2col_stacked
-      library: ds/ds_2col_stacked
+      id: ds_2col
+      library: ds/ds_2col
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          header: {  }
-          left: {  }
-          right: {  }
-          footer: {  }
         wrappers:
-          header: div
           left: div
           right: div
-          footer: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
-      header:
-        - field_media_image
       left:
-        - field_people_type
-        - field_people_position
+        - field_image
       right:
+        - field_people_position
         - field_body_paragraph
+        - field_people_type
         - links
 _core:
   default_config_hash: WOI8fKpLJDTEg6bXIJednEL7pAp6iAkutldE6veX2eE
@@ -61,52 +51,46 @@ bundle: people
 mode: full
 content:
   field_body_paragraph:
-    type: entity_reference_revisions_entity_view
+    weight: 2
     label: hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 3
+    type: entity_reference_revisions_entity_view
     region: right
-  field_media_image:
-    type: media_responsive_thumbnail
+  field_image:
+    weight: 0
     label: hidden
     settings:
-      responsive_image_style: drutopia_wide
+      responsive_image_style: tall
       image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings:
-      ds:
-        ds_limit: ''
-    weight: 0
-    region: header
+    third_party_settings: {  }
+    type: responsive_image
+    region: left
   field_people_position:
     type: string
+    weight: 1
     label: hidden
     settings:
       link_to_entity: false
     third_party_settings: {  }
-    weight: 2
-    region: left
+    region: right
   field_people_type:
-    type: entity_reference_label
+    weight: 3
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 1
-    region: left
+    type: entity_reference_label
+    region: right
   links:
-    settings: {  }
-    third_party_settings: {  }
     weight: 4
     region: right
+    settings: {  }
+    third_party_settings: {  }
 hidden:
   body: true
-  field_image: true
   field_meta_tags: true
   field_summary: true
-  field_topics: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.people.search_index.yml b/config/sync/core.entity_view_display.node.people.search_index.yml
index 640f0c0..637a313 100644
--- a/config/sync/core.entity_view_display.node.people.search_index.yml
+++ b/config/sync/core.entity_view_display.node.people.search_index.yml
@@ -6,16 +6,16 @@ dependencies:
     - core.entity_view_mode.node.search_index
     - field.field.node.people.body
     - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
+    - field.field.node.people.field_image
     - field.field.node.people.field_meta_tags
     - field.field.node.people.field_people_position
     - field.field.node.people.field_people_type
     - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
     - node.type.people
   module:
     - ds
     - entity_reference_revisions
+    - responsive_image
     - user
 third_party_settings:
   ds:
@@ -25,17 +25,17 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - field_people_position
         - field_body_paragraph
         - field_people_type
@@ -48,57 +48,38 @@ mode: search_index
 content:
   field_body_paragraph:
     type: entity_reference_revisions_entity_view
+    weight: 2
+    region: ds_content
     label: hidden
     settings:
       view_mode: default
       link: ''
     third_party_settings: {  }
-    weight: 2
-    region: ds_content
   field_image:
     type: responsive_image
+    weight: 0
+    region: ds_content
     label: hidden
     settings:
       responsive_image_style: ''
       image_link: ''
-      image_loading:
-        attribute: eager
     third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  field_media_image:
-    type: entity_reference_entity_view
-    label: hidden
-    settings:
-      view_mode: media_library
-      link: false
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
   field_people_position:
     type: string
+    weight: 1
+    region: ds_content
     label: hidden
     settings:
       link_to_entity: false
     third_party_settings: {  }
-    weight: 1
-    region: ds_content
   field_people_type:
     type: entity_reference_label
-    label: hidden
-    settings:
-      link: true
-    third_party_settings: {  }
     weight: 3
     region: ds_content
-  field_topics:
-    type: entity_reference_label
     label: hidden
     settings:
       link: true
     third_party_settings: {  }
-    weight: 5
-    region: content
 hidden:
   body: true
   field_meta_tags: true
diff --git a/config/sync/core.entity_view_display.node.people.simple_card.yml b/config/sync/core.entity_view_display.node.people.simple_card.yml
deleted file mode 100644
index 9d791e2..0000000
--- a/config/sync/core.entity_view_display.node.people.simple_card.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-uuid: 7f897890-b328-43a7-a959-935b1537649c
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.simple_card
-    - field.field.node.people.body
-    - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
-    - field.field.node.people.field_meta_tags
-    - field.field.node.people.field_people_position
-    - field.field.node.people.field_people_type
-    - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
-    - node.type.people
-    - responsive_image.styles.drutopia_card
-  module:
-    - media_responsive_thumbnail
-    - user
-_core:
-  default_config_hash: rIiXKZ3XTcCVwxhadn5a_e9GMBwCMjPgDyeUozFDTGA
-id: node.people.simple_card
-targetEntityType: node
-bundle: people
-mode: simple_card
-content:
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: drutopia_card
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  links:
-    settings: {  }
-    third_party_settings: {  }
-    weight: 100
-    region: content
-hidden:
-  body: true
-  field_body_paragraph: true
-  field_image: true
-  field_meta_tags: true
-  field_people_position: true
-  field_people_type: true
-  field_summary: true
-  field_topics: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.people.small_card.yml b/config/sync/core.entity_view_display.node.people.small_card.yml
index 07a126a..317983f 100644
--- a/config/sync/core.entity_view_display.node.people.small_card.yml
+++ b/config/sync/core.entity_view_display.node.people.small_card.yml
@@ -6,18 +6,17 @@ dependencies:
     - core.entity_view_mode.node.small_card
     - field.field.node.people.body
     - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
+    - field.field.node.people.field_image
     - field.field.node.people.field_meta_tags
     - field.field.node.people.field_people_position
     - field.field.node.people.field_people_type
     - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
     - node.type.people
-    - responsive_image.styles.tall
+    - responsive_image.styles.short
   module:
     - ds
     - field_group
-    - media_responsive_thumbnail
+    - responsive_image
     - user
 third_party_settings:
   ds:
@@ -27,18 +26,17 @@ third_party_settings:
       disable_css: false
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           ds_content: div
         outer_wrapper: div
         attributes: ''
         link_attribute: ''
         link_custom: ''
-        label: ''
+        classes:
+          layout_class: {  }
     regions:
       ds_content:
-        - field_media_image
+        - field_image
         - group_card_content
         - node_title
         - field_people_position
@@ -57,20 +55,20 @@ third_party_settings:
       children:
         - node_title
         - field_people_position
-      label: 'Card content'
       parent_name: ''
-      region: ds_content
       weight: 1
       format_type: html_element
       format_settings:
-        classes: ''
         id: ''
+        classes: ''
         element: div
         show_label: false
         label_element: h3
         attributes: ''
         effect: none
         speed: fast
+      label: 'Card content'
+      region: hidden
 _core:
   default_config_hash: kIyMVSoyGG6MWhBAT_yzOfFbVNCkw5JvfyuUvNvQlv4
 id: node.people.small_card
@@ -80,40 +78,26 @@ mode: small_card
 content:
   field_image:
     type: responsive_image
+    weight: 0
+    region: ds_content
     label: visually_hidden
     settings:
       responsive_image_style: short
       image_link: content
-      image_loading:
-        attribute: eager
     third_party_settings: {  }
-    weight: 0
-    region: ds_content
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: tall
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: ds_content
   field_people_position:
     type: string
-    label: hidden
+    weight: 2
+    region: ds_content
+    label: visually_hidden
     settings:
       link_to_entity: false
     third_party_settings: {  }
-    weight: 2
-    region: ds_content
 hidden:
   body: true
   field_body_paragraph: true
   field_meta_tags: true
   field_people_type: true
   field_summary: true
-  field_topics: true
   links: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.people.teaser.yml b/config/sync/core.entity_view_display.node.people.teaser.yml
index eb8fda6..a113d81 100644
--- a/config/sync/core.entity_view_display.node.people.teaser.yml
+++ b/config/sync/core.entity_view_display.node.people.teaser.yml
@@ -6,16 +6,16 @@ dependencies:
     - core.entity_view_mode.node.teaser
     - field.field.node.people.body
     - field.field.node.people.field_body_paragraph
-    - field.field.node.people.field_media_image
+    - field.field.node.people.field_image
     - field.field.node.people.field_meta_tags
     - field.field.node.people.field_people_position
     - field.field.node.people.field_people_type
     - field.field.node.people.field_summary
-    - field.field.node.people.field_topics
     - node.type.people
-    - responsive_image.styles.square
+    - responsive_image.styles.narrow
   module:
-    - media_responsive_thumbnail
+    - ds
+    - responsive_image
     - text
     - user
 third_party_settings:
@@ -26,10 +26,6 @@ third_party_settings:
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
-          left: {  }
-          right: {  }
         wrappers:
           left: div
           right: div
@@ -37,24 +33,25 @@ third_party_settings:
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       left:
-        - node_title
-        - field_people_position
         - field_image
       right:
+        - node_title
+        - field_people_position
         - field_summary
     fields:
       node_title:
         plugin_id: node_title
-        weight: 0
+        weight: 1
         label: hidden
         formatter: default
         settings:
           link: true
           wrapper: h2
           class: ''
-          exclude_node_title: '1'
 _core:
   default_config_hash: gCkJOlEwJlVhfOrZ9tg-TRlQAaIiOeJVH-yWVceuQgc
 id: node.people.teaser
@@ -64,48 +61,27 @@ mode: teaser
 content:
   field_image:
     type: responsive_image
-    label: hidden
+    weight: 0
+    label: visually_hidden
     settings:
       responsive_image_style: narrow
       image_link: content
-      image_loading:
-        attribute: eager
     third_party_settings: {  }
-    weight: 2
     region: left
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: square
-      image_link: content
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 1
-    region: content
   field_people_position:
     type: string
+    weight: 2
     label: hidden
     settings:
       link_to_entity: false
     third_party_settings: {  }
-    weight: 1
-    region: left
+    region: right
   field_summary:
     type: text_default
+    weight: 3
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 2
-    region: content
-  field_topics:
-    type: entity_reference_label
-    label: visually_hidden
-    settings:
-      link: true
-    third_party_settings: {  }
-    weight: 3
     region: right
 hidden:
   body: true
diff --git a/config/sync/core.entity_view_display.paragraph.drutopia_collection.default.yml b/config/sync/core.entity_view_display.paragraph.drutopia_collection.default.yml
deleted file mode 100644
index f9fa4aa..0000000
--- a/config/sync/core.entity_view_display.paragraph.drutopia_collection.default.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-uuid: fc7d50ef-86fa-4b81-ab81-92b9976a2612
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.field.paragraph.drutopia_collection.field_items
-    - paragraphs.paragraphs_type.drutopia_collection
-  module:
-    - ds
-_core:
-  default_config_hash: 3EjlY1iURckfqQFhAWC_mtd1guLuILhh2IlwrzRhzYI
-id: paragraph.drutopia_collection.default
-targetEntityType: paragraph
-bundle: drutopia_collection
-mode: default
-content:
-  field_items:
-    type: entity_reference_entity_view
-    label: hidden
-    settings:
-      view_mode: card
-      link: false
-    third_party_settings:
-      ds:
-        ds_limit: ''
-    weight: 0
-    region: content
-hidden:
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.faq.default.yml b/config/sync/core.entity_view_display.paragraph.faq.default.yml
index 6e035f3..a49bca9 100644
--- a/config/sync/core.entity_view_display.paragraph.faq.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.faq.default.yml
@@ -16,20 +16,20 @@ bundle: faq
 mode: default
 content:
   field_faq:
-    type: faqfield_accordion
-    label: hidden
+    weight: 0
+    label: visually_hidden
     settings:
       active: null
       heightStyle: auto
       collapsible: true
       event: click
       animate:
-        easing: linear
         duration: 200
+        easing: linear
     third_party_settings:
       ds:
         ds_limit: ''
-    weight: 0
+    type: faqfield_accordion
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.file.default.yml b/config/sync/core.entity_view_display.paragraph.file.default.yml
index 43cd436..6b0184c 100644
--- a/config/sync/core.entity_view_display.paragraph.file.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.file.default.yml
@@ -15,11 +15,11 @@ bundle: file
 mode: default
 content:
   field_file:
-    type: file_default
+    weight: 0
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 0
+    type: file_default
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.image.default.yml b/config/sync/core.entity_view_display.paragraph.image.default.yml
index a286a85..b4d128f 100644
--- a/config/sync/core.entity_view_display.paragraph.image.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.image.default.yml
@@ -4,11 +4,10 @@ status: true
 dependencies:
   config:
     - field.field.paragraph.image.field_image
-    - field.field.paragraph.image.field_media_image
     - image.style.large
     - paragraphs.paragraphs_type.image
   module:
-    - media
+    - image
 _core:
   default_config_hash: yvjwA4JR_adrMOhuQgqO4_4tAYWa_U0UIaGVvNoD22Q
 id: paragraph.image.default
@@ -17,27 +16,13 @@ bundle: image
 mode: default
 content:
   field_image:
+    weight: 0
+    label: hidden
+    settings:
+      image_style: large
+      image_link: ''
+    third_party_settings: {  }
     type: image
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: large
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-  field_media_image:
-    type: media_thumbnail
-    label: hidden
-    settings:
-      image_link: ''
-      image_style: large
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
     region: content
 hidden:
-  field_image: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.slide.columnar.yml b/config/sync/core.entity_view_display.paragraph.slide.columnar.yml
index 8bcf12e..ac13a80 100644
--- a/config/sync/core.entity_view_display.paragraph.slide.columnar.yml
+++ b/config/sync/core.entity_view_display.paragraph.slide.columnar.yml
@@ -6,12 +6,12 @@ dependencies:
     - core.entity_view_mode.paragraph.columnar
     - field.field.paragraph.slide.field_image
     - field.field.paragraph.slide.field_link
-    - field.field.paragraph.slide.field_media_image
     - field.field.paragraph.slide.field_text
     - paragraphs.paragraphs_type.slide
+    - responsive_image.styles.narrow
   module:
     - link
-    - media_responsive_thumbnail
+    - responsive_image
     - text
 _core:
   default_config_hash: XWaH1UK_qZbcAWI_iiaPUCuUXd_8bk4jANSjSMMZkMc
@@ -21,19 +21,17 @@ bundle: slide
 mode: columnar
 content:
   field_image:
-    type: responsive_image
+    weight: 0
     label: visually_hidden
     settings:
       responsive_image_style: narrow
       image_link: ''
-      image_loading:
-        attribute: eager
     third_party_settings: {  }
-    weight: 0
+    type: responsive_image
     region: content
   field_link:
-    type: link
-    label: hidden
+    weight: 1
+    label: visually_hidden
     settings:
       trim_length: 80
       url_only: false
@@ -41,26 +39,14 @@ content:
       rel: ''
       target: ''
     third_party_settings: {  }
-    weight: 1
-    region: content
-  field_media_image:
-    type: media_responsive_thumbnail
-    label: hidden
-    settings:
-      responsive_image_style: ''
-      image_link: ''
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
+    type: link
     region: content
   field_text:
-    type: text_default
-    label: hidden
+    weight: 2
+    label: visually_hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 2
+    type: text_default
     region: content
 hidden:
-  field_image: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.slide.default.yml b/config/sync/core.entity_view_display.paragraph.slide.default.yml
index 349e212..fce6e70 100644
--- a/config/sync/core.entity_view_display.paragraph.slide.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.slide.default.yml
@@ -5,10 +5,11 @@ dependencies:
   config:
     - field.field.paragraph.slide.field_image
     - field.field.paragraph.slide.field_link
-    - field.field.paragraph.slide.field_media_image
     - field.field.paragraph.slide.field_text
+    - image.style.focal_point_2600x1300
     - paragraphs.paragraphs_type.slide
   module:
+    - image
     - link
     - text
 _core:
@@ -18,9 +19,17 @@ targetEntityType: paragraph
 bundle: slide
 mode: default
 content:
+  field_image:
+    weight: 0
+    label: visually_hidden
+    settings:
+      image_style: focal_point_2600x1300
+    third_party_settings: {  }
+    type: image_url
+    region: content
   field_link:
-    type: link
-    label: hidden
+    weight: 2
+    label: visually_hidden
     settings:
       trim_length: 80
       url_only: false
@@ -28,24 +37,14 @@ content:
       rel: ''
       target: ''
     third_party_settings: {  }
-    weight: 2
-    region: content
-  field_media_image:
-    type: entity_reference_entity_view
-    label: hidden
-    settings:
-      view_mode: wide
-      link: false
-    third_party_settings: {  }
-    weight: 0
+    type: link
     region: content
   field_text:
-    type: text_default
-    label: hidden
+    weight: 1
+    label: visually_hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 1
+    type: text_default
     region: content
 hidden:
-  field_image: true
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.text.default.yml b/config/sync/core.entity_view_display.paragraph.text.default.yml
index 50908f0..e57b350 100644
--- a/config/sync/core.entity_view_display.paragraph.text.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.text.default.yml
@@ -15,11 +15,11 @@ bundle: text
 mode: default
 content:
   field_text:
-    type: text_default
+    weight: 0
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 0
+    type: text_default
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.update.default.yml b/config/sync/core.entity_view_display.paragraph.update.default.yml
index d386e61..138d150 100644
--- a/config/sync/core.entity_view_display.paragraph.update.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.update.default.yml
@@ -18,8 +18,6 @@ third_party_settings:
       disable_css: true
       entity_classes: all_classes
       settings:
-        classes:
-          layout_class: {  }
         wrappers:
           left: div
           right: div
@@ -27,6 +25,8 @@ third_party_settings:
         attributes: ''
         link_attribute: ''
         link_custom: ''
+        classes:
+          layout_class: {  }
     regions:
       left:
         - field_update_date
@@ -40,20 +40,20 @@ bundle: update
 mode: default
 content:
   field_text:
-    type: text_default
+    weight: 1
     label: hidden
     settings: {  }
     third_party_settings: {  }
-    weight: 1
+    type: text_default
     region: right
   field_update_date:
-    type: datetime_default
+    weight: 0
     label: hidden
     settings:
       timezone_override: ''
       format_type: month_day_year
     third_party_settings: {  }
-    weight: 0
+    type: datetime_default
     region: left
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.paragraph.video.default.yml b/config/sync/core.entity_view_display.paragraph.video.default.yml
index 26c79ce..665b784 100644
--- a/config/sync/core.entity_view_display.paragraph.video.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.video.default.yml
@@ -15,15 +15,15 @@ bundle: video
 mode: default
 content:
   field_video_embed:
-    type: video_embed_field_video
-    label: hidden
+    weight: 0
+    label: visually_hidden
     settings:
-      autoplay: false
       responsive: true
       width: 854
       height: 480
+      autoplay: false
     third_party_settings: {  }
-    weight: 0
+    type: video_embed_field_video
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.user.user.compact.yml b/config/sync/core.entity_view_display.user.user.compact.yml
deleted file mode 100644
index e1ef175..0000000
--- a/config/sync/core.entity_view_display.user.user.compact.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-uuid: 3ca878e7-5e75-42d0-98cc-e8160d7baf73
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.user.compact
-    - field.field.user.user.field_user_picture
-    - image.style.thumbnail
-  module:
-    - image
-    - user
-id: user.user.compact
-targetEntityType: user
-bundle: user
-mode: compact
-content:
-  field_user_picture:
-    type: image
-    label: hidden
-    settings:
-      image_link: content
-      image_style: thumbnail
-      image_loading:
-        attribute: lazy
-    third_party_settings: {  }
-    weight: 0
-    region: content
-hidden:
-  member_for: true
-  search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.user.user.default.yml b/config/sync/core.entity_view_display.user.user.default.yml
index 229d557..3c6e1cb 100644
--- a/config/sync/core.entity_view_display.user.user.default.yml
+++ b/config/sync/core.entity_view_display.user.user.default.yml
@@ -4,9 +4,8 @@ status: true
 dependencies:
   config:
     - field.field.user.user.field_user_picture
-    - responsive_image.styles.tall
   module:
-    - responsive_image
+    - image
     - user
 id: user.user.default
 targetEntityType: user
@@ -14,20 +13,18 @@ bundle: user
 mode: default
 content:
   field_user_picture:
-    type: responsive_image
-    label: hidden
-    settings:
-      responsive_image_style: tall
-      image_link: ''
-      image_loading:
-        attribute: eager
-    third_party_settings: {  }
     weight: 6
+    label: above
+    settings:
+      image_style: ''
+      image_link: ''
+    third_party_settings: {  }
+    type: image
     region: content
   member_for:
+    weight: 5
     settings: {  }
     third_party_settings: {  }
-    weight: 5
     region: content
 hidden:
   search_api_excerpt: true
diff --git a/config/sync/core.entity_view_mode.block.token.yml b/config/sync/core.entity_view_mode.block.token.yml
index a326470..ce84202 100644
--- a/config/sync/core.entity_view_mode.block.token.yml
+++ b/config/sync/core.entity_view_mode.block.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - block
 id: block.token
 label: Token
-description: ''
 targetEntityType: block
 cache: true
diff --git a/config/sync/core.entity_view_mode.block_content.columnar.yml b/config/sync/core.entity_view_mode.block_content.columnar.yml
index 34fe263..4faf87a 100644
--- a/config/sync/core.entity_view_mode.block_content.columnar.yml
+++ b/config/sync/core.entity_view_mode.block_content.columnar.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: QqgQqXTAzP3BZhl5XLw2R5EE1BsJTCwptXnMkjY8xZw
 id: block_content.columnar
 label: Columnar
-description: ''
 targetEntityType: block_content
 cache: true
diff --git a/config/sync/core.entity_view_mode.block_content.full.yml b/config/sync/core.entity_view_mode.block_content.full.yml
index ea3f834..1a63d9a 100644
--- a/config/sync/core.entity_view_mode.block_content.full.yml
+++ b/config/sync/core.entity_view_mode.block_content.full.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
 id: block_content.full
 label: Full
-description: ''
 targetEntityType: block_content
 cache: true
diff --git a/config/sync/core.entity_view_mode.block_content.token.yml b/config/sync/core.entity_view_mode.block_content.token.yml
index b264d8c..b24b3f7 100644
--- a/config/sync/core.entity_view_mode.block_content.token.yml
+++ b/config/sync/core.entity_view_mode.block_content.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - block_content
 id: block_content.token
 label: Token
-description: ''
 targetEntityType: block_content
 cache: true
diff --git a/config/sync/core.entity_view_mode.comment.full.yml b/config/sync/core.entity_view_mode.comment.full.yml
index ff2a480..836ba7e 100644
--- a/config/sync/core.entity_view_mode.comment.full.yml
+++ b/config/sync/core.entity_view_mode.comment.full.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA
 id: comment.full
 label: 'Full comment'
-description: ''
 targetEntityType: comment
 cache: true
diff --git a/config/sync/core.entity_view_mode.comment.token.yml b/config/sync/core.entity_view_mode.comment.token.yml
index 5036d47..05de093 100644
--- a/config/sync/core.entity_view_mode.comment.token.yml
+++ b/config/sync/core.entity_view_mode.comment.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - comment
 id: comment.token
 label: Token
-description: ''
 targetEntityType: comment
 cache: true
diff --git a/config/sync/core.entity_view_mode.contact_message.token.yml b/config/sync/core.entity_view_mode.contact_message.token.yml
index bb523a6..f642aba 100644
--- a/config/sync/core.entity_view_mode.contact_message.token.yml
+++ b/config/sync/core.entity_view_mode.contact_message.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - contact
 id: contact_message.token
 label: Token
-description: ''
 targetEntityType: contact_message
 cache: true
diff --git a/config/sync/core.entity_view_mode.crop.token.yml b/config/sync/core.entity_view_mode.crop.token.yml
index b5593f1..9ab146e 100644
--- a/config/sync/core.entity_view_mode.crop.token.yml
+++ b/config/sync/core.entity_view_mode.crop.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - crop
 id: crop.token
 label: Token
-description: ''
 targetEntityType: crop
 cache: true
diff --git a/config/sync/core.entity_view_mode.file.token.yml b/config/sync/core.entity_view_mode.file.token.yml
index 9d0d41c..76f5ff5 100644
--- a/config/sync/core.entity_view_mode.file.token.yml
+++ b/config/sync/core.entity_view_mode.file.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - file
 id: file.token
 label: Token
-description: ''
 targetEntityType: file
 cache: true
diff --git a/config/sync/core.entity_view_mode.media.full.yml b/config/sync/core.entity_view_mode.media.full.yml
deleted file mode 100644
index 520f618..0000000
--- a/config/sync/core.entity_view_mode.media.full.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 4bd4119e-c675-4feb-a5be-88f32dcdaee3
-langcode: en
-status: false
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: dTfAUHooYV0uOVPO3saGpgv-c5PppJXDwxvwRTJOycM
-id: media.full
-label: 'Full content'
-description: ''
-targetEntityType: media
-cache: true
diff --git a/config/sync/core.entity_view_mode.media.media_library.yml b/config/sync/core.entity_view_mode.media.media_library.yml
deleted file mode 100644
index 20220d5..0000000
--- a/config/sync/core.entity_view_mode.media.media_library.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: 31965379-30f2-4be4-b7fe-562164cf5110
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-  enforced:
-    module:
-      - media_library
-_core:
-  default_config_hash: 04_dAqpWYP1WmsXZ7IXJ7-yarCvNddD10EUkBDtIFy4
-id: media.media_library
-label: 'Media library'
-description: ''
-targetEntityType: media
-cache: true
diff --git a/config/sync/core.entity_view_mode.media.narrow.yml b/config/sync/core.entity_view_mode.media.narrow.yml
deleted file mode 100644
index 685ebf5..0000000
--- a/config/sync/core.entity_view_mode.media.narrow.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 509383a5-754c-4217-8b74-5da261ac25b4
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: FNlRm8KB_uxHKVIuv4uEA3sQbmGiBKQ_r9BbgH61Bp8
-id: media.narrow
-label: Narrow
-description: ''
-targetEntityType: media
-cache: true
diff --git a/config/sync/core.entity_view_mode.media.wide.yml b/config/sync/core.entity_view_mode.media.wide.yml
deleted file mode 100644
index d10682c..0000000
--- a/config/sync/core.entity_view_mode.media.wide.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 0fa15233-08f1-456e-ae37-8fc7cfabea42
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: kYbmr_oacOcMdwBxezolZwPMWVT7saq972LWg92nKZk
-id: media.wide
-label: Wide
-description: ''
-targetEntityType: media
-cache: true
diff --git a/config/sync/core.entity_view_mode.menu_link_content.token.yml b/config/sync/core.entity_view_mode.menu_link_content.token.yml
index 20327de..0c44db6 100644
--- a/config/sync/core.entity_view_mode.menu_link_content.token.yml
+++ b/config/sync/core.entity_view_mode.menu_link_content.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - menu_link_content
 id: menu_link_content.token
 label: Token
-description: ''
 targetEntityType: menu_link_content
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.box.yml b/config/sync/core.entity_view_mode.node.box.yml
index 59ae56a..a58a0f7 100644
--- a/config/sync/core.entity_view_mode.node.box.yml
+++ b/config/sync/core.entity_view_mode.node.box.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: 72C_fCp3_JLorvt4YLz5w9UeUuor4vY465KrhUFEBxM
 id: node.box
 label: Box
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.card.yml b/config/sync/core.entity_view_mode.node.card.yml
index b33ca2f..62e307b 100644
--- a/config/sync/core.entity_view_mode.node.card.yml
+++ b/config/sync/core.entity_view_mode.node.card.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: z6QSG0XSjPK_V4notuY8MaeIAO_QnwfvuH825TyLiHg
 id: node.card
 label: Card
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.full.yml b/config/sync/core.entity_view_mode.node.full.yml
index b211419..f5d1317 100644
--- a/config/sync/core.entity_view_mode.node.full.yml
+++ b/config/sync/core.entity_view_mode.node.full.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
 id: node.full
 label: 'Full content'
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.media.yml b/config/sync/core.entity_view_mode.node.media.yml
index ef7bc7d..89f9649 100644
--- a/config/sync/core.entity_view_mode.node.media.yml
+++ b/config/sync/core.entity_view_mode.node.media.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: zCJHOoAhXJBG7URAzV10-MNcnU7eNX9VTz4LvWS625I
 id: node.media
 label: 'Media object'
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.micro.yml b/config/sync/core.entity_view_mode.node.micro.yml
index 1a6c1f4..f4a044b 100644
--- a/config/sync/core.entity_view_mode.node.micro.yml
+++ b/config/sync/core.entity_view_mode.node.micro.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: REKLyEtFZOM1LgQ-KVSwvqkcwNlS7EvkWbdV12zinFw
 id: node.micro
 label: Micro
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.rss.yml b/config/sync/core.entity_view_mode.node.rss.yml
index 1ca374e..d87e559 100644
--- a/config/sync/core.entity_view_mode.node.rss.yml
+++ b/config/sync/core.entity_view_mode.node.rss.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
 id: node.rss
 label: RSS
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.search_index.yml b/config/sync/core.entity_view_mode.node.search_index.yml
index 88f368e..338fa2f 100644
--- a/config/sync/core.entity_view_mode.node.search_index.yml
+++ b/config/sync/core.entity_view_mode.node.search_index.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
 id: node.search_index
 label: 'Search index'
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.search_result.yml b/config/sync/core.entity_view_mode.node.search_result.yml
index dbe03e3..6502091 100644
--- a/config/sync/core.entity_view_mode.node.search_result.yml
+++ b/config/sync/core.entity_view_mode.node.search_result.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
 id: node.search_result
 label: 'Search result highlighting input'
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.simple_card.yml b/config/sync/core.entity_view_mode.node.simple_card.yml
index 97a9b99..9e67aec 100644
--- a/config/sync/core.entity_view_mode.node.simple_card.yml
+++ b/config/sync/core.entity_view_mode.node.simple_card.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: Crt6i6j8yM0YLdbxgS7BCzDtadVne43fhOy0WVkoB1o
 id: node.simple_card
 label: 'Simple card'
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.small_card.yml b/config/sync/core.entity_view_mode.node.small_card.yml
index f497a83..d9f60dd 100644
--- a/config/sync/core.entity_view_mode.node.small_card.yml
+++ b/config/sync/core.entity_view_mode.node.small_card.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: I68oVlHUQbsqRH-WCvFJRANAwaYqU1nl3ZHVstUkWkg
 id: node.small_card
 label: 'Small card'
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.teaser.yml b/config/sync/core.entity_view_mode.node.teaser.yml
index 296fd7c..833aff2 100644
--- a/config/sync/core.entity_view_mode.node.teaser.yml
+++ b/config/sync/core.entity_view_mode.node.teaser.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
 id: node.teaser
 label: Teaser
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.tile.yml b/config/sync/core.entity_view_mode.node.tile.yml
index 41fa1f6..fb0f60b 100644
--- a/config/sync/core.entity_view_mode.node.tile.yml
+++ b/config/sync/core.entity_view_mode.node.tile.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: nfevs6UIIvKBEKDLqjESVCx8H-owjCTzCHcyb398q3w
 id: node.tile
 label: Tile
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.node.token.yml b/config/sync/core.entity_view_mode.node.token.yml
index 83b7a37..ac98c24 100644
--- a/config/sync/core.entity_view_mode.node.token.yml
+++ b/config/sync/core.entity_view_mode.node.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - node
 id: node.token
 label: Token
-description: ''
 targetEntityType: node
 cache: true
diff --git a/config/sync/core.entity_view_mode.paragraph.columnar.yml b/config/sync/core.entity_view_mode.paragraph.columnar.yml
index a2b7c52..ab4e0ac 100644
--- a/config/sync/core.entity_view_mode.paragraph.columnar.yml
+++ b/config/sync/core.entity_view_mode.paragraph.columnar.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: hFG3sm7kkwkMu9ruyw2Ys51J421IyluY9DhnSsT6tMM
 id: paragraph.columnar
 label: Columnar
-description: ''
 targetEntityType: paragraph
 cache: true
diff --git a/config/sync/core.entity_view_mode.paragraph.preview.yml b/config/sync/core.entity_view_mode.paragraph.preview.yml
index 3d646f1..d9475d0 100644
--- a/config/sync/core.entity_view_mode.paragraph.preview.yml
+++ b/config/sync/core.entity_view_mode.paragraph.preview.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: fAWHL-ZbCR4HOdE03GYzQfiMYfEvVhTWNBHWcU_pa18
 id: paragraph.preview
 label: Preview
-description: ''
 targetEntityType: paragraph
 cache: true
diff --git a/config/sync/core.entity_view_mode.shortcut.token.yml b/config/sync/core.entity_view_mode.shortcut.token.yml
index 9b9b209..25906d6 100644
--- a/config/sync/core.entity_view_mode.shortcut.token.yml
+++ b/config/sync/core.entity_view_mode.shortcut.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - shortcut
 id: shortcut.token
 label: Token
-description: ''
 targetEntityType: shortcut
 cache: true
diff --git a/config/sync/core.entity_view_mode.taxonomy_term.full.yml b/config/sync/core.entity_view_mode.taxonomy_term.full.yml
index 9b220e6..a9055ec 100644
--- a/config/sync/core.entity_view_mode.taxonomy_term.full.yml
+++ b/config/sync/core.entity_view_mode.taxonomy_term.full.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE'
 id: taxonomy_term.full
 label: 'Taxonomy term page'
-description: ''
 targetEntityType: taxonomy_term
 cache: true
diff --git a/config/sync/core.entity_view_mode.taxonomy_term.token.yml b/config/sync/core.entity_view_mode.taxonomy_term.token.yml
index da87748..286f0ab 100644
--- a/config/sync/core.entity_view_mode.taxonomy_term.token.yml
+++ b/config/sync/core.entity_view_mode.taxonomy_term.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - taxonomy
 id: taxonomy_term.token
 label: Token
-description: ''
 targetEntityType: taxonomy_term
 cache: true
diff --git a/config/sync/core.entity_view_mode.tour.token.yml b/config/sync/core.entity_view_mode.tour.token.yml
index 9d75e29..1c45b0e 100644
--- a/config/sync/core.entity_view_mode.tour.token.yml
+++ b/config/sync/core.entity_view_mode.tour.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - tour
 id: tour.token
 label: Token
-description: ''
 targetEntityType: tour
 cache: true
diff --git a/config/sync/core.entity_view_mode.user.compact.yml b/config/sync/core.entity_view_mode.user.compact.yml
index bf15838..d141f96 100644
--- a/config/sync/core.entity_view_mode.user.compact.yml
+++ b/config/sync/core.entity_view_mode.user.compact.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
 id: user.compact
 label: Compact
-description: ''
 targetEntityType: user
 cache: true
diff --git a/config/sync/core.entity_view_mode.user.full.yml b/config/sync/core.entity_view_mode.user.full.yml
index 03bfc3e..8424a17 100644
--- a/config/sync/core.entity_view_mode.user.full.yml
+++ b/config/sync/core.entity_view_mode.user.full.yml
@@ -8,6 +8,5 @@ _core:
   default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
 id: user.full
 label: 'User account'
-description: ''
 targetEntityType: user
 cache: true
diff --git a/config/sync/core.entity_view_mode.user.token.yml b/config/sync/core.entity_view_mode.user.token.yml
index 1b3ae86..2ee0958 100644
--- a/config/sync/core.entity_view_mode.user.token.yml
+++ b/config/sync/core.entity_view_mode.user.token.yml
@@ -6,6 +6,5 @@ dependencies:
     - user
 id: user.token
 label: Token
-description: ''
 targetEntityType: user
 cache: true
diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml
index e165419..b9430f2 100644
--- a/config/sync/core.extension.yml
+++ b/config/sync/core.extension.yml
@@ -1,32 +1,22 @@
-_core:
-  default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
 module:
-  action: 0
+  admin_links_access_filter: 0
   admin_toolbar: 0
-  admin_toolbar_search: 0
   admin_toolbar_tools: 0
-  antibot: 0
   automated_cron: 0
-  autosave_form: 0
+  better_normalizers: 0
   block: 0
-  block_class: 0
   block_content: 0
   block_visibility_groups: 0
   breakpoint: 0
-  captcha: 0
-  charts: 0
-  charts_chartjs: 0
   checklistapi: 0
-  ckeditor5: 0
-  ckeditor_iframe: 0
-  classitup: 0
+  ckeditor: 0
+  color: 0
   comment: 0
   components: 0
   config: 0
   config_actions: 0
   config_actions_provider: 0
   config_distro: 0
-  config_distro_filter: 0
   config_filter: 0
   config_merge: 0
   config_normalizer: 0
@@ -35,9 +25,7 @@ module:
   config_sync: 0
   config_update: 0
   contact: 0
-  content_moderation: 0
   contextual: 0
-  convert_bundles: 0
   crop: 0
   cshs: 0
   ctools: 0
@@ -57,8 +45,6 @@ module:
   drutopia_site: 0
   dynamic_page_cache: 0
   editor: 0
-  editor_advanced_link: 0
-  entity_reference_override: 0
   entity_reference_revisions: 0
   exclude_node_title: 0
   facets: 0
@@ -69,65 +55,37 @@ module:
   field_ui: 0
   file: 0
   filter: 0
-  fitvids: 0
   fixed_block_content: 0
   focal_point: 0
-  footnotes: 0
   gdpr: 0
-  geo_citation: 0
   geo_upgrade: 0
-  givebutter: 0
-  google_analytics: 0
   hal: 0
   help: 0
   history: 0
-  honeypot: 0
   image: 0
-  image_widget_crop: 0
-  insert: 0
   layout_discovery: 0
   link: 0
-  linkit: 0
-  mailchimp: 0
-  media: 0
-  media_library: 0
-  media_library_media_modify: 0
-  media_responsive_thumbnail: 0
   menu_block: 0
   menu_ui: 0
   metatag: 0
-  metatag_open_graph: 0
-  metatag_twitter_cards: 0
   migrate: 0
   migrate_drupal: 0
   migrate_plus: 0
   migrate_source_csv: 0
   migrate_tools: 0
-  migration_helpers: 0
-  minimalhtml: 0
-  mysql: 0
   node: 0
-  noreferrer: 0
   options: 0
   page_cache: 0
   path: 0
-  path_alias: 0
-  phpass: 0
-  plausible: 0
+  quickedit: 0
   rdf: 0
   redirect: 0
   responsive_image: 0
-  riddler: 0
-  role_delegation: 0
-  scn: 0
   search_api: 0
   search_api_db: 0
   serialization: 0
   shortcut: 0
   similarterms: 0
-  skins: 0
-  statistics: 0
-  subpathauto: 0
   subprofiles: 0
   system: 0
   taxonomy: 0
@@ -138,30 +96,22 @@ module:
   update: 0
   user: 0
   video_embed_field: 0
-  views_plain: 0
   views_ui: 0
-  visitors: 0
-  visitors_geoip: 0
-  workflow_buttons: 0
-  workflow_buttons_trash: 0
-  workflows: 0
-  wysiwyg_linebreaks: 0
   ds: 1
-  menu_admin_per_menu: 1
   menu_link_content: 1
   pathauto: 1
-  comment_notify: 10
   views: 10
   paragraphs: 11
   config_provider: 100
-  twigsuggest: 100
-  empty_page: 1000
   minimal: 1000
 theme:
   stable: 0
+  classy: 0
+  seven: 0
   bulma: 0
   octavia: 0
   geofresco: 0
   claro: 0
-  stable9: 0
 profile: minimal
+_core:
+  default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
diff --git a/config/sync/core.menu.static_menu_link_overrides.yml b/config/sync/core.menu.static_menu_link_overrides.yml
index 8d91189..8624258 100644
--- a/config/sync/core.menu.static_menu_link_overrides.yml
+++ b/config/sync/core.menu.static_menu_link_overrides.yml
@@ -1,9 +1,9 @@
-_core:
-  default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
 definitions:
   contact__site_page:
+    enabled: true
     menu_name: footer
     parent: ''
-    weight: -50
+    weight: 0
     expanded: false
-    enabled: true
+_core:
+  default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
diff --git a/config/sync/crop.settings.yml b/config/sync/crop.settings.yml
index 2fd805c..2fd1693 100644
--- a/config/sync/crop.settings.yml
+++ b/config/sync/crop.settings.yml
@@ -1,3 +1,3 @@
+flush_derivative_images: true
 _core:
   default_config_hash: 7eGOTSG7bRv_AAqu-Ls8CSnob7zPF1ez-lD2OLZgBHs
-flush_derivative_images: true
diff --git a/config/sync/crop.type.extra_wide_rectangle.yml b/config/sync/crop.type.extra_wide_rectangle.yml
deleted file mode 100644
index 6fb66df..0000000
--- a/config/sync/crop.type.extra_wide_rectangle.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-uuid: 66c69982-be10-4359-9a7d-ff3a2e04d85d
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: '-gaXv1-FB193LGMSMf1VVMvjs_aPtJgC9W9k3TsyMos'
-label: 'Extra-wide rectangle'
-id: extra_wide_rectangle
-description: 'Ten units wide to five units tall.'
-aspect_ratio: '2:1'
-soft_limit_width: 600
-soft_limit_height: 300
-hard_limit_width: 100
-hard_limit_height: 50
diff --git a/config/sync/crop.type.square.yml b/config/sync/crop.type.square.yml
deleted file mode 100644
index a38442c..0000000
--- a/config/sync/crop.type.square.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-uuid: 79e894cf-1f18-4d2e-bbef-d96a5bd037f5
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: tDFmNCLELYpI263QvSxywmus0IGl_7APIIuRwTJrSJE
-label: Square
-id: square
-description: ''
-aspect_ratio: '1:1'
-soft_limit_width: 300
-soft_limit_height: 300
-hard_limit_width: 100
-hard_limit_height: 100
diff --git a/config/sync/crop.type.wide_rectangle.yml b/config/sync/crop.type.wide_rectangle.yml
deleted file mode 100644
index 9ccecd3..0000000
--- a/config/sync/crop.type.wide_rectangle.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-uuid: d20ca70a-d42d-45b3-ba28-830409018024
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: dL4rMqEd9txKq-rSlwyG8SC45WD7TLoAlsYsQe75B_4
-label: 'Wide rectangle'
-id: wide_rectangle
-description: 'Ten units wide to six units tall.'
-aspect_ratio: '5:3'
-soft_limit_width: 1000
-soft_limit_height: 600
-hard_limit_width: 100
-hard_limit_height: 60
diff --git a/config/sync/dblog.settings.yml b/config/sync/dblog.settings.yml
index fbd17ea..cf06e3f 100644
--- a/config/sync/dblog.settings.yml
+++ b/config/sync/dblog.settings.yml
@@ -1,3 +1,3 @@
+row_limit: 1000
 _core:
   default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
-row_limit: 1000
diff --git a/config/sync/ds.settings.yml b/config/sync/ds.settings.yml
index 69ef101..d1e4b0b 100644
--- a/config/sync/ds.settings.yml
+++ b/config/sync/ds.settings.yml
@@ -1,22 +1,10 @@
-_core:
-  default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY
 disabled: false
 field_template: false
+ft-default: default
+ft-show-colon: false
 classes:
-  region:
-    - is-article
-    - is-blog
-    - is-collection
-    - is-gleaning
+  region: {  }
   field: {  }
 use_field_names: true
-ft_bc: true
-exclude_layout_builder_blocks_on_block_field: false
-ft_expert_prefix_suffix_textarea: false
-ft_default: default
-ft_show_colon: false
-ft_layout_builder: null
-exclude_ds_layout_layout_builder: false
-layout_icon_image_bc: true
-ft_default_bc: true
-layout_suggestion_bc: true
+_core:
+  default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY
diff --git a/config/sync/editor.editor.basic_html.yml b/config/sync/editor.editor.basic_html.yml
index 9717ba8..482a71e 100644
--- a/config/sync/editor.editor.basic_html.yml
+++ b/config/sync/editor.editor.basic_html.yml
@@ -5,70 +5,51 @@ dependencies:
   config:
     - filter.format.basic_html
   module:
-    - ckeditor5
+    - ckeditor
 _core:
   default_config_hash: AqlPmO16LvJI4D0Ih6u4GFQIzqr5OnLgAUSjcUGWk2g
 format: basic_html
-editor: ckeditor5
+editor: ckeditor
 settings:
   toolbar:
-    items:
-      - bold
-      - italic
-      - '|'
-      - link
-      - '|'
-      - bulletedList
-      - numberedList
-      - '|'
-      - blockQuote
-      - drupalInsertImage
-      - '|'
-      - heading
-      - code
-      - '|'
-      - sourceEditing
+    rows:
+      -
+        -
+          name: Formatting
+          items:
+            - Bold
+            - Italic
+        -
+          name: Linking
+          items:
+            - DrupalLink
+            - DrupalUnlink
+        -
+          name: Lists
+          items:
+            - BulletedList
+            - NumberedList
+        -
+          name: Media
+          items:
+            - Blockquote
+            - DrupalImage
+        -
+          name: 'Block Formatting'
+          items:
+            - Format
+        -
+          name: Tools
+          items:
+            - Source
   plugins:
-    ckeditor5_heading:
-      enabled_headings:
-        - heading2
-        - heading3
-        - heading4
-        - heading5
-        - heading6
-    ckeditor5_imageResize:
-      allow_resize: true
-    ckeditor5_list:
-      properties:
-        reversed: false
-        startIndex: true
-      multiBlock: true
-    ckeditor5_sourceEditing:
-      allowed_tags:
-        - '<cite>'
-        - '<dl>'
-        - '<dt>'
-        - '<dd>'
-        - '<a hreflang>'
-        - '<blockquote cite>'
-        - '<ul type>'
-        - '<ol type>'
-        - '<h2 id>'
-        - '<h3 id>'
-        - '<h4 id>'
-        - '<h5 id>'
-        - '<h6 id>'
-    editor_advanced_link_link:
-      enabled_attributes: {  }
-    linkit_extension:
-      linkit_enabled: false
-    wysiwyg_linebreaks_extension:
-      method: force
+    stylescombo:
+      styles: ''
 image_upload:
   status: true
   scheme: public
   directory: inline-images
-  max_size: null
+  max_size: ''
   max_dimensions:
-    width: null
-    height: null
+    width: 0
+    height: 0
diff --git a/config/sync/editor.editor.footnote.yml b/config/sync/editor.editor.footnote.yml
deleted file mode 100644
index c94cb82..0000000
--- a/config/sync/editor.editor.footnote.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-status: true
-dependencies:
-  config:
-    - filter.format.footnote
-  module:
-    - ckeditor5
-format: footnote
-editor: ckeditor5
-settings:
-  toolbar:
-    items:
-      - bold
-      - italic
-      - link
-image_upload: {  }
diff --git a/config/sync/editor.editor.full_html.yml b/config/sync/editor.editor.full_html.yml
index 0420352..07ba896 100644
--- a/config/sync/editor.editor.full_html.yml
+++ b/config/sync/editor.editor.full_html.yml
@@ -1,74 +1,63 @@
-uuid: 041f5b78-6d48-495d-8e78-6cc728679a20
+uuid: a5f0abfb-3948-4dc0-b8d6-f790acee0227
 langcode: en
 status: true
 dependencies:
   config:
     - filter.format.full_html
   module:
-    - ckeditor5
+    - ckeditor
+_core:
+  default_config_hash: 967ijj7p6i7rwrYl7r08WQFeCY_c23YAh0h8u-w_CXM
 format: full_html
-editor: ckeditor5
+editor: ckeditor
 settings:
   toolbar:
-    items:
-      - heading
-      - bold
-      - italic
-      - underline
-      - superscript
-      - subscript
-      - removeFormat
-      - alignment
-      - footnotes
-      - link
-      - bulletedList
-      - numberedList
-      - blockQuote
-      - drupalMedia
-      - insertTable
-      - iframeEmbed
-      - horizontalLine
-      - showBlocks
-      - sourceEditing
+    rows:
+      -
+        -
+          name: Formatting
+          items:
+            - Bold
+            - Italic
+            - Strike
+            - Superscript
+            - Subscript
+            - '-'
+            - RemoveFormat
+        -
+          name: Linking
+          items:
+            - DrupalLink
+            - DrupalUnlink
+        -
+          name: Lists
+          items:
+            - BulletedList
+            - NumberedList
+        -
+          name: Media
+          items:
+            - Blockquote
+            - DrupalImage
+            - Table
+            - HorizontalRule
+        -
+          name: 'Block Formatting'
+          items:
+            - Format
+        -
+          name: Tools
+          items:
+            - ShowBlocks
+            - Source
   plugins:
-    ckeditor5_alignment:
-      enabled_alignments:
-        - center
-        - left
-        - right
-    ckeditor5_heading:
-      enabled_headings:
-        - heading2
-        - heading3
-        - heading4
-        - heading5
-        - heading6
-    ckeditor5_list:
-      properties:
-        reversed: true
-        startIndex: true
-      multiBlock: true
-    ckeditor5_sourceEditing:
-      allowed_tags: {  }
-    ckeditor_iframe_embed_iframeembed:
-      enabled_optional_attributes:
-        - height
-        - width
-        - name
-        - tabindex
-        - title
-        - allowfullscreen
-    editor_advanced_link_link:
-      enabled_attributes:
-        - aria-label
-        - target
-        - title
-    linkit_extension:
-      linkit_enabled: true
-      linkit_profile: default
-    media_media:
-      allow_view_mode_override: false
-    wysiwyg_linebreaks_extension:
-      method: force
+    stylescombo:
+      styles: ''
 image_upload:
-  status: false
+  status: true
+  scheme: public
+  directory: inline-images
+  max_size: ''
+  max_dimensions:
+    width: 0
+    height: 0
diff --git a/config/sync/editor.editor.minimalhtml.yml b/config/sync/editor.editor.minimalhtml.yml
deleted file mode 100644
index 1806fd5..0000000
--- a/config/sync/editor.editor.minimalhtml.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-uuid: 544510b1-f241-4456-83a3-f602c111c46e
-langcode: en
-status: true
-dependencies:
-  config:
-    - filter.format.minimalhtml
-  module:
-    - ckeditor5
-format: minimalhtml
-editor: ckeditor5
-settings:
-  toolbar:
-    items:
-      - bold
-      - italic
-      - '|'
-      - link
-      - '|'
-      - bulletedList
-      - numberedList
-      - '|'
-      - blockQuote
-      - '|'
-      - sourceEditing
-      - '|'
-      - code
-  plugins:
-    ckeditor5_list:
-      properties:
-        reversed: false
-        startIndex: true
-      multiBlock: true
-    ckeditor5_sourceEditing:
-      allowed_tags:
-        - '<cite>'
-        - '<dl>'
-        - '<dt>'
-        - '<dd>'
-        - '<abbr title>'
-        - '<a hreflang>'
-        - '<blockquote cite>'
-        - '<ul type>'
-        - '<ol type>'
-    editor_advanced_link_link:
-      enabled_attributes: {  }
-    linkit_extension:
-      linkit_enabled: false
-    wysiwyg_linebreaks_extension:
-      method: force
-image_upload:
-  status: false
diff --git a/config/sync/empty_page.settings.yml b/config/sync/empty_page.settings.yml
deleted file mode 100644
index d3735b0..0000000
--- a/config/sync/empty_page.settings.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-new_id: 2
-_core:
-  default_config_hash: 1qKVk03zhLAZj-W36dakmXWDO3mx28TRgx9iDzHpqMs
-callback_1:
-  created: 1567338567
-  cid: '1'
-  updated: 1567339101
-  path: home
-  page_title: 'GEO Home'
diff --git a/config/sync/exclude_node_title.settings.yml b/config/sync/exclude_node_title.settings.yml
index f173157..3bf8f41 100644
--- a/config/sync/exclude_node_title.settings.yml
+++ b/config/sync/exclude_node_title.settings.yml
@@ -1,9 +1,8 @@
-_core:
-  default_config_hash: tFcyNjovmdPA1ZVm7j2Iymt809j-r2F5uSDJAOI_QV8
 nid_list: {  }
 translation_sync: true
 search: false
-type: remove
+_core:
+  default_config_hash: tFcyNjovmdPA1ZVm7j2Iymt809j-r2F5uSDJAOI_QV8
 content_types:
   landing_page: user
 content_type_modes:
diff --git a/config/sync/facets.facet.article_topics.yml b/config/sync/facets.facet.article_topics.yml
index 9079e3e..01b9b01 100644
--- a/config/sync/facets.facet.article_topics.yml
+++ b/config/sync/facets.facet.article_topics.yml
@@ -11,23 +11,12 @@ _core:
   default_config_hash: dTU5sKNgp-tIPvV40sH74giQMQUzlrDLl7dYn91JmVc
 id: article_topics
 name: 'Article Topics'
+url_alias: article_topics
 weight: 0
 min_count: 1
-missing: false
-missing_label: others
-url_alias: article_topics
-facet_source_id: 'search_api:views_page__article__page_listing'
+show_only_one_result: false
 field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
-  type: taxonomy
-  config: {  }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__article__page_listing'
 widget:
   type: checkbox
   config:
@@ -36,11 +25,13 @@ widget:
     soft_limit_settings:
       show_less_label: 'Show fewer'
       show_more_label: 'Show more'
-empty_behavior:
-  behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
 only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
 processor_configs:
   display_value_widget_order:
     processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
       pre_query: -10
       build: -10
     settings: {  }
+empty_behavior:
+  behavior: none
+show_title: null
diff --git a/config/sync/facets.facet.article_type.yml b/config/sync/facets.facet.article_type.yml
index 9ec3d89..4e35ea8 100644
--- a/config/sync/facets.facet.article_type.yml
+++ b/config/sync/facets.facet.article_type.yml
@@ -11,23 +11,12 @@ _core:
   default_config_hash: sO7FteotwDBR81JcEyIL4pVftUp0-K2mK3_X0A6csS8
 id: article_type
 name: 'Article Type'
+url_alias: article_type
 weight: 0
 min_count: 1
-missing: false
-missing_label: others
-url_alias: article_type
-facet_source_id: 'search_api:views_page__article__page_listing'
+show_only_one_result: false
 field_identifier: field_article_type
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
-  type: taxonomy
-  config: {  }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__article__page_listing'
 widget:
   type: checkbox
   config:
@@ -36,11 +25,13 @@ widget:
     soft_limit_settings:
       show_less_label: 'Show fewer'
       show_more_label: 'Show more'
-empty_behavior:
-  behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
 only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
 processor_configs:
   display_value_widget_order:
     processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
       pre_query: -10
       build: -10
     settings: {  }
+empty_behavior:
+  behavior: none
+show_title: null
diff --git a/config/sync/facets.facet.blog_topics.yml b/config/sync/facets.facet.blog_topics.yml
index 4c76a23..7d59d4f 100644
--- a/config/sync/facets.facet.blog_topics.yml
+++ b/config/sync/facets.facet.blog_topics.yml
@@ -11,23 +11,12 @@ _core:
   default_config_hash: LF3dKWzK-V3XRA53prLyLAWwNxKkERhljA_HCNedonI
 id: blog_topics
 name: 'Blog Topics'
+url_alias: blog_topics
 weight: 0
 min_count: 1
-missing: false
-missing_label: others
-url_alias: blog_topics
-facet_source_id: 'search_api:views_page__blog__page_listing'
+show_only_one_result: false
 field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
-  type: taxonomy
-  config: {  }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__blog__page_listing'
 widget:
   type: checkbox
   config:
@@ -36,11 +25,13 @@ widget:
     soft_limit_settings:
       show_less_label: 'Show fewer'
       show_more_label: 'Show more'
-empty_behavior:
-  behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
 only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
 processor_configs:
   display_value_widget_order:
     processor_id: display_value_widget_order
@@ -65,3 +56,6 @@ processor_configs:
       pre_query: -10
       build: -10
     settings: {  }
+empty_behavior:
+  behavior: none
+show_title: null
diff --git a/config/sync/facets.facet.search_content_type.yml b/config/sync/facets.facet.search_content_type.yml
index 08f0c5e..6bcd521 100644
--- a/config/sync/facets.facet.search_content_type.yml
+++ b/config/sync/facets.facet.search_content_type.yml
@@ -11,23 +11,12 @@ _core:
   default_config_hash: k1PFdr_CIrIeS0KGckN85rrs-Pyl4WR64yyTgJ3VNj0
 id: search_content_type
 name: 'Search content type'
+url_alias: search_content_type
 weight: 0
 min_count: 1
-missing: false
-missing_label: others
-url_alias: search_content_type
-facet_source_id: 'search_api:views_page__search__page_1'
+show_only_one_result: false
 field_identifier: type
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
-  type: taxonomy
-  config: {  }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__search__page_1'
 widget:
   type: checkbox
   config:
@@ -36,11 +25,13 @@ widget:
     soft_limit_settings:
       show_less_label: 'Show fewer'
       show_more_label: 'Show more'
-empty_behavior:
-  behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
 only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: false
 processor_configs:
   display_value_widget_order:
     processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
       pre_query: 50
       build: 15
     settings: {  }
+empty_behavior:
+  behavior: none
+show_title: false
diff --git a/config/sync/facets.facet.search_date.yml b/config/sync/facets.facet.search_date.yml
index a88d9c4..b3dbc97 100644
--- a/config/sync/facets.facet.search_date.yml
+++ b/config/sync/facets.facet.search_date.yml
@@ -11,23 +11,12 @@ _core:
   default_config_hash: syu_tLhMKbEI3qeAzecwvNMGieJLpJSIm7B_x7Kvtd0
 id: search_date
 name: 'Search date'
+url_alias: search_date
 weight: 0
 min_count: 1
-missing: false
-missing_label: others
-url_alias: search_date
-facet_source_id: 'search_api:views_page__search__page_1'
+show_only_one_result: false
 field_identifier: created
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
-  type: taxonomy
-  config: {  }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__search__page_1'
 widget:
   type: checkbox
   config:
@@ -36,11 +25,13 @@ widget:
     soft_limit_settings:
       show_less_label: 'Show fewer'
       show_more_label: 'Show more'
-empty_behavior:
-  behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
 only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: false
 processor_configs:
   date_item:
     processor_id: date_item
@@ -62,3 +53,6 @@ processor_configs:
       pre_query: 50
       build: 15
     settings: {  }
+empty_behavior:
+  behavior: none
+show_title: false
diff --git a/config/sync/facets.facet.search_topics.yml b/config/sync/facets.facet.search_topics.yml
index a900e10..a0e638b 100644
--- a/config/sync/facets.facet.search_topics.yml
+++ b/config/sync/facets.facet.search_topics.yml
@@ -11,23 +11,12 @@ _core:
   default_config_hash: dOZjHLs_u2M53WmjpSKWztyhsfl3i8mRHHxB430TWrE
 id: search_topics
 name: 'Search topics'
+url_alias: search_topics
 weight: 0
 min_count: 1
-missing: false
-missing_label: others
-url_alias: search_topics
-facet_source_id: 'search_api:views_page__search__page_1'
+show_only_one_result: false
 field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
-  type: taxonomy
-  config: {  }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__search__page_1'
 widget:
   type: checkbox
   config:
@@ -36,11 +25,13 @@ widget:
     soft_limit_settings:
       show_less_label: 'Show fewer'
       show_more_label: 'Show more'
-empty_behavior:
-  behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
 only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: false
 processor_configs:
   display_value_widget_order:
     processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
       pre_query: 50
       build: 15
     settings: {  }
+empty_behavior:
+  behavior: none
+show_title: false
diff --git a/config/sync/field.field.block_content.basic.body.yml b/config/sync/field.field.block_content.basic.body.yml
new file mode 100644
index 0000000..3d0bb96
--- /dev/null
+++ b/config/sync/field.field.block_content.basic.body.yml
@@ -0,0 +1,24 @@
+uuid: b11eabd2-ca5b-42e3-8c5f-e016707dd5bb
+langcode: en
+status: true
+dependencies:
+  config:
+    - block_content.type.basic
+    - field.storage.block_content.body
+  module:
+    - text
+_core:
+  default_config_hash: R__6wc-rMfFMO8d7jcgqnqiA92j8spKhcc5MiqecrMc
+id: block_content.basic.body
+field_name: body
+entity_type: block_content
+bundle: basic
+label: Body
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  display_summary: false
+field_type: text_with_summary
diff --git a/config/sync/field.field.block_content.slide.field_slide.yml b/config/sync/field.field.block_content.slide.field_slide.yml
index 41b1739..72fb126 100644
--- a/config/sync/field.field.block_content.slide.field_slide.yml
+++ b/config/sync/field.field.block_content.slide.field_slide.yml
@@ -33,8 +33,8 @@ settings:
         weight: 7
         enabled: false
       slide:
-        weight: 8
         enabled: true
+        weight: 8
       text:
         weight: 9
         enabled: false
diff --git a/config/sync/field.field.media.audio.field_media_audio_file.yml b/config/sync/field.field.media.audio.field_media_audio_file.yml
deleted file mode 100644
index 8e5f565..0000000
--- a/config/sync/field.field.media.audio.field_media_audio_file.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-uuid: e323a920-7673-4095-ae23-9ecbe6ea92e7
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.media.field_media_audio_file
-    - media.type.audio
-  module:
-    - file
-_core:
-  default_config_hash: UlZPIbHcLyNqGY5bvydCTijGcKDmwn4Fo8oYZT85wlk
-id: media.audio.field_media_audio_file
-field_name: field_media_audio_file
-entity_type: media
-bundle: audio
-label: 'Audio file'
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:file'
-  handler_settings: {  }
-  file_directory: '[date:custom:Y]-[date:custom:m]'
-  file_extensions: 'mp3 wav aac'
-  max_filesize: ''
-  description_field: false
-field_type: file
diff --git a/config/sync/field.field.media.document.field_media_document.yml b/config/sync/field.field.media.document.field_media_document.yml
deleted file mode 100644
index aa41f98..0000000
--- a/config/sync/field.field.media.document.field_media_document.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-uuid: 0fabcad7-4cfd-4136-892d-e75f9109e8ca
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.media.field_media_document
-    - media.type.document
-  module:
-    - file
-  enforced:
-    module:
-      - media
-_core:
-  default_config_hash: DY5HtJTxUjFRGU_PaY6ifo2nhR-nAZ0y0s6kLmUbv5g
-id: media.document.field_media_document
-field_name: field_media_document
-entity_type: media
-bundle: document
-label: Document
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:file'
-  handler_settings: {  }
-  file_directory: '[date:custom:Y]-[date:custom:m]'
-  file_extensions: 'txt rtf doc docx ppt pptx xls xlsx pdf odf odg odp ods odt fodt fods fodp fodg key numbers pages'
-  max_filesize: ''
-  description_field: false
-field_type: file
diff --git a/config/sync/field.field.media.image.field_media_image.yml b/config/sync/field.field.media.image.field_media_image.yml
deleted file mode 100644
index ed692dc..0000000
--- a/config/sync/field.field.media.image.field_media_image.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-uuid: 4414cd4e-d656-40e7-932e-7225642adaac
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.media.field_media_image
-    - media.type.image
-  module:
-    - image
-  enforced:
-    module:
-      - media
-_core:
-  default_config_hash: G50TJOA95bCLfsZZR93jMEuPCFNOxeEklwM_co0wqdU
-id: media.image.field_media_image
-field_name: field_media_image
-entity_type: media
-bundle: image
-label: Image
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:file'
-  handler_settings: {  }
-  file_directory: '[date:custom:Y]-[date:custom:m]'
-  file_extensions: 'png gif jpg jpeg webp'
-  max_filesize: ''
-  max_resolution: ''
-  min_resolution: ''
-  alt_field: true
-  alt_field_required: true
-  title_field: false
-  title_field_required: false
-  default_image:
-    uuid: ''
-    alt: ''
-    title: ''
-    width: null
-    height: null
-field_type: image
diff --git a/config/sync/field.field.media.remote_video.field_media_oembed_video.yml b/config/sync/field.field.media.remote_video.field_media_oembed_video.yml
deleted file mode 100644
index 32ff5ac..0000000
--- a/config/sync/field.field.media.remote_video.field_media_oembed_video.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: 3e4e6c59-b1da-495f-bf1d-02d0a80f3323
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.media.field_media_oembed_video
-    - media.type.remote_video
-_core:
-  default_config_hash: Eo4HHenV5iZat_kEWgr_wydD3TgwURMCzwt-7qIEyoM
-id: media.remote_video.field_media_oembed_video
-field_name: field_media_oembed_video
-entity_type: media
-bundle: remote_video
-label: 'Video URL'
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings: {  }
-field_type: string
diff --git a/config/sync/field.field.media.video.field_media_video_file.yml b/config/sync/field.field.media.video.field_media_video_file.yml
deleted file mode 100644
index 041c00d..0000000
--- a/config/sync/field.field.media.video.field_media_video_file.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-uuid: 25e762b6-e829-49ea-8f8d-11c01de24913
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.media.field_media_video_file
-    - media.type.video
-  module:
-    - file
-_core:
-  default_config_hash: 6kMMjmk2r_csGQ52qI9BUaO8r_oAzNLbxlclaj-JlDQ
-id: media.video.field_media_video_file
-field_name: field_media_video_file
-entity_type: media
-bundle: video
-label: 'Video file'
-description: ''
-required: true
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:file'
-  handler_settings: {  }
-  file_directory: '[date:custom:Y]-[date:custom:m]'
-  file_extensions: mp4
-  max_filesize: ''
-  description_field: false
-field_type: file
diff --git a/config/sync/field.field.node.article.body.yml b/config/sync/field.field.node.article.body.yml
index 7021914..e258337 100644
--- a/config/sync/field.field.node.article.body.yml
+++ b/config/sync/field.field.node.article.body.yml
@@ -21,6 +21,4 @@ default_value: {  }
 default_value_callback: ''
 settings:
   display_summary: true
-  required_summary: false
-  allowed_formats: {  }
 field_type: text_with_summary
diff --git a/config/sync/field.field.node.article.comment.yml b/config/sync/field.field.node.article.comment.yml
index f17c484..19224af 100644
--- a/config/sync/field.field.node.article.comment.yml
+++ b/config/sync/field.field.node.article.comment.yml
@@ -27,9 +27,9 @@ default_value:
     comment_count: 0
 default_value_callback: ''
 settings:
-  default_mode: 0
+  default_mode: 1
   per_page: 50
   anonymous: 1
-  form_location: true
+  form_location: false
   preview: 0
 field_type: comment
diff --git a/config/sync/field.field.node.article.field_biography.yml b/config/sync/field.field.node.article.field_biography.yml
deleted file mode 100644
index b986671..0000000
--- a/config/sync/field.field.node.article.field_biography.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: e3e1e0cd-2744-49d0-8486-bb4dd67ce521
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_biography
-    - node.type.article
-    - node.type.people
-  module:
-    - entity_reference_override
-id: node.article.field_biography
-field_name: field_biography
-entity_type: node
-bundle: article
-label: Biography
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:node'
-  handler_settings:
-    target_bundles:
-      people: people
-    sort:
-      field: changed
-      direction: DESC
-    auto_create: false
-    auto_create_bundle: ''
-  override_label: 'Short current or topical bio supplement'
-  override_format: minimalhtml
-field_type: entity_reference_override
diff --git a/config/sync/field.field.node.article.field_body_paragraph.yml b/config/sync/field.field.node.article.field_body_paragraph.yml
index 1805e3f..6421a6a 100644
--- a/config/sync/field.field.node.article.field_body_paragraph.yml
+++ b/config/sync/field.field.node.article.field_body_paragraph.yml
@@ -5,6 +5,7 @@ dependencies:
   config:
     - field.storage.node.field_body_paragraph
     - node.type.article
+    - paragraphs.paragraphs_type.faq
     - paragraphs.paragraphs_type.file
     - paragraphs.paragraphs_type.image
     - paragraphs.paragraphs_type.text
@@ -26,35 +27,33 @@ default_value_callback: ''
 settings:
   handler: 'default:paragraph'
   handler_settings:
+    negate: 0
     target_bundles:
       text: text
       image: image
       file: file
       video: video
-    negate: 0
+      faq: faq
     target_bundles_drag_drop:
-      drutopia_collection:
-        weight: 9
-        enabled: false
-      faq:
-        weight: -11
-        enabled: false
-      file:
-        weight: -13
+      text:
         enabled: true
+        weight: -15
       image:
-        weight: -14
         enabled: true
+        weight: -14
+      file:
+        enabled: true
+        weight: -13
+      video:
+        enabled: true
+        weight: -12
+      faq:
+        enabled: true
+        weight: -11
       slide:
         weight: -10
         enabled: false
-      text:
-        weight: -15
-        enabled: true
       update:
         weight: -9
         enabled: false
-      video:
-        weight: -12
-        enabled: true
 field_type: entity_reference_revisions
diff --git a/config/sync/field.field.node.people.field_topics.yml b/config/sync/field.field.node.article.field_economic_sectors.yml
similarity index 52%
rename from config/sync/field.field.node.people.field_topics.yml
rename to config/sync/field.field.node.article.field_economic_sectors.yml
index 811c9fb..f708424 100644
--- a/config/sync/field.field.node.people.field_topics.yml
+++ b/config/sync/field.field.node.article.field_economic_sectors.yml
@@ -1,19 +1,17 @@
-uuid: 6dd9b232-291e-4fca-b2ee-0f39184f8e0a
+uuid: c68d6715-4d99-402d-a935-1486722936a5
 langcode: en
 status: true
 dependencies:
   config:
-    - field.storage.node.field_topics
-    - node.type.people
+    - field.storage.node.field_economic_sectors
+    - node.type.article
     - taxonomy.vocabulary.topics
-_core:
-  default_config_hash: K3btHZ3JKmqsqxayLMy-xog1XK47ZkM-y6FVZ7Am2Qo
-id: node.people.field_topics
-field_name: field_topics
+id: node.article.field_economic_sectors
+field_name: field_economic_sectors
 entity_type: node
-bundle: people
-label: Topics
-description: 'Add any topics used across this site that this person has particular experience or involvement in.'
+bundle: article
+label: 'Economic Sectors'
+description: ''
 required: false
 translatable: false
 default_value: {  }
diff --git a/config/sync/field.field.node.article.field_image.yml b/config/sync/field.field.node.article.field_image.yml
index 6468173..0c6138d 100644
--- a/config/sync/field.field.node.article.field_image.yml
+++ b/config/sync/field.field.node.article.field_image.yml
@@ -13,15 +13,13 @@ id: node.article.field_image
 field_name: field_image
 entity_type: node
 bundle: article
-label: 'Image (deprecated)'
-description: 'Use Media image instead.'
+label: Image
+description: ''
 required: false
 translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -37,4 +35,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.node.article.field_institutions_structures.yml b/config/sync/field.field.node.article.field_institutions_structures.yml
new file mode 100644
index 0000000..58b60f2
--- /dev/null
+++ b/config/sync/field.field.node.article.field_institutions_structures.yml
@@ -0,0 +1,29 @@
+uuid: 38df8317-53f6-4f0b-8095-0fa03ab95315
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_institutions_structures
+    - node.type.article
+    - taxonomy.vocabulary.topics
+id: node.article.field_institutions_structures
+field_name: field_institutions_structures
+entity_type: node
+bundle: article
+label: 'Institutions & Structures'
+description: ''
+required: false
+translatable: false
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.article.field_media_image.yml b/config/sync/field.field.node.article.field_media_image.yml
deleted file mode 100644
index 70ce1e8..0000000
--- a/config/sync/field.field.node.article.field_media_image.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 857b19e7-820e-4f1e-9459-5dd49032eb07
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_media_image
-    - media.type.image
-    - node.type.article
-  module:
-    - media_library_media_modify
-_core:
-  default_config_hash: Qcn3JCSgkRcHCI7MD1-K4XLJ_GtzanMfIOL3Qnqx3n4
-id: node.article.field_media_image
-field_name: field_media_image
-entity_type: node
-bundle: article
-label: 'Media image'
-description: ''
-required: false
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: _none
-      direction: ASC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.node.article.field_movements_struggles.yml b/config/sync/field.field.node.article.field_movements_struggles.yml
new file mode 100644
index 0000000..28cb11a
--- /dev/null
+++ b/config/sync/field.field.node.article.field_movements_struggles.yml
@@ -0,0 +1,29 @@
+uuid: d34ca2ca-f8ab-4a6c-a69c-78bf9ea3f394
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_movements_struggles
+    - node.type.article
+    - taxonomy.vocabulary.topics
+id: node.article.field_movements_struggles
+field_name: field_movements_struggles
+entity_type: node
+bundle: article
+label: 'Movements & Struggles'
+description: ''
+required: false
+translatable: false
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.article.field_practices_tools_strategies.yml b/config/sync/field.field.node.article.field_practices_tools_strategies.yml
new file mode 100644
index 0000000..dc65f39
--- /dev/null
+++ b/config/sync/field.field.node.article.field_practices_tools_strategies.yml
@@ -0,0 +1,29 @@
+uuid: b36ccc7a-936b-4816-bde2-857576b121b1
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_practices_tools_strategies
+    - node.type.article
+    - taxonomy.vocabulary.topics
+id: node.article.field_practices_tools_strategies
+field_name: field_practices_tools_strategies
+entity_type: node
+bundle: article
+label: 'Practices, Tools & Strategies'
+description: ''
+required: false
+translatable: false
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.article.field_publication_date.yml b/config/sync/field.field.node.article.field_publication_date.yml
index b20c4ce..1a5eecc 100644
--- a/config/sync/field.field.node.article.field_publication_date.yml
+++ b/config/sync/field.field.node.article.field_publication_date.yml
@@ -13,7 +13,7 @@ entity_type: node
 bundle: article
 label: 'Publication date'
 description: ''
-required: true
+required: false
 translatable: false
 default_value:
   -
diff --git a/config/sync/field.field.node.article.field_regions.yml b/config/sync/field.field.node.article.field_regions.yml
new file mode 100644
index 0000000..4d8dd3b
--- /dev/null
+++ b/config/sync/field.field.node.article.field_regions.yml
@@ -0,0 +1,29 @@
+uuid: a85b27f4-d6e1-40f0-98b4-a42f0343e330
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_regions
+    - node.type.article
+    - taxonomy.vocabulary.topics
+id: node.article.field_regions
+field_name: field_regions
+entity_type: node
+bundle: article
+label: Regions
+description: ''
+required: false
+translatable: false
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.article.field_summary.yml b/config/sync/field.field.node.article.field_summary.yml
index c46a76f..fd60564 100644
--- a/config/sync/field.field.node.article.field_summary.yml
+++ b/config/sync/field.field.node.article.field_summary.yml
@@ -19,6 +19,5 @@ required: true
 translatable: true
 default_value: {  }
 default_value_callback: ''
-settings:
-  allowed_formats: {  }
+settings: {  }
 field_type: text_long
diff --git a/config/sync/field.field.node.article.field_upload.yml b/config/sync/field.field.node.article.field_upload.yml
index 7b4f8db..c656880 100644
--- a/config/sync/field.field.node.article.field_upload.yml
+++ b/config/sync/field.field.node.article.field_upload.yml
@@ -18,10 +18,10 @@ translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp'
   max_filesize: ''
   description_field: true
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: file
diff --git a/config/sync/field.field.node.article.field_visions_models.yml b/config/sync/field.field.node.article.field_visions_models.yml
new file mode 100644
index 0000000..be059be
--- /dev/null
+++ b/config/sync/field.field.node.article.field_visions_models.yml
@@ -0,0 +1,29 @@
+uuid: bb2042ea-502b-4d06-bd63-81568fb108c7
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_visions_models
+    - node.type.article
+    - taxonomy.vocabulary.topics
+id: node.article.field_visions_models
+field_name: field_visions_models
+entity_type: node
+bundle: article
+label: 'Visions & Models'
+description: ''
+required: false
+translatable: false
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.blog.body.yml b/config/sync/field.field.node.blog.body.yml
index 4c236c9..b2897b8 100644
--- a/config/sync/field.field.node.blog.body.yml
+++ b/config/sync/field.field.node.blog.body.yml
@@ -21,6 +21,4 @@ default_value: {  }
 default_value_callback: ''
 settings:
   display_summary: true
-  required_summary: false
-  allowed_formats: {  }
 field_type: text_with_summary
diff --git a/config/sync/field.field.node.blog.comment.yml b/config/sync/field.field.node.blog.comment.yml
index fa43328..a445a07 100644
--- a/config/sync/field.field.node.blog.comment.yml
+++ b/config/sync/field.field.node.blog.comment.yml
@@ -27,9 +27,9 @@ default_value:
     comment_count: 0
 default_value_callback: ''
 settings:
-  default_mode: 0
+  default_mode: 1
   per_page: 50
   anonymous: 1
-  form_location: true
+  form_location: false
   preview: 0
 field_type: comment
diff --git a/config/sync/field.field.node.blog.field_body_paragraph.yml b/config/sync/field.field.node.blog.field_body_paragraph.yml
index cec9833..721b911 100644
--- a/config/sync/field.field.node.blog.field_body_paragraph.yml
+++ b/config/sync/field.field.node.blog.field_body_paragraph.yml
@@ -24,13 +24,13 @@ settings:
   handler_settings:
     target_bundles: null
     target_bundles_drag_drop:
-      file:
+      text:
         weight: -7
         enabled: false
       image:
         weight: -7
         enabled: false
-      text:
+      file:
         weight: -7
         enabled: false
 field_type: entity_reference_revisions
diff --git a/config/sync/field.field.node.blog.field_economic_sectors.yml b/config/sync/field.field.node.blog.field_economic_sectors.yml
new file mode 100644
index 0000000..072978b
--- /dev/null
+++ b/config/sync/field.field.node.blog.field_economic_sectors.yml
@@ -0,0 +1,29 @@
+uuid: a325c3c8-333c-465b-bde7-06d302c53336
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_economic_sectors
+    - node.type.blog
+    - taxonomy.vocabulary.topics
+id: node.blog.field_economic_sectors
+field_name: field_economic_sectors
+entity_type: node
+bundle: blog
+label: 'Economic Sectors'
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.blog.field_image.yml b/config/sync/field.field.node.blog.field_image.yml
index f8ecb23..34b047d 100644
--- a/config/sync/field.field.node.blog.field_image.yml
+++ b/config/sync/field.field.node.blog.field_image.yml
@@ -13,15 +13,13 @@ id: node.blog.field_image
 field_name: field_image
 entity_type: node
 bundle: blog
-label: 'Image (DEPRECATED)'
+label: Image
 description: ''
 required: false
 translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -37,4 +35,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.node.blog.field_institutions_structures.yml b/config/sync/field.field.node.blog.field_institutions_structures.yml
new file mode 100644
index 0000000..d21a211
--- /dev/null
+++ b/config/sync/field.field.node.blog.field_institutions_structures.yml
@@ -0,0 +1,29 @@
+uuid: 46cda4e7-c112-49aa-a1df-87fe7a82b3fb
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_institutions_structures
+    - node.type.blog
+    - taxonomy.vocabulary.topics
+id: node.blog.field_institutions_structures
+field_name: field_institutions_structures
+entity_type: node
+bundle: blog
+label: 'Institutions & Structures'
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.blog.field_media_image.yml b/config/sync/field.field.node.blog.field_media_image.yml
deleted file mode 100644
index 81cd266..0000000
--- a/config/sync/field.field.node.blog.field_media_image.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 9940cde7-e039-4b85-a0ff-6a5c5ee38e16
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_media_image
-    - media.type.image
-    - node.type.blog
-  module:
-    - media_library_media_modify
-_core:
-  default_config_hash: f46zn4uaJdean3NGK8lZ8_kt8kf1D2vh-JeBOF2xydI
-id: node.blog.field_media_image
-field_name: field_media_image
-entity_type: node
-bundle: blog
-label: 'Media image'
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: _none
-      direction: ASC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.node.blog.field_movements_struggles.yml b/config/sync/field.field.node.blog.field_movements_struggles.yml
new file mode 100644
index 0000000..fb2aba3
--- /dev/null
+++ b/config/sync/field.field.node.blog.field_movements_struggles.yml
@@ -0,0 +1,29 @@
+uuid: 532eff75-9cab-4956-9168-10095064f1d7
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_movements_struggles
+    - node.type.blog
+    - taxonomy.vocabulary.topics
+id: node.blog.field_movements_struggles
+field_name: field_movements_struggles
+entity_type: node
+bundle: blog
+label: 'Movements & Struggles'
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.blog.field_practices_tools_strategies.yml b/config/sync/field.field.node.blog.field_practices_tools_strategies.yml
new file mode 100644
index 0000000..e2d2e82
--- /dev/null
+++ b/config/sync/field.field.node.blog.field_practices_tools_strategies.yml
@@ -0,0 +1,29 @@
+uuid: 63d8f2cd-976b-48fc-80bf-5a6cd134ece9
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_practices_tools_strategies
+    - node.type.blog
+    - taxonomy.vocabulary.topics
+id: node.blog.field_practices_tools_strategies
+field_name: field_practices_tools_strategies
+entity_type: node
+bundle: blog
+label: 'Practices, Tools & Strategies'
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.blog.field_publication_date.yml b/config/sync/field.field.node.blog.field_publication_date.yml
deleted file mode 100644
index 53b4abf..0000000
--- a/config/sync/field.field.node.blog.field_publication_date.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: 1e193d8e-d6b0-4238-b289-59055d310d46
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_publication_date
-    - node.type.blog
-  module:
-    - datetime
-id: node.blog.field_publication_date
-field_name: field_publication_date
-entity_type: node
-bundle: blog
-label: 'Publication date'
-description: ''
-required: true
-translatable: true
-default_value:
-  -
-    default_date_type: now
-    default_date: now
-default_value_callback: ''
-settings: {  }
-field_type: datetime
diff --git a/config/sync/field.field.node.blog.field_regions.yml b/config/sync/field.field.node.blog.field_regions.yml
new file mode 100644
index 0000000..9ef6fd3
--- /dev/null
+++ b/config/sync/field.field.node.blog.field_regions.yml
@@ -0,0 +1,29 @@
+uuid: 1914fa94-ac77-4628-a5fb-a84a315085da
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_regions
+    - node.type.blog
+    - taxonomy.vocabulary.topics
+id: node.blog.field_regions
+field_name: field_regions
+entity_type: node
+bundle: blog
+label: Regions
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.blog.field_summary.yml b/config/sync/field.field.node.blog.field_summary.yml
index 0c1b569..4619b4a 100644
--- a/config/sync/field.field.node.blog.field_summary.yml
+++ b/config/sync/field.field.node.blog.field_summary.yml
@@ -19,6 +19,5 @@ required: true
 translatable: true
 default_value: {  }
 default_value_callback: ''
-settings:
-  allowed_formats: {  }
+settings: {  }
 field_type: text_long
diff --git a/config/sync/field.field.node.blog.field_upload.yml b/config/sync/field.field.node.blog.field_upload.yml
index 39502d1..2a445a1 100644
--- a/config/sync/field.field.node.blog.field_upload.yml
+++ b/config/sync/field.field.node.blog.field_upload.yml
@@ -18,10 +18,10 @@ translatable: false
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp'
   max_filesize: ''
   description_field: false
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: file
diff --git a/config/sync/field.field.node.blog.field_visions_models.yml b/config/sync/field.field.node.blog.field_visions_models.yml
new file mode 100644
index 0000000..474fba3
--- /dev/null
+++ b/config/sync/field.field.node.blog.field_visions_models.yml
@@ -0,0 +1,29 @@
+uuid: 3d832fcf-e6b9-4fbb-8cc8-d8ea6600e8e1
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.node.field_visions_models
+    - node.type.blog
+    - taxonomy.vocabulary.topics
+id: node.blog.field_visions_models
+field_name: field_visions_models
+entity_type: node
+bundle: blog
+label: 'Visions & Models'
+description: ''
+required: false
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  handler: 'default:taxonomy_term'
+  handler_settings:
+    target_bundles:
+      topics: topics
+    sort:
+      field: name
+      direction: asc
+    auto_create: false
+    auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.node.collection.body.yml b/config/sync/field.field.node.collection.body.yml
index 9b1f6f9..bd00176 100644
--- a/config/sync/field.field.node.collection.body.yml
+++ b/config/sync/field.field.node.collection.body.yml
@@ -21,5 +21,4 @@ default_value: {  }
 default_value_callback: ''
 settings:
   display_summary: true
-  required_summary: false
 field_type: text_with_summary
diff --git a/config/sync/field.field.node.collection.comment.yml b/config/sync/field.field.node.collection.comment.yml
deleted file mode 100644
index fe28dc0..0000000
--- a/config/sync/field.field.node.collection.comment.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 4f16f147-43d0-4fc8-a857-d2f139cc97d3
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.comment
-    - node.type.collection
-  module:
-    - comment
-id: node.collection.comment
-field_name: comment
-entity_type: node
-bundle: collection
-label: Comments
-description: ''
-required: false
-translatable: true
-default_value:
-  -
-    status: 2
-    cid: 0
-    last_comment_timestamp: 0
-    last_comment_name: null
-    last_comment_uid: 0
-    comment_count: 0
-default_value_callback: ''
-settings:
-  default_mode: 0
-  per_page: 50
-  anonymous: 0
-  form_location: true
-  preview: 0
-field_type: comment
diff --git a/config/sync/field.field.node.collection.field_body_paragraph.yml b/config/sync/field.field.node.collection.field_body_paragraph.yml
deleted file mode 100644
index ab7b310..0000000
--- a/config/sync/field.field.node.collection.field_body_paragraph.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-uuid: ef2c1d71-cd1f-4e62-a008-625a74b90d93
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_body_paragraph
-    - node.type.collection
-    - paragraphs.paragraphs_type.drutopia_collection
-    - paragraphs.paragraphs_type.file
-    - paragraphs.paragraphs_type.image
-    - paragraphs.paragraphs_type.text
-    - paragraphs.paragraphs_type.video
-  module:
-    - entity_reference_revisions
-_core:
-  default_config_hash: gfZqYddYFY8po0Ek3xn59IJhLaQq9iVMUXKRzrhYMOU
-id: node.collection.field_body_paragraph
-field_name: field_body_paragraph
-entity_type: node
-bundle: collection
-label: 'Body paragraph'
-description: ''
-required: false
-translatable: true
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:paragraph'
-  handler_settings:
-    target_bundles:
-      drutopia_collection: drutopia_collection
-      file: file
-      image: image
-      text: text
-      video: video
-    negate: 0
-    target_bundles_drag_drop:
-      drutopia_collection:
-        weight: 9
-        enabled: true
-      faq:
-        weight: 10
-        enabled: false
-      file:
-        weight: 11
-        enabled: true
-      image:
-        weight: 12
-        enabled: true
-      slide:
-        weight: 13
-        enabled: false
-      text:
-        weight: 14
-        enabled: true
-      update:
-        weight: 15
-        enabled: false
-      video:
-        weight: 16
-        enabled: true
-field_type: entity_reference_revisions
diff --git a/config/sync/field.field.node.collection.field_collection_items.yml b/config/sync/field.field.node.collection.field_collection_items.yml
index 3ed9585..3fda3fe 100644
--- a/config/sync/field.field.node.collection.field_collection_items.yml
+++ b/config/sync/field.field.node.collection.field_collection_items.yml
@@ -13,7 +13,7 @@ entity_type: node
 bundle: collection
 label: Items
 description: 'Select any other content on the site to display as a list of teasers by typing words from the title and looking for the autocompletion of the content you want in the collection.  You can change the order after adding each item.'
-required: false
+required: true
 translatable: false
 default_value: {  }
 default_value_callback: ''
diff --git a/config/sync/field.field.node.collection.field_image.yml b/config/sync/field.field.node.collection.field_image.yml
index 1df31ae..b373a74 100644
--- a/config/sync/field.field.node.collection.field_image.yml
+++ b/config/sync/field.field.node.collection.field_image.yml
@@ -20,8 +20,6 @@ translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -37,4 +35,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.node.collection.field_media_image.yml b/config/sync/field.field.node.collection.field_media_image.yml
deleted file mode 100644
index cf5b989..0000000
--- a/config/sync/field.field.node.collection.field_media_image.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: 03f0b919-17c7-4783-b85a-0122c4587bf1
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_media_image
-    - media.type.image
-    - node.type.collection
-  module:
-    - media_library_media_modify
-id: node.collection.field_media_image
-field_name: field_media_image
-entity_type: node
-bundle: collection
-label: 'Media image'
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: _none
-      direction: ASC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.node.collection.field_publication_date.yml b/config/sync/field.field.node.collection.field_publication_date.yml
deleted file mode 100644
index 3fc1c09..0000000
--- a/config/sync/field.field.node.collection.field_publication_date.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: 75c9445f-460d-4ea7-856d-2a88033d55bc
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_publication_date
-    - node.type.collection
-  module:
-    - datetime
-id: node.collection.field_publication_date
-field_name: field_publication_date
-entity_type: node
-bundle: collection
-label: 'Publication date'
-description: ''
-required: true
-translatable: true
-default_value:
-  -
-    default_date_type: now
-    default_date: now
-default_value_callback: ''
-settings: {  }
-field_type: datetime
diff --git a/config/sync/field.field.node.gleaning.body.yml b/config/sync/field.field.node.gleaning.body.yml
index 74720cf..944ba68 100644
--- a/config/sync/field.field.node.gleaning.body.yml
+++ b/config/sync/field.field.node.gleaning.body.yml
@@ -19,5 +19,4 @@ default_value: {  }
 default_value_callback: ''
 settings:
   display_summary: true
-  required_summary: false
 field_type: text_with_summary
diff --git a/config/sync/field.field.node.gleaning.comment.yml b/config/sync/field.field.node.gleaning.comment.yml
deleted file mode 100644
index 48df688..0000000
--- a/config/sync/field.field.node.gleaning.comment.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 22e997d2-daae-49ef-9172-93c364d69c28
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.comment
-    - node.type.gleaning
-  module:
-    - comment
-id: node.gleaning.comment
-field_name: comment
-entity_type: node
-bundle: gleaning
-label: Comments
-description: ''
-required: false
-translatable: true
-default_value:
-  -
-    status: 2
-    cid: 0
-    last_comment_timestamp: 0
-    last_comment_name: null
-    last_comment_uid: 0
-    comment_count: 0
-default_value_callback: ''
-settings:
-  default_mode: 0
-  per_page: 50
-  anonymous: 0
-  form_location: true
-  preview: 0
-field_type: comment
diff --git a/config/sync/field.field.node.gleaning.field_image.yml b/config/sync/field.field.node.gleaning.field_image.yml
index 5d8bd97..6b3865e 100644
--- a/config/sync/field.field.node.gleaning.field_image.yml
+++ b/config/sync/field.field.node.gleaning.field_image.yml
@@ -18,8 +18,6 @@ translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -35,4 +33,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.node.gleaning.field_media_image.yml b/config/sync/field.field.node.gleaning.field_media_image.yml
deleted file mode 100644
index 9a01d1b..0000000
--- a/config/sync/field.field.node.gleaning.field_media_image.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: 9b0daf56-ff0a-4108-8e77-dd51966a349b
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_media_image
-    - media.type.image
-    - node.type.gleaning
-  module:
-    - media_library_media_modify
-id: node.gleaning.field_media_image
-field_name: field_media_image
-entity_type: node
-bundle: gleaning
-label: 'Media image'
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: _none
-      direction: ASC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.node.gleaning.field_publication_date.yml b/config/sync/field.field.node.gleaning.field_publication_date.yml
deleted file mode 100644
index 86a2bfa..0000000
--- a/config/sync/field.field.node.gleaning.field_publication_date.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: 160e7cc3-1db4-4691-9824-349cc47ce7a4
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_publication_date
-    - node.type.gleaning
-  module:
-    - datetime
-id: node.gleaning.field_publication_date
-field_name: field_publication_date
-entity_type: node
-bundle: gleaning
-label: 'Publication date'
-description: ''
-required: true
-translatable: true
-default_value:
-  -
-    default_date_type: now
-    default_date: now
-default_value_callback: ''
-settings: {  }
-field_type: datetime
diff --git a/config/sync/field.field.node.gleaning.field_upload.yml b/config/sync/field.field.node.gleaning.field_upload.yml
index ebee432..9c8a0ba 100644
--- a/config/sync/field.field.node.gleaning.field_upload.yml
+++ b/config/sync/field.field.node.gleaning.field_upload.yml
@@ -18,10 +18,10 @@ translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'txt pdf doc docx odt'
   max_filesize: ''
   description_field: false
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: file
diff --git a/config/sync/field.field.node.landing_page.field_body_paragraph.yml b/config/sync/field.field.node.landing_page.field_body_paragraph.yml
index d3d0e93..1e9a727 100644
--- a/config/sync/field.field.node.landing_page.field_body_paragraph.yml
+++ b/config/sync/field.field.node.landing_page.field_body_paragraph.yml
@@ -32,19 +32,19 @@ settings:
       image: image
       slide: slide
     target_bundles_drag_drop:
-      file:
-        weight: -8
-        enabled: true
-      image:
-        weight: -7
-        enabled: true
-      slide:
-        weight: 8
-        enabled: true
       text:
-        weight: -9
         enabled: true
+        weight: -9
+      file:
+        enabled: true
+        weight: -8
+      image:
+        enabled: true
+        weight: -7
       update:
         weight: -6
         enabled: false
+      slide:
+        enabled: true
+        weight: 8
 field_type: entity_reference_revisions
diff --git a/config/sync/field.field.node.page.body.yml b/config/sync/field.field.node.page.body.yml
index 9dfe675..fac59b3 100644
--- a/config/sync/field.field.node.page.body.yml
+++ b/config/sync/field.field.node.page.body.yml
@@ -21,5 +21,4 @@ default_value: {  }
 default_value_callback: ''
 settings:
   display_summary: true
-  required_summary: false
 field_type: text_with_summary
diff --git a/config/sync/field.field.node.page.field_body_paragraph.yml b/config/sync/field.field.node.page.field_body_paragraph.yml
index 8f3511f..a1b0c39 100644
--- a/config/sync/field.field.node.page.field_body_paragraph.yml
+++ b/config/sync/field.field.node.page.field_body_paragraph.yml
@@ -20,7 +20,7 @@ id: node.page.field_body_paragraph
 field_name: field_body_paragraph
 entity_type: node
 bundle: page
-label: Description
+label: 'Body paragraph'
 description: ''
 required: false
 translatable: true
@@ -29,6 +29,7 @@ default_value_callback: ''
 settings:
   handler: 'default:paragraph'
   handler_settings:
+    negate: 0
     target_bundles:
       text: text
       image: image
@@ -37,27 +38,26 @@ settings:
       slide: slide
       update: update
       faq: faq
-    negate: 0
     target_bundles_drag_drop:
-      faq:
-        weight: -9
-        enabled: true
-      file:
-        weight: -13
-        enabled: true
-      image:
-        weight: -14
-        enabled: true
-      slide:
-        weight: -11
-        enabled: true
       text:
+        enabled: true
         weight: -15
+      image:
         enabled: true
-      update:
-        weight: -10
+        weight: -14
+      file:
         enabled: true
+        weight: -13
       video:
-        weight: -12
         enabled: true
+        weight: -12
+      slide:
+        enabled: true
+        weight: -11
+      update:
+        enabled: true
+        weight: -10
+      faq:
+        enabled: true
+        weight: -9
 field_type: entity_reference_revisions
diff --git a/config/sync/field.field.node.page.field_summary.yml b/config/sync/field.field.node.page.field_summary.yml
index 5f87e6a..4bb837a 100644
--- a/config/sync/field.field.node.page.field_summary.yml
+++ b/config/sync/field.field.node.page.field_summary.yml
@@ -14,11 +14,10 @@ field_name: field_summary
 entity_type: node
 bundle: page
 label: Summary
-description: 'Enter a short description of what this page is about. The summary is visible in search results.'
+description: 'Enter a short description of what this page is about. The summary is visible in certain displays.'
 required: true
 translatable: true
 default_value: {  }
 default_value_callback: ''
-settings:
-  allowed_formats: {  }
+settings: {  }
 field_type: text_long
diff --git a/config/sync/field.field.node.people.body.yml b/config/sync/field.field.node.people.body.yml
index 55d99e2..981fa39 100644
--- a/config/sync/field.field.node.people.body.yml
+++ b/config/sync/field.field.node.people.body.yml
@@ -21,5 +21,4 @@ default_value: {  }
 default_value_callback: ''
 settings:
   display_summary: true
-  required_summary: false
 field_type: text_with_summary
diff --git a/config/sync/field.field.node.people.field_body_paragraph.yml b/config/sync/field.field.node.people.field_body_paragraph.yml
index d8b4821..65aa5dd 100644
--- a/config/sync/field.field.node.people.field_body_paragraph.yml
+++ b/config/sync/field.field.node.people.field_body_paragraph.yml
@@ -25,24 +25,24 @@ default_value_callback: ''
 settings:
   handler: 'default:paragraph'
   handler_settings:
+    negate: 0
     target_bundles:
       file: file
       image: image
       text: text
-    negate: 0
     target_bundles_drag_drop:
       file:
-        weight: -7
         enabled: true
+        weight: -7
       image:
-        weight: -7
         enabled: true
+        weight: -7
+      text:
+        enabled: true
+        weight: -7
       slide:
         weight: 8
         enabled: false
-      text:
-        weight: -7
-        enabled: true
       update:
         weight: 10
         enabled: false
diff --git a/config/sync/field.field.node.people.field_image.yml b/config/sync/field.field.node.people.field_image.yml
index b8b3c55..27f3758 100644
--- a/config/sync/field.field.node.people.field_image.yml
+++ b/config/sync/field.field.node.people.field_image.yml
@@ -20,8 +20,6 @@ translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -37,4 +35,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.node.people.field_media_image.yml b/config/sync/field.field.node.people.field_media_image.yml
deleted file mode 100644
index d679c4b..0000000
--- a/config/sync/field.field.node.people.field_media_image.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 7d1245e7-1c2f-49a6-b4fe-8ab372ed9f00
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.node.field_media_image
-    - media.type.image
-    - node.type.people
-  module:
-    - media_library_media_modify
-_core:
-  default_config_hash: DC1ZnohEB2ZR4ChhatkaoGcq6IbFJH5CmRa-6xWV-Y0
-id: node.people.field_media_image
-field_name: field_media_image
-entity_type: node
-bundle: people
-label: 'Media image'
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: changed
-      direction: DESC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.paragraph.drutopia_collection.field_items.yml b/config/sync/field.field.paragraph.drutopia_collection.field_items.yml
deleted file mode 100644
index c6ad081..0000000
--- a/config/sync/field.field.paragraph.drutopia_collection.field_items.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: 0fa4a677-0a71-4143-a2a0-b2844925a60b
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.paragraph.field_items
-    - node.type.article
-    - node.type.blog
-    - node.type.people
-    - paragraphs.paragraphs_type.drutopia_collection
-_core:
-  default_config_hash: 7DUUXZdsPh4mDm9mhYlDJz3claVAxXookJakBJhDocs
-id: paragraph.drutopia_collection.field_items
-field_name: field_items
-entity_type: paragraph
-bundle: drutopia_collection
-label: Items
-description: 'Select any other content on the site to display as a list of teasers by typing words from the title and looking for the autocompletion of the content you want in the collection. You can change the order after adding each item.'
-required: true
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:node'
-  handler_settings:
-    target_bundles:
-      article: article
-      blog: blog
-      people: people
-    sort:
-      field: changed
-      direction: DESC
-    auto_create: false
-    auto_create_bundle: article
-field_type: entity_reference
diff --git a/config/sync/field.field.paragraph.file.field_file.yml b/config/sync/field.field.paragraph.file.field_file.yml
index 5227217..ef59fec 100644
--- a/config/sync/field.field.paragraph.file.field_file.yml
+++ b/config/sync/field.field.paragraph.file.field_file.yml
@@ -20,10 +20,10 @@ translatable: false
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'txt pdf odt doc docx'
   max_filesize: ''
   description_field: true
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: file
diff --git a/config/sync/field.field.paragraph.image.field_image.yml b/config/sync/field.field.paragraph.image.field_image.yml
index d027044..a52e56c 100644
--- a/config/sync/field.field.paragraph.image.field_image.yml
+++ b/config/sync/field.field.paragraph.image.field_image.yml
@@ -13,15 +13,13 @@ id: paragraph.image.field_image
 field_name: field_image
 entity_type: paragraph
 bundle: image
-label: 'Image (deprecated)'
+label: Image
 description: ''
 required: false
 translatable: false
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -37,4 +35,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.paragraph.image.field_media_image.yml b/config/sync/field.field.paragraph.image.field_media_image.yml
deleted file mode 100644
index 40df8dd..0000000
--- a/config/sync/field.field.paragraph.image.field_media_image.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 06bac6b6-94fe-4852-833a-afbff4027219
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.paragraph.field_media_image
-    - media.type.image
-    - paragraphs.paragraphs_type.image
-  module:
-    - media_library_media_modify
-_core:
-  default_config_hash: 68hqAsoHkTnQEbmJR8h5NyCZtNhgS6VoiwU2rSIRJ1M
-id: paragraph.image.field_media_image
-field_name: field_media_image
-entity_type: paragraph
-bundle: image
-label: 'Media image'
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: _none
-      direction: ASC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.paragraph.slide.field_image.yml b/config/sync/field.field.paragraph.slide.field_image.yml
index 34426ac..e042dc7 100644
--- a/config/sync/field.field.paragraph.slide.field_image.yml
+++ b/config/sync/field.field.paragraph.slide.field_image.yml
@@ -13,15 +13,13 @@ id: paragraph.slide.field_image
 field_name: field_image
 entity_type: paragraph
 bundle: slide
-label: 'Image (DEPRECATED)'
+label: Image
 description: ''
 required: false
 translatable: true
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -37,4 +35,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.field.paragraph.slide.field_link.yml b/config/sync/field.field.paragraph.slide.field_link.yml
index 1526c7d..51c14ba 100644
--- a/config/sync/field.field.paragraph.slide.field_link.yml
+++ b/config/sync/field.field.paragraph.slide.field_link.yml
@@ -20,6 +20,6 @@ translatable: false
 default_value: {  }
 default_value_callback: ''
 settings:
-  title: 1
   link_type: 17
+  title: 1
 field_type: link
diff --git a/config/sync/field.field.paragraph.slide.field_media_image.yml b/config/sync/field.field.paragraph.slide.field_media_image.yml
deleted file mode 100644
index abfc28d..0000000
--- a/config/sync/field.field.paragraph.slide.field_media_image.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 184fd142-d8f9-436e-9111-19209bcedc66
-langcode: en
-status: true
-dependencies:
-  config:
-    - field.storage.paragraph.field_media_image
-    - media.type.image
-    - paragraphs.paragraphs_type.slide
-  module:
-    - media_library_media_modify
-_core:
-  default_config_hash: Y1AH7iGXAPYpIo1CWJxk0aVTKSNGq0mFrkSh6KmYVn8
-id: paragraph.slide.field_media_image
-field_name: field_media_image
-entity_type: paragraph
-bundle: slide
-label: 'Media image'
-description: ''
-required: false
-translatable: false
-default_value: {  }
-default_value_callback: ''
-settings:
-  handler: 'default:media'
-  handler_settings:
-    target_bundles:
-      image: image
-    sort:
-      field: _none
-      direction: ASC
-    auto_create: false
-    auto_create_bundle: ''
-field_type: entity_reference_entity_modify
diff --git a/config/sync/field.field.paragraph.slide.field_text.yml b/config/sync/field.field.paragraph.slide.field_text.yml
index 70fe65d..9fe9fa1 100644
--- a/config/sync/field.field.paragraph.slide.field_text.yml
+++ b/config/sync/field.field.paragraph.slide.field_text.yml
@@ -19,6 +19,5 @@ required: false
 translatable: true
 default_value: {  }
 default_value_callback: ''
-settings:
-  allowed_formats: {  }
+settings: {  }
 field_type: text_long
diff --git a/config/sync/field.field.paragraph.text.field_text.yml b/config/sync/field.field.paragraph.text.field_text.yml
index 89d9747..f73be3f 100644
--- a/config/sync/field.field.paragraph.text.field_text.yml
+++ b/config/sync/field.field.paragraph.text.field_text.yml
@@ -19,6 +19,5 @@ required: false
 translatable: false
 default_value: {  }
 default_value_callback: ''
-settings:
-  allowed_formats: {  }
+settings: {  }
 field_type: text_long
diff --git a/config/sync/field.field.paragraph.update.field_text.yml b/config/sync/field.field.paragraph.update.field_text.yml
index 056dfc2..37114b3 100644
--- a/config/sync/field.field.paragraph.update.field_text.yml
+++ b/config/sync/field.field.paragraph.update.field_text.yml
@@ -19,6 +19,5 @@ required: false
 translatable: true
 default_value: {  }
 default_value_callback: ''
-settings:
-  allowed_formats: {  }
+settings: {  }
 field_type: text_long
diff --git a/config/sync/field.field.user.user.field_user_picture.yml b/config/sync/field.field.user.user.field_user_picture.yml
index 023b0b0..1359dea 100644
--- a/config/sync/field.field.user.user.field_user_picture.yml
+++ b/config/sync/field.field.user.user.field_user_picture.yml
@@ -18,8 +18,6 @@ translatable: false
 default_value: {  }
 default_value_callback: ''
 settings:
-  handler: 'default:file'
-  handler_settings: {  }
   file_directory: '[date:custom:Y]-[date:custom:m]'
   file_extensions: 'png gif jpg jpeg'
   max_filesize: ''
@@ -35,4 +33,6 @@ settings:
     title: ''
     width: null
     height: null
+  handler: 'default:file'
+  handler_settings: {  }
 field_type: image
diff --git a/config/sync/field.settings.yml b/config/sync/field.settings.yml
index 2225b8f..95c042d 100644
--- a/config/sync/field.settings.yml
+++ b/config/sync/field.settings.yml
@@ -1,3 +1,3 @@
+purge_batch_size: 50
 _core:
   default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
-purge_batch_size: 50
diff --git a/config/sync/field.storage.media.field_media_audio_file.yml b/config/sync/field.storage.media.field_media_audio_file.yml
deleted file mode 100644
index fad69f7..0000000
--- a/config/sync/field.storage.media.field_media_audio_file.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: be7871f0-bb0f-4853-85b7-a91f5996c129
-langcode: en
-status: true
-dependencies:
-  module:
-    - file
-    - media
-_core:
-  default_config_hash: JCHoh95CpUeBx9ch24Tmi6ru0nwmNz8xWVH4Qs7RnTg
-id: media.field_media_audio_file
-field_name: field_media_audio_file
-entity_type: media
-type: file
-settings:
-  target_type: file
-  display_field: false
-  display_default: false
-  uri_scheme: public
-module: file
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.media.field_media_document.yml b/config/sync/field.storage.media.field_media_document.yml
deleted file mode 100644
index 250995a..0000000
--- a/config/sync/field.storage.media.field_media_document.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 173b2afe-20e5-4730-9ed9-b16a2148a880
-langcode: en
-status: true
-dependencies:
-  module:
-    - file
-    - media
-  enforced:
-    module:
-      - media
-_core:
-  default_config_hash: BdkTx7IL59MCw5a_fOZprPTOGM_wcjz-Fm8g7HV3vFk
-id: media.field_media_document
-field_name: field_media_document
-entity_type: media
-type: file
-settings:
-  target_type: file
-  display_field: false
-  display_default: false
-  uri_scheme: public
-module: file
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.media.field_media_image.yml b/config/sync/field.storage.media.field_media_image.yml
deleted file mode 100644
index 80e8325..0000000
--- a/config/sync/field.storage.media.field_media_image.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: ed523a85-8b56-4a0e-8e62-c7b8278466a0
-langcode: en
-status: true
-dependencies:
-  module:
-    - file
-    - image
-    - media
-  enforced:
-    module:
-      - media
-_core:
-  default_config_hash: 0N0KSFk57p6qsq3qM4lYVGSuROvzXK-tSsdwByqUh3g
-id: media.field_media_image
-field_name: field_media_image
-entity_type: media
-type: image
-settings:
-  target_type: file
-  display_field: false
-  display_default: false
-  uri_scheme: public
-  default_image:
-    uuid: null
-    alt: ''
-    title: ''
-    width: null
-    height: null
-module: image
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.media.field_media_oembed_video.yml b/config/sync/field.storage.media.field_media_oembed_video.yml
deleted file mode 100644
index 7b4e1e8..0000000
--- a/config/sync/field.storage.media.field_media_oembed_video.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: de0bbe6b-7707-432f-8d74-91f928afa21a
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: cNf_852Dq-fNnSaMI4LxL-J6N7bLkHuDbD9EUqOn4_U
-id: media.field_media_oembed_video
-field_name: field_media_oembed_video
-entity_type: media
-type: string
-settings:
-  max_length: 255
-  case_sensitive: false
-  is_ascii: false
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.media.field_media_video_file.yml b/config/sync/field.storage.media.field_media_video_file.yml
deleted file mode 100644
index 39e25fd..0000000
--- a/config/sync/field.storage.media.field_media_video_file.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: 96c58a7b-8f8b-40d6-9e4e-1f1974f4ca63
-langcode: en
-status: true
-dependencies:
-  module:
-    - file
-    - media
-_core:
-  default_config_hash: z5mgbn1PIVZ5TNMByBmivqo_u3Rdk58UIzpyN4ypTeM
-id: media.field_media_video_file
-field_name: field_media_video_file
-entity_type: media
-type: file
-settings:
-  target_type: file
-  display_field: false
-  display_default: false
-  uri_scheme: public
-module: file
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.node.field_biography.yml b/config/sync/field.storage.node.field_biography.yml
deleted file mode 100644
index 97ec667..0000000
--- a/config/sync/field.storage.node.field_biography.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: fa745711-0e59-4bc9-a5fc-e530ce7ca948
-langcode: en
-status: true
-dependencies:
-  module:
-    - entity_reference_override
-    - node
-id: node.field_biography
-field_name: field_biography
-entity_type: node
-type: entity_reference_override
-settings:
-  target_type: node
-module: entity_reference_override
-locked: false
-cardinality: -1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.node.field_economic_sectors.yml b/config/sync/field.storage.node.field_economic_sectors.yml
new file mode 100644
index 0000000..8d8c7c8
--- /dev/null
+++ b/config/sync/field.storage.node.field_economic_sectors.yml
@@ -0,0 +1,20 @@
+uuid: 8d50a687-339a-4bef-ac55-747ed1ea5c51
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+id: node.field_economic_sectors
+field_name: field_economic_sectors
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.node.field_image.yml b/config/sync/field.storage.node.field_image.yml
index d6236c9..b018175 100644
--- a/config/sync/field.storage.node.field_image.yml
+++ b/config/sync/field.storage.node.field_image.yml
@@ -13,9 +13,6 @@ field_name: field_image
 entity_type: node
 type: image
 settings:
-  target_type: file
-  display_field: false
-  display_default: false
   uri_scheme: public
   default_image:
     uuid: ''
@@ -23,6 +20,9 @@ settings:
     title: ''
     width: null
     height: null
+  target_type: file
+  display_field: false
+  display_default: false
 module: image
 locked: false
 cardinality: -1
diff --git a/config/sync/field.storage.node.field_institutions_structures.yml b/config/sync/field.storage.node.field_institutions_structures.yml
new file mode 100644
index 0000000..e787797
--- /dev/null
+++ b/config/sync/field.storage.node.field_institutions_structures.yml
@@ -0,0 +1,20 @@
+uuid: ed649d42-92e6-433e-a21d-deec7bea7ce5
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+id: node.field_institutions_structures
+field_name: field_institutions_structures
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.node.field_media_image.yml b/config/sync/field.storage.node.field_media_image.yml
deleted file mode 100644
index e824033..0000000
--- a/config/sync/field.storage.node.field_media_image.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: e278f38b-12f2-4966-9ff2-eaad786e8a19
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-    - media_library_media_modify
-    - node
-_core:
-  default_config_hash: u1BJrs9USBwZjpS7g60ZH8u2sKaLWtoujJwVNcYIYDE
-id: node.field_media_image
-field_name: field_media_image
-entity_type: node
-type: entity_reference_entity_modify
-settings:
-  target_type: media
-module: media_library_media_modify
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.node.field_movements_struggles.yml b/config/sync/field.storage.node.field_movements_struggles.yml
new file mode 100644
index 0000000..f00a7e1
--- /dev/null
+++ b/config/sync/field.storage.node.field_movements_struggles.yml
@@ -0,0 +1,20 @@
+uuid: fd1a1984-011f-4088-89e6-4ae5b0518811
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+id: node.field_movements_struggles
+field_name: field_movements_struggles
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.node.field_people_position.yml b/config/sync/field.storage.node.field_people_position.yml
index 6b8d248..e710744 100644
--- a/config/sync/field.storage.node.field_people_position.yml
+++ b/config/sync/field.storage.node.field_people_position.yml
@@ -12,8 +12,8 @@ entity_type: node
 type: string
 settings:
   max_length: 255
-  case_sensitive: false
   is_ascii: false
+  case_sensitive: false
 module: core
 locked: false
 cardinality: 1
diff --git a/config/sync/field.storage.node.field_practices_tools_strategies.yml b/config/sync/field.storage.node.field_practices_tools_strategies.yml
new file mode 100644
index 0000000..d999a9b
--- /dev/null
+++ b/config/sync/field.storage.node.field_practices_tools_strategies.yml
@@ -0,0 +1,20 @@
+uuid: c6f5f0f2-200f-4ae4-b78b-b830e09b2d32
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+id: node.field_practices_tools_strategies
+field_name: field_practices_tools_strategies
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.node.field_regions.yml b/config/sync/field.storage.node.field_regions.yml
new file mode 100644
index 0000000..cf5231b
--- /dev/null
+++ b/config/sync/field.storage.node.field_regions.yml
@@ -0,0 +1,20 @@
+uuid: 5c89c96a-f3f8-48b9-8120-616cbd71fe54
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+id: node.field_regions
+field_name: field_regions
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.node.field_subtitle.yml b/config/sync/field.storage.node.field_subtitle.yml
index d85d619..e2586ed 100644
--- a/config/sync/field.storage.node.field_subtitle.yml
+++ b/config/sync/field.storage.node.field_subtitle.yml
@@ -10,8 +10,8 @@ entity_type: node
 type: string
 settings:
   max_length: 255
-  case_sensitive: false
   is_ascii: false
+  case_sensitive: false
 module: core
 locked: false
 cardinality: 1
diff --git a/config/sync/field.storage.node.field_upload.yml b/config/sync/field.storage.node.field_upload.yml
index 70bdab7..5ca7270 100644
--- a/config/sync/field.storage.node.field_upload.yml
+++ b/config/sync/field.storage.node.field_upload.yml
@@ -10,10 +10,10 @@ field_name: field_upload
 entity_type: node
 type: file
 settings:
-  target_type: file
   display_field: true
   display_default: false
   uri_scheme: public
+  target_type: file
 module: file
 locked: false
 cardinality: -1
diff --git a/config/sync/field.storage.node.field_visions_models.yml b/config/sync/field.storage.node.field_visions_models.yml
new file mode 100644
index 0000000..ada09e8
--- /dev/null
+++ b/config/sync/field.storage.node.field_visions_models.yml
@@ -0,0 +1,20 @@
+uuid: 0d3a6c61-120c-433a-b326-671a7243921e
+langcode: en
+status: true
+dependencies:
+  module:
+    - node
+    - taxonomy
+id: node.field_visions_models
+field_name: field_visions_models
+entity_type: node
+type: entity_reference
+settings:
+  target_type: taxonomy_term
+module: core
+locked: false
+cardinality: -1
+translatable: true
+indexes: {  }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.paragraph.field_file.yml b/config/sync/field.storage.paragraph.field_file.yml
index 83063ae..72084b5 100644
--- a/config/sync/field.storage.paragraph.field_file.yml
+++ b/config/sync/field.storage.paragraph.field_file.yml
@@ -12,10 +12,10 @@ field_name: field_file
 entity_type: paragraph
 type: file
 settings:
-  target_type: file
   display_field: false
   display_default: false
   uri_scheme: public
+  target_type: file
 module: file
 locked: false
 cardinality: -1
diff --git a/config/sync/field.storage.paragraph.field_image.yml b/config/sync/field.storage.paragraph.field_image.yml
index c2a35a3..8aa94e2 100644
--- a/config/sync/field.storage.paragraph.field_image.yml
+++ b/config/sync/field.storage.paragraph.field_image.yml
@@ -13,9 +13,6 @@ field_name: field_image
 entity_type: paragraph
 type: image
 settings:
-  target_type: file
-  display_field: false
-  display_default: false
   uri_scheme: public
   default_image:
     uuid: ''
@@ -23,6 +20,9 @@ settings:
     title: ''
     width: null
     height: null
+  target_type: file
+  display_field: false
+  display_default: false
 module: image
 locked: false
 cardinality: 1
diff --git a/config/sync/field.storage.paragraph.field_items.yml b/config/sync/field.storage.paragraph.field_items.yml
deleted file mode 100644
index adee4da..0000000
--- a/config/sync/field.storage.paragraph.field_items.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: dee62ea0-4eb5-4223-beb6-8061d6a8a7b1
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-    - paragraphs
-_core:
-  default_config_hash: VnnPidg22ez5r9ylXvzs766yDC5mVWjS__wyXmq1yvU
-id: paragraph.field_items
-field_name: field_items
-entity_type: paragraph
-type: entity_reference
-settings:
-  target_type: node
-module: core
-locked: false
-cardinality: -1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.paragraph.field_media_image.yml b/config/sync/field.storage.paragraph.field_media_image.yml
deleted file mode 100644
index 051397f..0000000
--- a/config/sync/field.storage.paragraph.field_media_image.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 24b87d9d-a249-4da8-bf3b-abeaa73a8273
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-    - media_library_media_modify
-    - paragraphs
-_core:
-  default_config_hash: ey-tX87OAJ8GQEP3qMmQZiOC0ug1m91GqqkKq5Bq6k8
-id: paragraph.field_media_image
-field_name: field_media_image
-entity_type: paragraph
-type: entity_reference_entity_modify
-settings:
-  target_type: media
-module: media_library_media_modify
-locked: false
-cardinality: 1
-translatable: true
-indexes: {  }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/sync/field.storage.user.field_user_picture.yml b/config/sync/field.storage.user.field_user_picture.yml
index 1784fe7..f201cfb 100644
--- a/config/sync/field.storage.user.field_user_picture.yml
+++ b/config/sync/field.storage.user.field_user_picture.yml
@@ -11,9 +11,6 @@ field_name: field_user_picture
 entity_type: user
 type: image
 settings:
-  target_type: file
-  display_field: false
-  display_default: false
   uri_scheme: public
   default_image:
     uuid: ''
@@ -21,6 +18,9 @@ settings:
     title: ''
     width: null
     height: null
+  target_type: file
+  display_field: false
+  display_default: false
 module: image
 locked: false
 cardinality: 1
diff --git a/config/sync/field_ui.settings.yml b/config/sync/field_ui.settings.yml
index 365450f..2743969 100644
--- a/config/sync/field_ui.settings.yml
+++ b/config/sync/field_ui.settings.yml
@@ -1,3 +1,3 @@
+field_prefix: field_
 _core:
   default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM
-field_prefix: field_
diff --git a/config/sync/file.settings.yml b/config/sync/file.settings.yml
index 4481791..3315165 100644
--- a/config/sync/file.settings.yml
+++ b/config/sync/file.settings.yml
@@ -1,15 +1,8 @@
-_core:
-  default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM
 description:
   type: textfield
   length: 128
 icon:
   directory: core/modules/file/icons
 make_unused_managed_files_temporary: false
-filename_sanitization:
-  transliterate: false
-  replace_whitespace: false
-  replace_non_alphanumeric: false
-  deduplicate_separators: false
-  lowercase: false
-  replacement_character: '-'
+_core:
+  default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM
diff --git a/config/sync/filter.format.basic_html.yml b/config/sync/filter.format.basic_html.yml
index 4ada830..3d880f8 100644
--- a/config/sync/filter.format.basic_html.yml
+++ b/config/sync/filter.format.basic_html.yml
@@ -4,19 +4,21 @@ status: true
 dependencies:
   module:
     - editor
-    - linkit
 _core:
   default_config_hash: 73bBl0mQ4I5Md9_FoI1V9MErX_I6ykC9gNKwLqb80Ko
 name: 'Basic HTML'
 format: basic_html
-weight: -9
+weight: 0
 filters:
-  editor_file_reference:
-    id: editor_file_reference
-    provider: editor
+  filter_html:
+    id: filter_html
+    provider: filter
     status: true
-    weight: 11
-    settings: {  }
+    weight: -10
+    settings:
+      allowed_html: '<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <p> <br> <span> <img src alt height width data-entity-type data-entity-uuid data-align data-caption>'
+      filter_html_help: false
+      filter_html_nofollow: false
   filter_align:
     id: filter_align
     provider: filter
@@ -29,31 +31,15 @@ filters:
     status: true
     weight: 8
     settings: {  }
-  filter_html:
-    id: filter_html
-    provider: filter
-    status: true
-    weight: -10
-    settings:
-      allowed_html: '<br> <p> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <cite> <dl> <dt> <dd> <a hreflang href class data-insert-attach data-insert-type title> <blockquote cite> <ul type> <ol type start> <strong> <em> <code> <li> <img src alt height width data-entity-uuid data-entity-type data-caption data-align class data-insert-attach data-insert-type sizes srcset title> <audio contenteditable controls data-insert-attach data-insert-type src type> <span class data-insert-attach data-insert-type> <video contenteditable controls data-insert-attach data-insert-type src type>'
-      filter_html_help: false
-      filter_html_nofollow: false
   filter_html_image_secure:
     id: filter_html_image_secure
     provider: filter
     status: true
     weight: 9
     settings: {  }
-  filter_image_lazy_load:
-    id: filter_image_lazy_load
-    provider: filter
+  editor_file_reference:
+    id: editor_file_reference
+    provider: editor
     status: true
-    weight: 12
+    weight: 11
     settings: {  }
-  linkit:
-    id: linkit
-    provider: linkit
-    status: true
-    weight: -11
-    settings:
-      title: false
diff --git a/config/sync/filter.format.footnote.yml b/config/sync/filter.format.footnote.yml
deleted file mode 100644
index 7533cde..0000000
--- a/config/sync/filter.format.footnote.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-status: true
-dependencies:
-  module:
-    - footnotes
-name: Footnote
-format: footnote
-filters:
-  filter_html:
-    id: filter_html
-    provider: filter
-    status: true
-    weight: -10
-    settings:
-      allowed_html: '<br> <p> <strong> <em> <a href>'
-      filter_html_help: true
-      filter_html_nofollow: false
-  filter_footnotes:
-    id: filter_footnotes
-    provider: footnotes
-    status: false
-    weight: 0
-    settings:
-      footnotes_collapse: false
-      footnotes_css: true
-      footnotes_dialog: false
-      footnotes_footer_disable: false
diff --git a/config/sync/filter.format.full_html.yml b/config/sync/filter.format.full_html.yml
index 141e791..0fc134c 100644
--- a/config/sync/filter.format.full_html.yml
+++ b/config/sync/filter.format.full_html.yml
@@ -4,109 +4,33 @@ status: true
 dependencies:
   module:
     - editor
-    - footnotes
-    - linkit
-    - media
-    - noreferrer
 _core:
   default_config_hash: Ntb6R4iBtiXqdVDdJTRFIQFCPmwCTUi9hbphjDkjZWA
 name: 'Full HTML'
 format: full_html
-weight: -10
+weight: 1
 filters:
-  editor_file_reference:
-    id: editor_file_reference
-    provider: editor
-    status: true
-    weight: -47
-    settings: {  }
   filter_align:
     id: filter_align
     provider: filter
     status: true
-    weight: -50
-    settings: {  }
-  filter_autop:
-    id: filter_autop
-    provider: filter
-    status: false
-    weight: -44
+    weight: 8
     settings: {  }
   filter_caption:
     id: filter_caption
     provider: filter
     status: true
-    weight: -49
-    settings: {  }
-  filter_footnotes:
-    id: filter_footnotes
-    provider: footnotes
-    status: true
-    weight: -42
-    settings:
-      footnotes_collapse: true
-      footnotes_css: true
-      footnotes_dialog: false
-      footnotes_footer_disable: false
-  filter_html:
-    id: filter_html
-    provider: filter
-    status: false
-    weight: -46
-    settings:
-      allowed_html: ''
-      filter_html_help: true
-      filter_html_nofollow: false
-  filter_html_escape:
-    id: filter_html_escape
-    provider: filter
-    status: false
-    weight: -45
-    settings: {  }
-  filter_html_image_secure:
-    id: filter_html_image_secure
-    provider: filter
-    status: false
-    weight: -40
+    weight: 9
     settings: {  }
   filter_htmlcorrector:
     id: filter_htmlcorrector
     provider: filter
     status: true
-    weight: -41
+    weight: 10
     settings: {  }
-  filter_image_lazy_load:
-    id: filter_image_lazy_load
-    provider: filter
+  editor_file_reference:
+    id: editor_file_reference
+    provider: editor
     status: true
-    weight: -46
-    settings: {  }
-  filter_url:
-    id: filter_url
-    provider: filter
-    status: false
-    weight: -43
-    settings:
-      filter_url_length: 72
-  linkit:
-    id: linkit
-    provider: linkit
-    status: true
-    weight: -47
-    settings:
-      title: true
-  media_embed:
-    id: media_embed
-    provider: media
-    status: true
-    weight: 100
-    settings:
-      default_view_mode: default
-      allowed_view_modes: {  }
-      allowed_media_types: {  }
-  noreferrer:
-    id: noreferrer
-    provider: noreferrer
-    status: true
-    weight: -48
+    weight: 11
     settings: {  }
diff --git a/config/sync/filter.format.minimalhtml.yml b/config/sync/filter.format.minimalhtml.yml
deleted file mode 100644
index 5aa5eb3..0000000
--- a/config/sync/filter.format.minimalhtml.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-uuid: 6f68254e-36e0-4b5d-9e86-98a46183585c
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: 92ohirYz2djTZfHPcIDKZb7qWJfnf8PejLU9mQZs5GY
-name: 'Minimal HTML'
-format: minimalhtml
-weight: 0
-filters:
-  filter_autop:
-    id: filter_autop
-    provider: filter
-    status: true
-    weight: 0
-    settings: {  }
-  filter_html:
-    id: filter_html
-    provider: filter
-    status: true
-    weight: -10
-    settings:
-      allowed_html: '<br> <p> <cite> <dl> <dt> <dd> <abbr title> <a hreflang href> <blockquote cite> <ul type> <ol type start> <strong> <em> <code> <li>'
-      filter_html_help: true
-      filter_html_nofollow: false
-  filter_htmlcorrector:
-    id: filter_htmlcorrector
-    provider: filter
-    status: true
-    weight: 10
-    settings: {  }
-  filter_url:
-    id: filter_url
-    provider: filter
-    status: true
-    weight: 0
-    settings:
-      filter_url_length: 72
diff --git a/config/sync/filter.format.plain_text.yml b/config/sync/filter.format.plain_text.yml
index c89dab8..45d78cb 100644
--- a/config/sync/filter.format.plain_text.yml
+++ b/config/sync/filter.format.plain_text.yml
@@ -6,18 +6,8 @@ _core:
   default_config_hash: NIKBt6kw_uPhNI0qtR2DnRf7mSOgAQdx7Q94SKMjXbQ
 name: 'Plain text'
 format: plain_text
-weight: -7
+weight: 10
 filters:
-  filter_autop:
-    id: filter_autop
-    provider: filter
-    status: true
-    weight: 0
-    settings: {  }
-  filter_footnotes:
-    settings:
-      footnotes_footer_disable: false
-      footnotes_dialog: false
   filter_html_escape:
     id: filter_html_escape
     provider: filter
@@ -31,3 +21,9 @@ filters:
     weight: 0
     settings:
       filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
diff --git a/config/sync/filter.format.restricted_html.yml b/config/sync/filter.format.restricted_html.yml
index 285ee25..e27657d 100644
--- a/config/sync/filter.format.restricted_html.yml
+++ b/config/sync/filter.format.restricted_html.yml
@@ -6,18 +6,8 @@ _core:
   default_config_hash: svzvsrZlfyHwBHGze539jJhmQPyb-CLVSc_jNHreKLw
 name: 'Restricted HTML'
 format: restricted_html
-weight: -8
+weight: 0
 filters:
-  filter_autop:
-    id: filter_autop
-    provider: filter
-    status: true
-    weight: 0
-    settings: {  }
-  filter_footnotes:
-    settings:
-      footnotes_footer_disable: false
-      footnotes_dialog: false
   filter_html:
     id: filter_html
     provider: filter
@@ -27,6 +17,12 @@ filters:
       allowed_html: '<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>'
       filter_html_help: true
       filter_html_nofollow: false
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
   filter_url:
     id: filter_url
     provider: filter
diff --git a/config/sync/filter.settings.yml b/config/sync/filter.settings.yml
index 9ce2939..dfcfed3 100644
--- a/config/sync/filter.settings.yml
+++ b/config/sync/filter.settings.yml
@@ -1,4 +1,4 @@
-_core:
-  default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
 fallback_format: plain_text
 always_show_fallback_choice: false
+_core:
+  default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
diff --git a/config/sync/fitvids.settings.yml b/config/sync/fitvids.settings.yml
deleted file mode 100644
index 71a927c..0000000
--- a/config/sync/fitvids.settings.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-selectors: .node
-custom_vendors: ''
-ignore_selectors: ''
-_core:
-  default_config_hash: 2VIFfYIzLIphEpkJSH9KfhEE0P66ieHfusDj6QMJIzY
diff --git a/config/sync/focal_point.settings.yml b/config/sync/focal_point.settings.yml
index 75b071d..a4b65ee 100644
--- a/config/sync/focal_point.settings.yml
+++ b/config/sync/focal_point.settings.yml
@@ -1,4 +1,4 @@
-_core:
-  default_config_hash: 8JOAPEbjHMB4rDFCsu3EXEx6L2UDQ5SSDyN0d7S0Ic0
 crop_type: focal_point
 default_value: '50,50'
+_core:
+  default_config_hash: 8JOAPEbjHMB4rDFCsu3EXEx6L2UDQ5SSDyN0d7S0Ic0
diff --git a/config/sync/geofresco.settings.yml b/config/sync/geofresco.settings.yml
index 68525f5..6574e57 100644
--- a/config/sync/geofresco.settings.yml
+++ b/config/sync/geofresco.settings.yml
@@ -1,7 +1,7 @@
 features:
   node_user_picture: true
   comment_user_picture: true
-  comment_user_verification: 0
+  comment_user_verification: 1
   favicon: 1
 logo:
   use_default: 1
diff --git a/config/sync/givebutter.settings.yml b/config/sync/givebutter.settings.yml
deleted file mode 100644
index 0c03c86..0000000
--- a/config/sync/givebutter.settings.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-script:
-  acct: rr1fYlKKbeIogXUq
-visibility:
-  enable: true
-  request_path_mode: 0
-  request_path_pages: ''
diff --git a/config/sync/google_analytics.settings.yml b/config/sync/google_analytics.settings.yml
deleted file mode 100644
index 2c05db4..0000000
--- a/config/sync/google_analytics.settings.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-_core:
-  default_config_hash: Vx5EGxHruJuiMSwDv8Mg3PBf9RaPo8o2MCj8_QeTUhg
-account: UA-29989015-1
-domain_mode: 0
-cross_domains: ''
-visibility:
-  request_path_mode: 0
-  request_path_pages: "/admin\r\n/admin/*\r\n/batch\r\n/node/add*\r\n/node/*/*\r\n/user/*/*"
-  user_role_mode: 1
-  user_role_roles:
-    administrator: administrator
-  user_account_mode: 1
-track:
-  outbound: true
-  mailto: true
-  tel: true
-  files: true
-  files_extensions: '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip'
-  colorbox: true
-  linkid: false
-  urlfragments: false
-  userid: false
-  messages:
-    status: status
-    warning: warning
-    error: error
-  site_search: false
-  adsense: false
-  displayfeatures: true
-privacy:
-  anonymizeip: true
-custom:
-  parameters: {  }
-codesnippet:
-  create: {  }
-  before: ''
-  after: ''
-translation_set: false
-cache: false
-debug: false
diff --git a/config/sync/hal.settings.yml b/config/sync/hal.settings.yml
index d8fe02e..afd7fa3 100644
--- a/config/sync/hal.settings.yml
+++ b/config/sync/hal.settings.yml
@@ -1,3 +1,4 @@
+link_domain: null
+bc_file_uri_as_url_normalizer: false
 _core:
   default_config_hash: swYtdod4psGvRvRY6OTGagGJPAuknS7WMgn1089yjL0
-link_domain: null
diff --git a/config/sync/honeypot.settings.yml b/config/sync/honeypot.settings.yml
deleted file mode 100644
index 319b481..0000000
--- a/config/sync/honeypot.settings.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-_core:
-  default_config_hash: 9bVDfWSa_In6VzTXmy04jJ_3ZQobihKjO9isuuUCPaw
-protect_all_forms: false
-unprotected_forms:
-  - user_login_form
-  - search_form
-  - search_block_form
-  - views_exposed_form
-  - honeypot_settings_form
-log: true
-element_name: url
-time_limit: 6
-expire: 300
-form_settings:
-  user_register_form: true
-  user_pass: false
-  contact_message_feedback_form: true
-  contact_message_personal_form: true
-  node_article_form: false
-  node_blog_form: false
-  node_collection_form: false
-  node_gleaning_form: false
-  node_landing_page_form: false
-  node_page_form: false
-  node_people_form: false
-  comment_comment_form: true
diff --git a/config/sync/image.settings.yml b/config/sync/image.settings.yml
index b757490..52ee4a8 100644
--- a/config/sync/image.settings.yml
+++ b/config/sync/image.settings.yml
@@ -1,5 +1,5 @@
-_core:
-  default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw
 preview_image: core/modules/image/sample.png
 allow_insecure_derivatives: false
 suppress_itok_output: false
+_core:
+  default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw
diff --git a/config/sync/image.style.crop_thumbnail.yml b/config/sync/image.style.crop_thumbnail.yml
deleted file mode 100644
index b8aafc1..0000000
--- a/config/sync/image.style.crop_thumbnail.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: 8e072ce5-ae52-4fe9-bffc-277105a8d0e1
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0
-name: crop_thumbnail
-label: 'Crop thumbnail'
-effects:
-  8fc26706-68dc-4eb7-8121-33e3936ed55f:
-    uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f
-    id: image_scale
-    weight: 1
-    data:
-      width: 400
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_extra_wide_extra_large.yml b/config/sync/image.style.drutopia_extra_wide_extra_large.yml
deleted file mode 100644
index 2e2be98..0000000
--- a/config/sync/image.style.drutopia_extra_wide_extra_large.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 535a096d-62d5-49d5-bc77-5561f1aec53c
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.extra_wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: PXhHY3h02Ao3iBYcAQTuJ9LhQ5ckRxBL91-vvmgWA7g
-name: drutopia_extra_wide_extra_large
-label: 'Extra-wide extra-large'
-effects:
-  d113d848-f9e6-4fd2-8c98-9b859796e840:
-    uuid: d113d848-f9e6-4fd2-8c98-9b859796e840
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: extra_wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  c4263bcc-2975-4d54-99ca-296c5b6131f5:
-    uuid: c4263bcc-2975-4d54-99ca-296c5b6131f5
-    id: image_scale
-    weight: 2
-    data:
-      width: 2600
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_extra_wide_extra_small.yml b/config/sync/image.style.drutopia_extra_wide_extra_small.yml
deleted file mode 100644
index 8448e8b..0000000
--- a/config/sync/image.style.drutopia_extra_wide_extra_small.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: b3f331ba-c42f-4926-a70a-cd79d6380e2a
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.extra_wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: c-uUWpF34rkPWBXjgYY-1shoaUQAkY8VW7PcLfVzMAs
-name: drutopia_extra_wide_extra_small
-label: 'Extra-wide extra-small'
-effects:
-  99a5677f-a2b4-4c3b-a6ae-ab59b5eee3e9:
-    uuid: 99a5677f-a2b4-4c3b-a6ae-ab59b5eee3e9
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: extra_wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  1556c95b-f766-48de-ad6d-b6a75a18a632:
-    uuid: 1556c95b-f766-48de-ad6d-b6a75a18a632
-    id: image_scale_and_crop
-    weight: 3
-    data:
-      width: 270
-      height: 135
-      anchor: center-top
diff --git a/config/sync/image.style.drutopia_extra_wide_large.yml b/config/sync/image.style.drutopia_extra_wide_large.yml
deleted file mode 100644
index b4700ed..0000000
--- a/config/sync/image.style.drutopia_extra_wide_large.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 7596c1f3-e0b1-4328-87f7-9eeb80b96264
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.extra_wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: X9tDFMDI1F-0mmEmXTK3g_nTmdA4e0oRh2h6YA-p9so
-name: drutopia_extra_wide_large
-label: 'Extra-wide large'
-effects:
-  534259e4-b61a-4a96-b131-50742a98770c:
-    uuid: 534259e4-b61a-4a96-b131-50742a98770c
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: extra_wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  da282f38-1997-4208-bfd9-a6f5bebd2930:
-    uuid: da282f38-1997-4208-bfd9-a6f5bebd2930
-    id: image_scale
-    weight: 2
-    data:
-      width: 1900
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_extra_wide_medium.yml b/config/sync/image.style.drutopia_extra_wide_medium.yml
deleted file mode 100644
index 9d6911c..0000000
--- a/config/sync/image.style.drutopia_extra_wide_medium.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 1a9542d2-92a9-45d5-b667-e3948638ef8c
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.extra_wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: H3KInR1AvRnzjtUcaEfaXIZHE60b4WiqZvocT0octA8
-name: drutopia_extra_wide_medium
-label: 'Extra-wide medium'
-effects:
-  fc5b7ebc-0309-45f4-8d0c-2adec1ea5960:
-    uuid: fc5b7ebc-0309-45f4-8d0c-2adec1ea5960
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: extra_wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  a920756b-b3e1-4143-a54d-78b42bc9fcdc:
-    uuid: a920756b-b3e1-4143-a54d-78b42bc9fcdc
-    id: image_scale
-    weight: 2
-    data:
-      width: 1300
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_extra_wide_small.yml b/config/sync/image.style.drutopia_extra_wide_small.yml
deleted file mode 100644
index 18d4598..0000000
--- a/config/sync/image.style.drutopia_extra_wide_small.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 4d322045-7296-4393-a0ea-64e10c6d7206
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.extra_wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: 5QIlla3TxySeT5paJmoeqraqs1oe6OG6nYjGpFBoNio
-name: drutopia_extra_wide_small
-label: 'Extra-wide small'
-effects:
-  84311a0a-d6a5-43ca-8fe9-15dd8bfee5c4:
-    uuid: 84311a0a-d6a5-43ca-8fe9-15dd8bfee5c4
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: extra_wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  96baa943-7908-4b3a-9dee-a9216c921aaa:
-    uuid: 96baa943-7908-4b3a-9dee-a9216c921aaa
-    id: image_scale_and_crop
-    weight: 3
-    data:
-      width: 650
-      height: 325
-      anchor: center-top
diff --git a/config/sync/image.style.drutopia_square_extra_large.yml b/config/sync/image.style.drutopia_square_extra_large.yml
deleted file mode 100644
index bb12b17..0000000
--- a/config/sync/image.style.drutopia_square_extra_large.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 26845d43-2326-4124-937e-9a1cb1e6fad4
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.square
-  module:
-    - crop
-_core:
-  default_config_hash: CGXRhZowgLgmR1CW9PTuH4_kI4yl8jmxOCyzrcXkB8s
-name: drutopia_square_extra_large
-label: 'Square extra-large'
-effects:
-  9d3d487e-7c7c-4245-b48e-10fa2d7fcde0:
-    uuid: 9d3d487e-7c7c-4245-b48e-10fa2d7fcde0
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: square
-      automatic_crop_provider: automated_crop_default
-  e7fdbc5d-7a1a-4c18-a422-7c4bc2fdc82a:
-    uuid: e7fdbc5d-7a1a-4c18-a422-7c4bc2fdc82a
-    id: image_scale
-    weight: 2
-    data:
-      width: 1300
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_square_extra_small.yml b/config/sync/image.style.drutopia_square_extra_small.yml
deleted file mode 100644
index 83d6403..0000000
--- a/config/sync/image.style.drutopia_square_extra_small.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: efb261bc-b48e-4290-b8fc-debc2af4f44b
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.square
-  module:
-    - crop
-_core:
-  default_config_hash: a4g3N9iSVS0w4My8vKRAJVqXGFBLbBARijt_Bzxjs5o
-name: drutopia_square_extra_small
-label: 'Square extra-small '
-effects:
-  6b4924cb-48f6-43c2-b837-206e952e58b2:
-    uuid: 6b4924cb-48f6-43c2-b837-206e952e58b2
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: square
-      automatic_crop_provider: automated_crop_default
-  0a847a91-370f-4044-965f-3ee80816925e:
-    uuid: 0a847a91-370f-4044-965f-3ee80816925e
-    id: image_scale
-    weight: 2
-    data:
-      width: 135
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_square_large.yml b/config/sync/image.style.drutopia_square_large.yml
deleted file mode 100644
index 3b0de14..0000000
--- a/config/sync/image.style.drutopia_square_large.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: b5241f3e-9ae5-47c3-accc-2dd7cbc08753
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.square
-  module:
-    - crop
-_core:
-  default_config_hash: 6qzuaSacNLzuiIi1Wl-ldYKZgfRmjLhjBXQVTRCZG-s
-name: drutopia_square_large
-label: 'Square large'
-effects:
-  1a1643eb-5557-4367-a03d-5aa277f9dad0:
-    uuid: 1a1643eb-5557-4367-a03d-5aa277f9dad0
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: square
-      automatic_crop_provider: automated_crop_default
-  e5572093-6c4a-4578-bbf7-8c97649dd59f:
-    uuid: e5572093-6c4a-4578-bbf7-8c97649dd59f
-    id: image_scale
-    weight: 2
-    data:
-      width: 950
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_square_medium.yml b/config/sync/image.style.drutopia_square_medium.yml
deleted file mode 100644
index 56d3fea..0000000
--- a/config/sync/image.style.drutopia_square_medium.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 5a4e852f-1617-4701-ad6b-e8df42c837f0
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.square
-  module:
-    - crop
-_core:
-  default_config_hash: wiWS9f9KS8VAgCv0Jf1xH1QwVxqm_NJWkvlcORNCI_g
-name: drutopia_square_medium
-label: 'Square medium'
-effects:
-  20ae03dc-f974-4bca-8fa0-5fd1d98b6f91:
-    uuid: 20ae03dc-f974-4bca-8fa0-5fd1d98b6f91
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: square
-      automatic_crop_provider: automated_crop_default
-  ebced429-7f52-4fd7-8f4b-8eb637fd7b56:
-    uuid: ebced429-7f52-4fd7-8f4b-8eb637fd7b56
-    id: image_scale
-    weight: 2
-    data:
-      width: 650
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_square_small.yml b/config/sync/image.style.drutopia_square_small.yml
deleted file mode 100644
index 75dedf8..0000000
--- a/config/sync/image.style.drutopia_square_small.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 2e20c546-8833-4725-a0a5-8fc8353844df
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.square
-  module:
-    - crop
-_core:
-  default_config_hash: toUvv7Z-gBe0OOMy_xCFIe_gAKi9l7i5_si2FPxqAqI
-name: drutopia_square_small
-label: 'Square small'
-effects:
-  f501ba24-4feb-44a7-8a09-b29f98cd9b25:
-    uuid: f501ba24-4feb-44a7-8a09-b29f98cd9b25
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: square
-      automatic_crop_provider: automated_crop_default
-  e935798f-d97a-4f96-9cbd-20ed7ae9a358:
-    uuid: e935798f-d97a-4f96-9cbd-20ed7ae9a358
-    id: image_scale
-    weight: 2
-    data:
-      width: 325
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_wide.yml b/config/sync/image.style.drutopia_wide.yml
deleted file mode 100644
index b023a5a..0000000
--- a/config/sync/image.style.drutopia_wide.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: f78e64b8-f5f8-4791-8ef6-01db9520246b
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: kNNDAZPw3BxoRNwagvduKCcDVVVtpuNFPNX4tj_ufig
-name: drutopia_wide
-label: 'Wide (1090)'
-effects:
-  09959c15-59ce-4f6d-90df-e2d7cf32bce5:
-    uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5
-    id: image_scale
-    weight: -9
-    data:
-      width: 1090
-      height: null
-      upscale: false
-  1a353a64-72a1-44d5-b757-0288cd4fb157:
-    uuid: 1a353a64-72a1-44d5-b757-0288cd4fb157
-    id: crop_crop
-    weight: -10
-    data:
-      crop_type: wide_rectangle
-      automatic_crop_provider: automated_crop_default
diff --git a/config/sync/image.style.drutopia_wide_extra_large.yml b/config/sync/image.style.drutopia_wide_extra_large.yml
deleted file mode 100644
index 71c85d4..0000000
--- a/config/sync/image.style.drutopia_wide_extra_large.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: ec4c99b9-31ef-4fd6-a283-6530d19876db
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: '-IL2VFbEBYRJD_SOOmtiIS2Cv35Vfk1asab0JlGhvhA'
-name: drutopia_wide_extra_large
-label: 'Wide extra-large'
-effects:
-  ec86d675-795f-4a16-b497-3838af74d1c4:
-    uuid: ec86d675-795f-4a16-b497-3838af74d1c4
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  69c087e5-402d-4849-be76-16eb22dd7fc1:
-    uuid: 69c087e5-402d-4849-be76-16eb22dd7fc1
-    id: image_scale
-    weight: 2
-    data:
-      width: 2600
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_wide_extra_small.yml b/config/sync/image.style.drutopia_wide_extra_small.yml
deleted file mode 100644
index 292dc46..0000000
--- a/config/sync/image.style.drutopia_wide_extra_small.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: a74321c1-ea0b-4065-b016-2ed8d07852ad
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: zR-DPkkCP0aNRxhTjNasr1aYbZG7uL5bm14tnq8voZA
-name: drutopia_wide_extra_small
-label: 'Wide extra-small'
-effects:
-  8b4d9126-dd97-4b10-89d0-be415358d3ad:
-    uuid: 8b4d9126-dd97-4b10-89d0-be415358d3ad
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  f33c7363-1707-457f-bd02-58058c40f5d4:
-    uuid: f33c7363-1707-457f-bd02-58058c40f5d4
-    id: image_scale
-    weight: 2
-    data:
-      width: 270
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_wide_large.yml b/config/sync/image.style.drutopia_wide_large.yml
deleted file mode 100644
index eb88197..0000000
--- a/config/sync/image.style.drutopia_wide_large.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 14fbe5d1-fc16-43a7-8526-3aaeda995edd
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: 5ES-pOsiQ5NKYhLXPVH4wo94Yk73gsZluOJZtod83dY
-name: drutopia_wide_large
-label: 'Wide large'
-effects:
-  2dc5870d-380f-4214-ab18-1f4b97f662ac:
-    uuid: 2dc5870d-380f-4214-ab18-1f4b97f662ac
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  b4a65084-2cba-475a-8452-840d6e2eee5a:
-    uuid: b4a65084-2cba-475a-8452-840d6e2eee5a
-    id: image_scale
-    weight: 2
-    data:
-      width: 1900
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_wide_medium.yml b/config/sync/image.style.drutopia_wide_medium.yml
deleted file mode 100644
index 20f839c..0000000
--- a/config/sync/image.style.drutopia_wide_medium.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: b35974df-c27f-4bf6-a710-ca0611879947
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: L1IxLUShVV_NQDFMwExe3T0Ubt9f4UPZh4yhksmsnDE
-name: drutopia_wide_medium
-label: 'Wide medium'
-effects:
-  ebe52955-3408-4181-8cb0-26aa351e348e:
-    uuid: ebe52955-3408-4181-8cb0-26aa351e348e
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  6fa0acf6-4530-4488-aa0a-10342e34cd51:
-    uuid: 6fa0acf6-4530-4488-aa0a-10342e34cd51
-    id: image_scale
-    weight: 2
-    data:
-      width: 1300
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.drutopia_wide_small.yml b/config/sync/image.style.drutopia_wide_small.yml
deleted file mode 100644
index 2adb7e1..0000000
--- a/config/sync/image.style.drutopia_wide_small.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: d8483b24-6169-4a7a-b70c-e091e23a60e7
-langcode: en
-status: true
-dependencies:
-  config:
-    - crop.type.wide_rectangle
-  module:
-    - crop
-_core:
-  default_config_hash: b07us1-9XDjdOGTsn6ZPtECcGNWEgtzF8XXTO_JHy5s
-name: drutopia_wide_small
-label: 'Wide small'
-effects:
-  816ee922-2f69-4770-8c87-74b09ad53a0f:
-    uuid: 816ee922-2f69-4770-8c87-74b09ad53a0f
-    id: crop_crop
-    weight: 1
-    data:
-      crop_type: wide_rectangle
-      automatic_crop_provider: automated_crop_default
-  aaabf105-6aa7-4d46-80ce-9674b0c54f95:
-    uuid: aaabf105-6aa7-4d46-80ce-9674b0c54f95
-    id: image_scale
-    weight: 2
-    data:
-      width: 650
-      height: null
-      upscale: false
diff --git a/config/sync/image.style.focal_point_220_square.yml b/config/sync/image.style.focal_point_220_square.yml
deleted file mode 100644
index c9713d4..0000000
--- a/config/sync/image.style.focal_point_220_square.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: 28c5170e-4d7c-43cd-8882-629c50607cd0
-langcode: en
-status: true
-dependencies:
-  module:
-    - focal_point
-_core:
-  default_config_hash: SgOXMfUaOC0ZUeczRr3HYchXj4gUjwMcADniCYJLymc
-name: focal_point_220_square
-label: 'Medium square (220x220) focal point'
-effects:
-  f6232ea6-e067-4638-a052-3744ec14a073:
-    uuid: f6232ea6-e067-4638-a052-3744ec14a073
-    id: focal_point_scale_and_crop
-    weight: 1
-    data:
-      width: 220
-      height: 220
-      crop_type: focal_point
diff --git a/config/sync/image.style.focal_point_480_square.yml b/config/sync/image.style.focal_point_480_square.yml
deleted file mode 100644
index f521046..0000000
--- a/config/sync/image.style.focal_point_480_square.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: b2f6326d-6f49-4c63-a89d-fcfaac6e44ed
-langcode: en
-status: true
-dependencies:
-  module:
-    - focal_point
-_core:
-  default_config_hash: 8kxkJflOy1gPVfj36En0POkNqcXVCe31GYg8BKQGnIA
-name: focal_point_480_square
-label: 'Large square (480×480) focal point'
-effects:
-  436dfbfa-0150-47e4-b412-b32f7526f872:
-    uuid: 436dfbfa-0150-47e4-b412-b32f7526f872
-    id: focal_point_scale_and_crop
-    weight: 1
-    data:
-      width: 480
-      height: 480
-      crop_type: focal_point
diff --git a/config/sync/image.style.linkit_result_thumbnail.yml b/config/sync/image.style.linkit_result_thumbnail.yml
deleted file mode 100644
index e26c273..0000000
--- a/config/sync/image.style.linkit_result_thumbnail.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: 53bf42a6-ccfb-4f9b-96ef-a88ffa716433
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: CMuvuRCfGZ5k3XgsXmkEc54rI8etDY1Qz2JP7JzKL-g
-name: linkit_result_thumbnail
-label: 'Linkit result thumbnail'
-effects:
-  2943df29-38ea-459c-ba1d-290489bb1807:
-    uuid: 2943df29-38ea-459c-ba1d-290489bb1807
-    id: image_scale_and_crop
-    weight: 1
-    data:
-      width: 50
-      height: 50
-      anchor: center-center
diff --git a/config/sync/image.style.media_library.yml b/config/sync/image.style.media_library.yml
deleted file mode 100644
index ec51cb6..0000000
--- a/config/sync/image.style.media_library.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: e7bd563c-b853-4401-852e-d015ee7067a0
-langcode: en
-status: true
-dependencies:
-  enforced:
-    module:
-      - media_library
-_core:
-  default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8
-name: media_library
-label: 'Media Library thumbnail (220×220)'
-effects:
-  75b076a8-1234-4b42-85db-bf377c4d8d5f:
-    uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f
-    id: image_scale
-    weight: 0
-    data:
-      width: 220
-      height: 220
-      upscale: false
diff --git a/config/sync/image.style.small_square.yml b/config/sync/image.style.small_square.yml
index 5420723..86bd654 100644
--- a/config/sync/image.style.small_square.yml
+++ b/config/sync/image.style.small_square.yml
@@ -1,19 +1,17 @@
 uuid: d0ba7637-bf70-49ee-925a-c943c24f7022
 langcode: en
 status: true
-dependencies:
-  module:
-    - focal_point
+dependencies: {  }
 _core:
   default_config_hash: bWYyQV3LvN1aF-D6S2BzSCVsHNkNoq-kEglfd0LLzZM
 name: small_square
-label: 'Small square (170x170) focal point'
+label: 'Small square (170x170)'
 effects:
-  5b1257a2-35db-4203-a97e-5d3e5e138bc5:
-    uuid: 5b1257a2-35db-4203-a97e-5d3e5e138bc5
-    id: focal_point_scale_and_crop
-    weight: 2
+  fa950bf3-2e2e-44b9-bf11-26bee6a3218a:
+    uuid: fa950bf3-2e2e-44b9-bf11-26bee6a3218a
+    id: image_scale_and_crop
+    weight: 1
     data:
       width: 170
       height: 170
-      crop_type: focal_point
+      anchor: center-center
diff --git a/config/sync/image.style.square_thumbnail.yml b/config/sync/image.style.square_thumbnail.yml
index b742c7c..401723f 100644
--- a/config/sync/image.style.square_thumbnail.yml
+++ b/config/sync/image.style.square_thumbnail.yml
@@ -14,5 +14,5 @@ effects:
     data:
       width: 180
       height: 180
-      anchor: center-center
       weight: 0
+      anchor: center-center
diff --git a/config/sync/image.style.wide.yml b/config/sync/image.style.wide.yml
deleted file mode 100644
index 210928b..0000000
--- a/config/sync/image.style.wide.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: 653046e5-1de0-4484-8ab4-12c4a5329e2d
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: LswCVLg8z4Zk1u6pV1Dpj1qUj5YY2CQ7_ojx7bJQ8qk
-name: wide
-label: 'Wide (1090)'
-effects:
-  09959c15-59ce-4f6d-90df-e2d7cf32bce5:
-    uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5
-    id: image_scale
-    weight: 1
-    data:
-      width: 1090
-      height: null
-      upscale: false
diff --git a/config/sync/image_widget_crop.settings.yml b/config/sync/image_widget_crop.settings.yml
deleted file mode 100644
index d7ceb3e..0000000
--- a/config/sync/image_widget_crop.settings.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-_core:
-  default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw
-settings:
-  library_url: ''
-  css_url: ''
-  crop_preview_image_style: crop_thumbnail
-  crop_list: {  }
-  crop_types_required: {  }
-  warn_multiple_usages: false
-  show_default_crop: true
-  notify_apply: false
-  notify_update: true
diff --git a/config/sync/insert.config.yml b/config/sync/insert.config.yml
deleted file mode 100644
index fa96ae1..0000000
--- a/config/sync/insert.config.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-_core:
-  default_config_hash: 15D6dRw1i0hm-4oGA1S1efHREHSxhSQYvdzQzVBn4c8
-text_formats:
-  - full_html
-css_classes:
-  file:
-    - ''
-  image:
-    - ''
-absolute: false
-file_field_images_enabled: false
-widgets:
-  file:
-    - file_generic
-  image:
-    - image_image
-file_extensions:
-  audio:
-    - mp3
-  video:
-    - mp4
diff --git a/config/sync/linkit.linkit_profile.default.yml b/config/sync/linkit.linkit_profile.default.yml
deleted file mode 100644
index 8b8f5f3..0000000
--- a/config/sync/linkit.linkit_profile.default.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: c3c2843d-7d15-4b2c-8ae9-8fc610a1956a
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-label: Default
-id: default
-description: ''
-matchers:
-  b6e55add-9083-4008-ae75-ff3fa1b532fd:
-    id: 'entity:node'
-    uuid: b6e55add-9083-4008-ae75-ff3fa1b532fd
-    settings:
-      metadata: '[node:content-type:name] Updated: [node:changed]'
-      bundles: {  }
-      group_by_bundle: false
-      substitution_type: canonical
-      include_unpublished: false
-    weight: 0
diff --git a/config/sync/mailchimp.settings.yml b/config/sync/mailchimp.settings.yml
deleted file mode 100644
index 96f2698..0000000
--- a/config/sync/mailchimp.settings.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-_core:
-  default_config_hash: x8k6uOqmSHPqpp71jYGxHF3_SAs3U-Pha3YCntQIhPU
-langcode: en
-api_key: null
-domain: ''
-use_oauth: false
-api_timeout: 10
-cron: false
-batch_limit: 100
-api_classname: Mailchimp\Mailchimp
-test_mode: false
-optin_check_email_msg: 'Please check your email to confirm your subscription.'
diff --git a/config/sync/media.settings.yml b/config/sync/media.settings.yml
deleted file mode 100644
index d54f078..0000000
--- a/config/sync/media.settings.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-_core:
-  default_config_hash: WCFqLQAxMw1weToDJEhfnW1Z-iOF7cqMdL8X7YTFxBA
-icon_base_uri: 'public://media-icons/generic'
-iframe_domain: null
-oembed_providers_url: 'https://oembed.com/providers.json'
-standalone_url: false
diff --git a/config/sync/media.type.audio.yml b/config/sync/media.type.audio.yml
deleted file mode 100644
index fa41182..0000000
--- a/config/sync/media.type.audio.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: edfd957b-7536-4595-b003-b0c80be02762
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: eJw8n6Tk2tO3ZysuEeGR1gZa1yRffaZzR4t0Q7iNurs
-id: audio
-label: Audio
-description: 'A locally hosted audio file.'
-source: audio_file
-queue_thumbnail_downloads: false
-new_revision: true
-source_configuration:
-  source_field: field_media_audio_file
-field_map:
-  name: name
diff --git a/config/sync/media.type.document.yml b/config/sync/media.type.document.yml
deleted file mode 100644
index 0c40b2d..0000000
--- a/config/sync/media.type.document.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: b5c9f819-d218-4f2f-8312-d70e66ebc676
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: _D9q3XSnP6ik9we9UuoTvZsQKPuYNp_G9PfwVtWzgnQ
-id: document
-label: Document
-description: 'An uploaded file or document, such as a PDF.'
-source: file
-queue_thumbnail_downloads: false
-new_revision: true
-source_configuration:
-  source_field: field_media_document
-field_map:
-  name: name
diff --git a/config/sync/media.type.image.yml b/config/sync/media.type.image.yml
deleted file mode 100644
index 0afda6b..0000000
--- a/config/sync/media.type.image.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: 0f5cabac-e5d2-4e53-90f0-f73373439028
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: 6Qope5wG7HUpV0tPOBMtDI_GZkHFcF1Xj4hgD9Cu_hM
-id: image
-label: Image
-description: 'Use local images for reusable media.'
-source: image
-queue_thumbnail_downloads: false
-new_revision: true
-source_configuration:
-  source_field: field_media_image
-field_map:
-  name: name
diff --git a/config/sync/media.type.remote_video.yml b/config/sync/media.type.remote_video.yml
deleted file mode 100644
index 667a155..0000000
--- a/config/sync/media.type.remote_video.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 54b98c92-e8e2-4106-9c76-00082f3990af
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: hIBTnDGgDKnCiP6HUZm1m7600DHUEpC6FN3LQ4sUgZ4
-id: remote_video
-label: 'Remote video'
-description: 'A remotely hosted video from YouTube or Vimeo.'
-source: 'oembed:video'
-queue_thumbnail_downloads: false
-new_revision: true
-source_configuration:
-  source_field: field_media_oembed_video
-  thumbnails_directory: 'public://oembed_thumbnails/[date:custom:Y-m]'
-  providers:
-    - YouTube
-    - Vimeo
-field_map:
-  title: name
diff --git a/config/sync/media.type.video.yml b/config/sync/media.type.video.yml
deleted file mode 100644
index 78a0b52..0000000
--- a/config/sync/media.type.video.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: a17fa7a3-1b38-4dfa-a905-6779fcedae9f
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: hzgvcRgZHltqWf8hBmttoWh95tCJoPL25lPq9YSIRsY
-id: video
-label: Video
-description: 'A locally hosted video file.'
-source: video_file
-queue_thumbnail_downloads: false
-new_revision: true
-source_configuration:
-  source_field: field_media_video_file
-field_map:
-  name: name
diff --git a/config/sync/media_library.settings.yml b/config/sync/media_library.settings.yml
deleted file mode 100644
index 3a1479a..0000000
--- a/config/sync/media_library.settings.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
-  default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60
-advanced_ui: false
diff --git a/config/sync/menu_ui.settings.yml b/config/sync/menu_ui.settings.yml
index 0b987fa..c9fe099 100644
--- a/config/sync/menu_ui.settings.yml
+++ b/config/sync/menu_ui.settings.yml
@@ -1,3 +1,3 @@
+override_parent_selector: false
 _core:
   default_config_hash: SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU
-override_parent_selector: false
diff --git a/config/sync/metatag.metatag_defaults.403.yml b/config/sync/metatag.metatag_defaults.403.yml
index a7ca786..2bfe47a 100644
--- a/config/sync/metatag.metatag_defaults.403.yml
+++ b/config/sync/metatag.metatag_defaults.403.yml
@@ -7,6 +7,5 @@ _core:
 id: '403'
 label: '403 access denied'
 tags:
-  robots: noindex
   canonical_url: '[site:url]'
   shortlink: '[site:url]'
diff --git a/config/sync/metatag.metatag_defaults.node.yml b/config/sync/metatag.metatag_defaults.node.yml
index 874b992..dfbbd9f 100644
--- a/config/sync/metatag.metatag_defaults.node.yml
+++ b/config/sync/metatag.metatag_defaults.node.yml
@@ -7,19 +7,6 @@ _core:
 id: node
 label: Content
 tags:
-  canonical_url: '[node:url]'
-  description: '[node:summary]'
-  image_src: '[node:field_image:0:focal_point_1300x650]'
-  og_description: '[node:field_summary]'
-  og_image: '[node:field_media_image:entity:field_media_image:focal_point_1300x650:url]'
-  og_image_alt: '[node:field_media_image:entity:field_media_image:alt]'
-  og_site_name: 'Grassroots Economic Organizing'
-  og_title: '[node:title]'
-  og_type: article
-  og_url: '[node:url:absolute]'
   title: '[node:title] | [site:name]'
-  twitter_cards_description: '[node:field_summary]'
-  twitter_cards_image: '[node:field_media_image:entity:field_media_image:focal_point_325x195:url]'
-  twitter_cards_image_alt: '[node:field_media_image:entity:field_media_image:alt]'
-  twitter_cards_title: '[node:title]'
-  twitter_cards_type: summary_large_image
+  description: '[node:summary]'
+  canonical_url: '[node:url]'
diff --git a/config/sync/metatag.settings.yml b/config/sync/metatag.settings.yml
deleted file mode 100644
index 9bc15ac..0000000
--- a/config/sync/metatag.settings.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-_core:
-  default_config_hash: 3mgYDspyj5REgG6ooA1izlcMzEs34kHPFUOMIXeDOco
-entity_type_groups:
-  node:
-    article:
-      basic: basic
-      advanced: advanced
-      open_graph: open_graph
-      twitter_cards: twitter_cards
-    blog:
-      open_graph: open_graph
-      twitter_cards: twitter_cards
-    collection:
-      open_graph: open_graph
-      twitter_cards: twitter_cards
-    gleaning:
-      open_graph: open_graph
-      twitter_cards: twitter_cards
-    page:
-      open_graph: open_graph
-      twitter_cards: twitter_cards
-    people:
-      open_graph: open_graph
-      twitter_cards: twitter_cards
-separator: ','
-tag_trim_method: beforeValue
-use_maxlength: true
-tag_trim_maxlength:
-  metatag_maxlength_title: null
-  metatag_maxlength_description: null
-  metatag_maxlength_abstract: null
-  metatag_maxlength_og_site_name: null
-  metatag_maxlength_og_title: null
-  metatag_maxlength_og_description: null
-  metatag_maxlength_twitter_cards_description: null
-  metatag_maxlength_twitter_cards_title: null
-tag_scroll_max_height: ''
-tag_trim_end: '|.,-:;/+&([{"'''
diff --git a/config/sync/migrate_drupal.settings.yml b/config/sync/migrate_drupal.settings.yml
index 13b1994..dfdbc58 100644
--- a/config/sync/migrate_drupal.settings.yml
+++ b/config/sync/migrate_drupal.settings.yml
@@ -1,7 +1,7 @@
-_core:
-  default_config_hash: 1daEO2inZc1i3d0Sn-ADIq9mUIU7tSLCxn579NT6f2g
 enforce_source_module_tags:
   - 'Drupal 6'
   - 'Drupal 7'
 follow_up_migration_tags:
   - 'Follow-up migration'
+_core:
+  default_config_hash: 1daEO2inZc1i3d0Sn-ADIq9mUIU7tSLCxn579NT6f2g
diff --git a/config/sync/node.settings.yml b/config/sync/node.settings.yml
index 6fcede9..1657c1c 100644
--- a/config/sync/node.settings.yml
+++ b/config/sync/node.settings.yml
@@ -1,3 +1,3 @@
+use_admin_theme: true
 _core:
   default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
-use_admin_theme: true
diff --git a/config/sync/node.type.article.yml b/config/sync/node.type.article.yml
index e3b385c..26a1f11 100644
--- a/config/sync/node.type.article.yml
+++ b/config/sync/node.type.article.yml
@@ -13,7 +13,7 @@ _core:
 name: Article
 type: article
 description: 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.'
-help: null
+help: ''
 new_revision: true
 preview_mode: 0
 display_submitted: true
diff --git a/config/sync/node.type.blog.yml b/config/sync/node.type.blog.yml
index 7c1e990..485ab46 100644
--- a/config/sync/node.type.blog.yml
+++ b/config/sync/node.type.blog.yml
@@ -14,7 +14,7 @@ _core:
 name: Blog
 type: blog
 description: 'Use <em>blog</em> for personal or journal-like posts.'
-help: null
+help: ''
 new_revision: true
 preview_mode: 0
 display_submitted: true
diff --git a/config/sync/node.type.collection.yml b/config/sync/node.type.collection.yml
index d285ada..2c26f5d 100644
--- a/config/sync/node.type.collection.yml
+++ b/config/sync/node.type.collection.yml
@@ -14,7 +14,7 @@ _core:
 name: Collection
 type: collection
 description: 'Create a <em>collection</em> to bring together ordered listings of Articles, Blog posts, or other content.  This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people.'
-help: null
+help: ''
 new_revision: true
 preview_mode: 1
 display_submitted: false
diff --git a/config/sync/node.type.gleaning.yml b/config/sync/node.type.gleaning.yml
index 1231eea..f2424a4 100644
--- a/config/sync/node.type.gleaning.yml
+++ b/config/sync/node.type.gleaning.yml
@@ -12,7 +12,7 @@ third_party_settings:
 name: Gleaning
 type: gleaning
 description: 'A gleaning is a quick link to material posted somewhere else online.  It should have a title, a link, and can also have a comment.  '
-help: null
+help: ''
 new_revision: true
 preview_mode: 0
 display_submitted: false
diff --git a/config/sync/node.type.landing_page.yml b/config/sync/node.type.landing_page.yml
index 2342f9f..41027ed 100644
--- a/config/sync/node.type.landing_page.yml
+++ b/config/sync/node.type.landing_page.yml
@@ -11,10 +11,10 @@ third_party_settings:
     parent: 'main:'
 _core:
   default_config_hash: QECb_5oLjGh317SVZR3QFu-KwYdEVSyCJt5RrxFDRgY
-name: 'Landing page (DEPRECATED)'
+name: 'Landing page'
 type: landing_page
-description: 'Use Page instead.  (Landing pages can be used for custom pages such as the home page.)'
-help: null
+description: 'Landing pages can be used for custom pages such as the home page.'
+help: ''
 new_revision: true
 preview_mode: 1
 display_submitted: false
diff --git a/config/sync/node.type.page.yml b/config/sync/node.type.page.yml
index 5c0cff6..b8f54cb 100644
--- a/config/sync/node.type.page.yml
+++ b/config/sync/node.type.page.yml
@@ -12,10 +12,10 @@ third_party_settings:
     parent: 'main:'
 _core:
   default_config_hash: FLnYNEOFyPHOO79AfbXqzGMZqlENS8dZ8-vDJW9e-Lk
-name: Page
+name: 'Basic page'
 type: page
-description: "Use <em>pages</em> for your basic static content, such as an 'About us' page."
-help: null
+description: 'Use <em>basic pages</em> for your static content, such as an ''About us'' page.'
+help: ''
 new_revision: true
 preview_mode: 0
 display_submitted: false
diff --git a/config/sync/node.type.people.yml b/config/sync/node.type.people.yml
index f69cf4b..7f8c340 100644
--- a/config/sync/node.type.people.yml
+++ b/config/sync/node.type.people.yml
@@ -11,10 +11,10 @@ third_party_settings:
     parent: 'main:'
 _core:
   default_config_hash: W25k-oPD3FBq8SxXsosUwsuhm7IKQZNzx4buVyV73sg
-name: Person
+name: People
 type: people
-description: 'Use the <em>person</em> content type for people such as staff, volunteers, contributors.'
-help: null
+description: 'Use <em>people</em> content type for people such as staff, volunteers, contributors.'
+help: ''
 new_revision: true
 preview_mode: 0
 display_submitted: false
diff --git a/config/sync/noreferrer.settings.yml b/config/sync/noreferrer.settings.yml
deleted file mode 100644
index 6d56215..0000000
--- a/config/sync/noreferrer.settings.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-_core:
-  default_config_hash: J8vFVOimVVtQZ_8aFYgcn6DJgdwMtVwwjZzXTe_nhOA
-noopener: true
-noreferrer: false
-publish: false
-subscribe_url: ''
-allowed_domains: 'agaric.coop geo.coop usworker.coop'
diff --git a/config/sync/octavia.settings.yml b/config/sync/octavia.settings.yml
index df077ec..9b1181c 100644
--- a/config/sync/octavia.settings.yml
+++ b/config/sync/octavia.settings.yml
@@ -1,14 +1,3 @@
-_core:
-  default_config_hash: 67Xcg6LAsHVMjU8lsXcnGGSsYifNZYozNWZPyqK0gaA
-favicon:
-  use_default: true
-features:
-  comment_user_picture: true
-  comment_user_verification: true
-  favicon: true
-  node_user_picture: true
-logo:
-  use_default: true
 general:
   block: 0
   icon: 1
@@ -44,3 +33,14 @@ cdn:
   bulmaswatch:
     version: 0.5.1
     theme: default
+features:
+  node_user_picture: true
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+logo:
+  use_default: true
+favicon:
+  use_default: true
+_core:
+  default_config_hash: 67Xcg6LAsHVMjU8lsXcnGGSsYifNZYozNWZPyqK0gaA
diff --git a/config/sync/paragraphs.paragraphs_type.drutopia_collection.yml b/config/sync/paragraphs.paragraphs_type.drutopia_collection.yml
deleted file mode 100644
index 948cf38..0000000
--- a/config/sync/paragraphs.paragraphs_type.drutopia_collection.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-uuid: aa44324b-593d-407b-8ed4-0f66c4cb87b0
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: xJxbh5L6gM8EZzAr1kp2OBNKKhv_5OE9anEo_btj2cA
-id: drutopia_collection
-label: Collection
-icon_uuid: null
-icon_default: null
-description: 'Allows grouping referenced content together.  For instance, an Issue collection could use collection paragraphs to group articles into three themes within that issue.'
-behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.faq.yml b/config/sync/paragraphs.paragraphs_type.faq.yml
index e537e29..58e074e 100644
--- a/config/sync/paragraphs.paragraphs_type.faq.yml
+++ b/config/sync/paragraphs.paragraphs_type.faq.yml
@@ -7,6 +7,5 @@ _core:
 id: faq
 label: FAQ
 icon_uuid: null
-icon_default: null
 description: ''
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.file.yml b/config/sync/paragraphs.paragraphs_type.file.yml
index 1927361..e7e26b3 100644
--- a/config/sync/paragraphs.paragraphs_type.file.yml
+++ b/config/sync/paragraphs.paragraphs_type.file.yml
@@ -7,6 +7,5 @@ _core:
 id: file
 label: File
 icon_uuid: null
-icon_default: null
 description: null
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.image.yml b/config/sync/paragraphs.paragraphs_type.image.yml
index 72be040..c90fe75 100644
--- a/config/sync/paragraphs.paragraphs_type.image.yml
+++ b/config/sync/paragraphs.paragraphs_type.image.yml
@@ -7,6 +7,5 @@ _core:
 id: image
 label: Image
 icon_uuid: null
-icon_default: null
 description: null
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.slide.yml b/config/sync/paragraphs.paragraphs_type.slide.yml
index 69713fe..821c000 100644
--- a/config/sync/paragraphs.paragraphs_type.slide.yml
+++ b/config/sync/paragraphs.paragraphs_type.slide.yml
@@ -7,6 +7,5 @@ _core:
 id: slide
 label: Slide
 icon_uuid: null
-icon_default: null
 description: null
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.text.yml b/config/sync/paragraphs.paragraphs_type.text.yml
index b496094..9009dbb 100644
--- a/config/sync/paragraphs.paragraphs_type.text.yml
+++ b/config/sync/paragraphs.paragraphs_type.text.yml
@@ -7,6 +7,5 @@ _core:
 id: text
 label: Text
 icon_uuid: null
-icon_default: null
 description: null
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.update.yml b/config/sync/paragraphs.paragraphs_type.update.yml
index d5e6a66..f56aaba 100644
--- a/config/sync/paragraphs.paragraphs_type.update.yml
+++ b/config/sync/paragraphs.paragraphs_type.update.yml
@@ -7,6 +7,5 @@ _core:
 id: update
 label: Update
 icon_uuid: null
-icon_default: null
 description: null
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.paragraphs_type.video.yml b/config/sync/paragraphs.paragraphs_type.video.yml
index f646941..c093847 100644
--- a/config/sync/paragraphs.paragraphs_type.video.yml
+++ b/config/sync/paragraphs.paragraphs_type.video.yml
@@ -7,6 +7,5 @@ _core:
 id: video
 label: Video
 icon_uuid: null
-icon_default: null
 description: 'For adding an embedded video from YouTube or Vimeo.'
 behavior_plugins: {  }
diff --git a/config/sync/paragraphs.settings.yml b/config/sync/paragraphs.settings.yml
index c43733b..cafb409 100644
--- a/config/sync/paragraphs.settings.yml
+++ b/config/sync/paragraphs.settings.yml
@@ -1,3 +1,3 @@
+show_unpublished: true
 _core:
   default_config_hash: 7eR0sk71Eol86r_A7BMqn5_46wzenh5J1O5vZRCGKv8
-show_unpublished: true
diff --git a/config/sync/pathauto.pattern.article_type.yml b/config/sync/pathauto.pattern.article_type.yml
index db2e663..e6387fa 100644
--- a/config/sync/pathauto.pattern.article_type.yml
+++ b/config/sync/pathauto.pattern.article_type.yml
@@ -3,6 +3,7 @@ langcode: en
 status: true
 dependencies:
   module:
+    - ctools
     - taxonomy
 _core:
   default_config_hash: MtYWd2Bu4lkfsQqq8nziFo81bxcl-2Thou3PGg0oIKY
@@ -13,12 +14,12 @@ pattern: '[term:vocabulary]/[term:name]'
 selection_criteria:
   cde01071-39bc-45f5-be97-cbc6a4fd47b2:
     id: 'entity_bundle:taxonomy_term'
-    negate: false
-    uuid: cde01071-39bc-45f5-be97-cbc6a4fd47b2
-    context_mapping:
-      taxonomy_term: taxonomy_term
     bundles:
       article_type: article_type
+    negate: false
+    context_mapping:
+      taxonomy_term: taxonomy_term
+    uuid: cde01071-39bc-45f5-be97-cbc6a4fd47b2
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.pattern.collection_type.yml b/config/sync/pathauto.pattern.collection_type.yml
deleted file mode 100644
index 13a6f2f..0000000
--- a/config/sync/pathauto.pattern.collection_type.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: 7e8d81ea-6e4f-4fee-a1ad-6f1621656038
-langcode: en
-status: true
-dependencies:
-  module:
-    - ctools
-    - taxonomy
-_core:
-  default_config_hash: 8ybgXD47lBYtq3zDwOhbr_pdGHwEQdDfLeUvvnBam5A
-id: collection_type
-label: 'Collection type'
-type: 'canonical_entities:taxonomy_term'
-pattern: '[term:vocabulary]/[term:name]'
-selection_criteria:
-  4706378a-3a02-48d7-8672-d8313e9c20f3:
-    id: 'entity_bundle:taxonomy_term'
-    negate: false
-    uuid: 4706378a-3a02-48d7-8672-d8313e9c20f3
-    context_mapping:
-      taxonomy_term: taxonomy_term
-    bundles:
-      article_type: collection_type
-selection_logic: and
-weight: -5
-relationships: {  }
diff --git a/config/sync/pathauto.pattern.generic_content.yml b/config/sync/pathauto.pattern.generic_content.yml
deleted file mode 100644
index 91e03d8..0000000
--- a/config/sync/pathauto.pattern.generic_content.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: d084b2f5-c12e-418d-9de3-f44f72fca440
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-_core:
-  default_config_hash: HXi80aTzhUO2qnTzoUvXR-MbpO673Ud07zTY3c1iEpI
-id: generic_content
-label: 'Generic content'
-type: 'canonical_entities:node'
-pattern: '[node:content-type]/[node:title]'
-selection_criteria: {  }
-selection_logic: and
-weight: 0
-relationships: {  }
diff --git a/config/sync/pathauto.pattern.generic_term.yml b/config/sync/pathauto.pattern.generic_term.yml
deleted file mode 100644
index 84a9a00..0000000
--- a/config/sync/pathauto.pattern.generic_term.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: ee95b79d-75ed-4bbd-a902-a99d4b366806
-langcode: en
-status: true
-dependencies:
-  module:
-    - taxonomy
-_core:
-  default_config_hash: yo_6TShaM6J7zPC0iPyzTbGoX55GFyWdn4a9UOH9TJc
-id: generic_term
-label: 'Generic term'
-type: 'canonical_entities:taxonomy_term'
-pattern: '[term:vocabulary]/[term:name]'
-selection_criteria: {  }
-selection_logic: and
-weight: 0
-relationships: {  }
diff --git a/config/sync/pathauto.pattern.gleaning.yml b/config/sync/pathauto.pattern.gleaning.yml
deleted file mode 100644
index 9ada299..0000000
--- a/config/sync/pathauto.pattern.gleaning.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: cba95ac7-d770-4120-b53c-ad7a4c0dbb5b
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-id: gleaning
-label: Gleaning
-type: 'canonical_entities:node'
-pattern: 'gleanings/[node:title]'
-selection_criteria:
-  16c2c31d-685e-4e54-80a7-d6bb8a344155:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: 16c2c31d-685e-4e54-80a7-d6bb8a344155
-    context_mapping:
-      node: node
-    bundles:
-      gleaning: gleaning
-selection_logic: and
-weight: -5
-relationships: {  }
diff --git a/config/sync/pathauto.pattern.node_article.yml b/config/sync/pathauto.pattern.node_article.yml
index 2fef134..76e77e2 100644
--- a/config/sync/pathauto.pattern.node_article.yml
+++ b/config/sync/pathauto.pattern.node_article.yml
@@ -12,13 +12,13 @@ type: 'canonical_entities:node'
 pattern: 'articles/[node:title]'
 selection_criteria:
   03faf328-473f-4ba7-bafe-72df857287d9:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: 03faf328-473f-4ba7-bafe-72df857287d9
-    context_mapping:
-      node: node
+    id: node_type
     bundles:
       article: article
+    negate: false
+    context_mapping:
+      node: node
+    uuid: 03faf328-473f-4ba7-bafe-72df857287d9
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.pattern.node_blog.yml b/config/sync/pathauto.pattern.node_blog.yml
index 00955ba..16b225f 100644
--- a/config/sync/pathauto.pattern.node_blog.yml
+++ b/config/sync/pathauto.pattern.node_blog.yml
@@ -12,13 +12,13 @@ type: 'canonical_entities:node'
 pattern: 'blog/[node:title]'
 selection_criteria:
   cbbc8b23-30be-44a8-969b-ef9c72e952ab:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: cbbc8b23-30be-44a8-969b-ef9c72e952ab
-    context_mapping:
-      node: node
+    id: node_type
     bundles:
       blog: blog
+    negate: false
+    context_mapping:
+      node: node
+    uuid: cbbc8b23-30be-44a8-969b-ef9c72e952ab
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.pattern.node_collection.yml b/config/sync/pathauto.pattern.node_collection.yml
deleted file mode 100644
index cc691b3..0000000
--- a/config/sync/pathauto.pattern.node_collection.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: e629062c-40bf-4ab4-80ce-175afc4b388b
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-_core:
-  default_config_hash: ofYqGwKW2yCiN6Z7YvvlFH4XrjfWFRTzDLmpKsnyoF4
-id: node_collection
-label: 'Node collection'
-type: 'canonical_entities:node'
-pattern: 'collections/[node:title]'
-selection_criteria:
-  7e8d81ea-6e4f-4fee-a1ad-6f1621656038:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: 7e8d81ea-6e4f-4fee-a1ad-6f1621656038
-    context_mapping:
-      node: node
-    bundles:
-      article: collection
-selection_logic: and
-weight: -5
-relationships: {  }
diff --git a/config/sync/pathauto.pattern.node_landing_page.yml b/config/sync/pathauto.pattern.node_landing_page.yml
index 0397b69..b4c559c 100644
--- a/config/sync/pathauto.pattern.node_landing_page.yml
+++ b/config/sync/pathauto.pattern.node_landing_page.yml
@@ -12,13 +12,13 @@ type: 'canonical_entities:node'
 pattern: '[node:title]'
 selection_criteria:
   e3e7a232-e1e0-455e-8b69-c99b582dc4f0:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: e3e7a232-e1e0-455e-8b69-c99b582dc4f0
-    context_mapping:
-      node: node
+    id: node_type
     bundles:
       landing_page: landing_page
+    negate: false
+    context_mapping:
+      node: node
+    uuid: e3e7a232-e1e0-455e-8b69-c99b582dc4f0
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.pattern.node_page.yml b/config/sync/pathauto.pattern.node_page.yml
index 4edbb89..a05e035 100644
--- a/config/sync/pathauto.pattern.node_page.yml
+++ b/config/sync/pathauto.pattern.node_page.yml
@@ -12,13 +12,13 @@ type: 'canonical_entities:node'
 pattern: '[node:title]'
 selection_criteria:
   2e17ea21-8c33-444d-981e-2a2df6651647:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: 2e17ea21-8c33-444d-981e-2a2df6651647
-    context_mapping:
-      node: node
+    id: node_type
     bundles:
       page: page
+    negate: false
+    context_mapping:
+      node: node
+    uuid: 2e17ea21-8c33-444d-981e-2a2df6651647
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.pattern.people_node.yml b/config/sync/pathauto.pattern.people_node.yml
index 8b1b0fa..ee47794 100644
--- a/config/sync/pathauto.pattern.people_node.yml
+++ b/config/sync/pathauto.pattern.people_node.yml
@@ -12,13 +12,13 @@ type: 'canonical_entities:node'
 pattern: 'people/[node:title]'
 selection_criteria:
   c9467269-b644-451e-b21f-01808d094c28:
-    id: 'entity_bundle:node'
-    negate: false
-    uuid: c9467269-b644-451e-b21f-01808d094c28
-    context_mapping:
-      node: node
+    id: node_type
     bundles:
       people: people
+    negate: false
+    context_mapping:
+      node: node
+    uuid: c9467269-b644-451e-b21f-01808d094c28
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.pattern.people_type.yml b/config/sync/pathauto.pattern.people_type.yml
index ed0846a..83909e2 100644
--- a/config/sync/pathauto.pattern.people_type.yml
+++ b/config/sync/pathauto.pattern.people_type.yml
@@ -14,12 +14,12 @@ pattern: '[term:vocabulary]/[term:name]'
 selection_criteria:
   80092348-fd10-47f0-b7b1-a805a57a2ff3:
     id: 'entity_bundle:taxonomy_term'
-    negate: false
-    uuid: 80092348-fd10-47f0-b7b1-a805a57a2ff3
-    context_mapping:
-      taxonomy_term: taxonomy_term
     bundles:
       people_type: people_type
+    negate: false
+    context_mapping:
+      taxonomy_term: taxonomy_term
+    uuid: 80092348-fd10-47f0-b7b1-a805a57a2ff3
 selection_logic: and
 weight: -5
 relationships: {  }
diff --git a/config/sync/pathauto.settings.yml b/config/sync/pathauto.settings.yml
index acfd943..01eddea 100644
--- a/config/sync/pathauto.settings.yml
+++ b/config/sync/pathauto.settings.yml
@@ -1,5 +1,3 @@
-_core:
-  default_config_hash: SwvLp8snyPEExF41CaJJYdPUVomofLqtXvwciHc4cPg
 enabled_entity_types:
   - user
 punctuation:
@@ -20,3 +18,5 @@ safe_tokens:
   - login-url
   - url
   - url-brief
+_core:
+  default_config_hash: SwvLp8snyPEExF41CaJJYdPUVomofLqtXvwciHc4cPg
diff --git a/config/sync/plausible.settings.yml b/config/sync/plausible.settings.yml
deleted file mode 100644
index a5c008e..0000000
--- a/config/sync/plausible.settings.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-_core:
-  default_config_hash: 7ITcwwShhS7SG3SJdIqRQkzXEcEPNejdEnbeDVDeDY0
-script:
-  domain: ''
-  api: ''
-  src: 'https://plausible.io/js/script.file-downloads.hash.outbound-links.js'
-dashboard:
-  shared_link: ''
-visibility:
-  enable: true
-  admin_route_mode: 1
-  request_path_mode: 0
-  request_path_pages: ''
-  user_role_roles:
-    administrator: '0'
-    anonymous: '0'
-    authenticated: '0'
-    invited_blogger: '0'
-    contributor: '0'
-    editor: '0'
-    manager: '0'
-  user_role_mode: 0
-events:
-  403: true
-  404: true
diff --git a/config/sync/redirect.settings.yml b/config/sync/redirect.settings.yml
index e3e647a..79c09c8 100644
--- a/config/sync/redirect.settings.yml
+++ b/config/sync/redirect.settings.yml
@@ -1,5 +1,3 @@
-_core:
-  default_config_hash: FEwQLW1wXW7fiJdG1B2bxW1c_-k6w-r-3V3bSsW6PqM
 auto_redirect: true
 default_status_code: 301
 passthrough_querystring: true
@@ -7,3 +5,5 @@ warning: false
 ignore_admin_path: false
 access_check: false
 route_normalizer_enabled: true
+_core:
+  default_config_hash: FEwQLW1wXW7fiJdG1B2bxW1c_-k6w-r-3V3bSsW6PqM
diff --git a/config/sync/responsive_image.styles.card_extra_wide.yml b/config/sync/responsive_image.styles.card_extra_wide.yml
deleted file mode 100644
index bbbdc0f..0000000
--- a/config/sync/responsive_image.styles.card_extra_wide.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-uuid: 1fad7383-b40e-4834-bc15-ee0377f12d58
-langcode: en
-status: true
-dependencies:
-  config:
-    - image.style.drutopia_extra_wide_extra_small
-    - image.style.drutopia_extra_wide_medium
-    - image.style.drutopia_extra_wide_small
-  module:
-    - drutopia_core
-id: card_extra_wide
-label: 'Wide Card'
-image_style_mappings:
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.fullhd
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_extra_small
-    breakpoint_id: drutopia_core.widescreen
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.desktop
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_medium
-    breakpoint_id: drutopia_core.fullhd
-    multiplier: 2x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.widescreen
-    multiplier: 2x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_medium
-    breakpoint_id: drutopia_core.desktop
-    multiplier: 2x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.tablet
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_medium
-    breakpoint_id: drutopia_core.tablet
-    multiplier: 2x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.mobile
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_medium
-    breakpoint_id: drutopia_core.mobile
-    multiplier: 2x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_extra_small
-    breakpoint_id: drutopia_core.all
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.all
-    multiplier: 2x
-breakpoint_group: drutopia_core
-fallback_image_style: drutopia_extra_wide_extra_small
diff --git a/config/sync/responsive_image.styles.drutopia_card.yml b/config/sync/responsive_image.styles.drutopia_card.yml
deleted file mode 100644
index 8a73b79..0000000
--- a/config/sync/responsive_image.styles.drutopia_card.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-uuid: c4e6dc77-5ebe-4b90-a9e5-b7b6056f21d4
-langcode: en
-status: true
-dependencies:
-  config:
-    - image.style.drutopia_wide_extra_small
-    - image.style.drutopia_wide_medium
-    - image.style.drutopia_wide_small
-  module:
-    - drutopia_core
-_core:
-  default_config_hash: DyJYr1VGP_Okl7KSvoJ9hsLs5gakhjh7xx4eMOnBC5I
-id: drutopia_card
-label: Card
-image_style_mappings:
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_wide_small
-    breakpoint_id: drutopia_core.fullhd
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_wide_small
-    breakpoint_id: drutopia_core.widescreen
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_wide_extra_small
-    breakpoint_id: drutopia_core.desktop
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_wide_small
-    breakpoint_id: drutopia_core.tablet
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_wide_medium
-    breakpoint_id: drutopia_core.mobile
-    multiplier: 1x
-breakpoint_group: drutopia_core
-fallback_image_style: drutopia_wide_extra_small
diff --git a/config/sync/responsive_image.styles.drutopia_main.yml b/config/sync/responsive_image.styles.drutopia_main.yml
deleted file mode 100644
index fbbf4cb..0000000
--- a/config/sync/responsive_image.styles.drutopia_main.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-uuid: 1dadd71d-1a7d-4394-8d90-ea11b3367f43
-langcode: en
-status: true
-dependencies:
-  config:
-    - image.style.drutopia_extra_wide_extra_large
-    - image.style.drutopia_extra_wide_extra_small
-    - image.style.drutopia_extra_wide_large
-    - image.style.drutopia_extra_wide_medium
-    - image.style.drutopia_extra_wide_small
-  module:
-    - drutopia_core
-_core:
-  default_config_hash: iH_ZVxuN4bXJ5TwGVmTH-JQQ0NU1DpZKPda9GwMkp3w
-id: drutopia_main
-label: Main
-image_style_mappings:
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_extra_large
-    breakpoint_id: drutopia_core.fullhd
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_large
-    breakpoint_id: drutopia_core.widescreen
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_medium
-    breakpoint_id: drutopia_core.desktop
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_small
-    breakpoint_id: drutopia_core.tablet
-    multiplier: 1x
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_extra_wide_extra_small
-    breakpoint_id: drutopia_core.mobile
-    multiplier: 1x
-breakpoint_group: drutopia_core
-fallback_image_style: drutopia_extra_wide_extra_small
diff --git a/config/sync/responsive_image.styles.drutopia_wide.yml b/config/sync/responsive_image.styles.drutopia_wide.yml
deleted file mode 100644
index e4fb368..0000000
--- a/config/sync/responsive_image.styles.drutopia_wide.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2c05c910-1c3d-4677-82de-a924bbc7453e
-langcode: en
-status: true
-dependencies:
-  config:
-    - image.style.drutopia_wide
-_core:
-  default_config_hash: 6gGx8qIdqXjaHZtprlhfS-cZSjh7CX_tNCVfuokwYys
-id: drutopia_wide
-label: Wide
-image_style_mappings:
-  -
-    image_mapping_type: image_style
-    image_mapping: drutopia_wide
-    breakpoint_id: responsive_image.viewport_sizing
-    multiplier: 1x
-breakpoint_group: responsive_image
-fallback_image_style: drutopia_wide
diff --git a/config/sync/responsive_image.styles.narrow.yml b/config/sync/responsive_image.styles.narrow.yml
index bef2b06..cbc7e4c 100644
--- a/config/sync/responsive_image.styles.narrow.yml
+++ b/config/sync/responsive_image.styles.narrow.yml
@@ -12,6 +12,8 @@ id: narrow
 label: Narrow
 image_style_mappings:
   -
+    breakpoint_id: responsive_image.viewport_sizing
+    multiplier: 1x
     image_mapping_type: sizes
     image_mapping:
       sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw'
@@ -19,7 +21,5 @@ image_style_mappings:
         - focal_point_1300x650
         - focal_point_325x195
         - focal_point_650x390
-    breakpoint_id: responsive_image.viewport_sizing
-    multiplier: 1x
 breakpoint_group: responsive_image
 fallback_image_style: focal_point_325x195
diff --git a/config/sync/responsive_image.styles.short.yml b/config/sync/responsive_image.styles.short.yml
index 48857b2..c6d62ad 100644
--- a/config/sync/responsive_image.styles.short.yml
+++ b/config/sync/responsive_image.styles.short.yml
@@ -12,6 +12,8 @@ id: short
 label: Short
 image_style_mappings:
   -
+    breakpoint_id: responsive_image.viewport_sizing
+    multiplier: 1x
     image_mapping_type: sizes
     image_mapping:
       sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw'
@@ -19,7 +21,5 @@ image_style_mappings:
         - focal_point_195x260
         - focal_point_390x520
         - focal_point_780x1040
-    breakpoint_id: responsive_image.viewport_sizing
-    multiplier: 1x
 breakpoint_group: responsive_image
 fallback_image_style: focal_point_195x260
diff --git a/config/sync/responsive_image.styles.square.yml b/config/sync/responsive_image.styles.square.yml
deleted file mode 100644
index 46a3b70..0000000
--- a/config/sync/responsive_image.styles.square.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-uuid: 9e0dd61f-2bde-4d7a-a7a1-fd0453d9ff2b
-langcode: en
-status: true
-dependencies:
-  config:
-    - image.style.drutopia_square_extra_large
-    - image.style.drutopia_square_extra_small
-    - image.style.drutopia_square_large
-    - image.style.drutopia_square_medium
-    - image.style.drutopia_square_small
-_core:
-  default_config_hash: JMf-xC8fggihQjiOPJXjO4aHdh7JTRktK2GO7J9X0nQ
-id: square
-label: Square
-image_style_mappings:
-  -
-    image_mapping_type: sizes
-    image_mapping:
-      sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw'
-      sizes_image_styles:
-        - drutopia_square_extra_large
-        - drutopia_square_extra_small
-        - drutopia_square_large
-        - drutopia_square_medium
-        - drutopia_square_small
-    breakpoint_id: responsive_image.viewport_sizing
-    multiplier: 1x
-breakpoint_group: responsive_image
-fallback_image_style: drutopia_square_extra_small
diff --git a/config/sync/responsive_image.styles.tall.yml b/config/sync/responsive_image.styles.tall.yml
index 01047bf..d463c29 100644
--- a/config/sync/responsive_image.styles.tall.yml
+++ b/config/sync/responsive_image.styles.tall.yml
@@ -12,6 +12,8 @@ id: tall
 label: Tall
 image_style_mappings:
   -
+    breakpoint_id: responsive_image.viewport_sizing
+    multiplier: 1x
     image_mapping_type: sizes
     image_mapping:
       sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw'
@@ -19,7 +21,5 @@ image_style_mappings:
         - focal_point_195x260
         - focal_point_390x520
         - focal_point_780x1040
-    breakpoint_id: responsive_image.viewport_sizing
-    multiplier: 1x
 breakpoint_group: responsive_image
 fallback_image_style: focal_point_195x260
diff --git a/config/sync/responsive_image.styles.wide.yml b/config/sync/responsive_image.styles.wide.yml
index 38ca51c..a98a488 100644
--- a/config/sync/responsive_image.styles.wide.yml
+++ b/config/sync/responsive_image.styles.wide.yml
@@ -13,6 +13,8 @@ id: wide
 label: Wide
 image_style_mappings:
   -
+    breakpoint_id: responsive_image.viewport_sizing
+    multiplier: 1x
     image_mapping_type: sizes
     image_mapping:
       sizes: '(min-width: 1290px) 1290px, 100vw'
@@ -21,7 +23,5 @@ image_style_mappings:
         - focal_point_2600x1300
         - focal_point_325x195
         - focal_point_650x390
-    breakpoint_id: responsive_image.viewport_sizing
-    multiplier: 1x
 breakpoint_group: responsive_image
 fallback_image_style: focal_point_325x195
diff --git a/config/sync/riddler.riddle.example.yml b/config/sync/riddler.riddle.example.yml
deleted file mode 100644
index a7d3869..0000000
--- a/config/sync/riddler.riddle.example.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-uuid: e9d07e6d-65fe-46da-ab25-7f9d265ffa9d
-langcode: en
-status: true
-dependencies: {  }
-_core:
-  default_config_hash: f7dN3Eb7xyyMUWug2Gwt-bjoXTpTvtXXGMQmIS4LJ44
-id: example
-question: 'Do you really hate Spam?'
-solution: 'Yes,Yes!,y,absolutely,yeah'
-hint: 'I think you do!'
diff --git a/config/sync/riddler.riddle.whatdoesthegingeostandfor.yml b/config/sync/riddler.riddle.whatdoesthegingeostandfor.yml
deleted file mode 100644
index a972e4e..0000000
--- a/config/sync/riddler.riddle.whatdoesthegingeostandfor.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-uuid: 279b9615-adc8-4210-b042-18892cf1e8df
-langcode: en
-status: true
-dependencies: {  }
-id: whatdoesthegingeostandfor
-question: 'What does the G in GEO stand for?'
-solution: 'grassroots,grassroot,grass roots,grass root'
-hint: null
diff --git a/config/sync/scn.settings.yml b/config/sync/scn.settings.yml
deleted file mode 100644
index fb69ca8..0000000
--- a/config/sync/scn.settings.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-scn_admin: 0
-scn_roles:
-  manager: manager
-  administrator: 0
-  authenticated: 0
-  content_administrator: 0
-  invited_blogger: 0
-  proofreader: 0
-  contributor: 0
-  editor: 0
-scn_maillist: ''
-scn_telegram: 0
-scn_telegram_bottoken: ''
-scn_telegram_chatids: ''
-scn_telegram_proxy: 0
-scn_telegram_proxy_server: ''
-scn_telegram_proxy_login: ''
-scn_telegram_proxy_password: ''
diff --git a/config/sync/search_api.index.article.yml b/config/sync/search_api.index.article.yml
index bde1177..a09d506 100644
--- a/config/sync/search_api.index.article.yml
+++ b/config/sync/search_api.index.article.yml
@@ -3,16 +3,17 @@ langcode: en
 status: true
 dependencies:
   config:
-    - core.entity_view_mode.node.search_index
+    - field.storage.node.field_tags
+    - field.storage.node.field_summary
     - field.storage.node.field_article_type
     - field.storage.node.field_authors
-    - field.storage.node.field_summary
-    - field.storage.node.field_tags
     - field.storage.node.field_topics
     - search_api.server.database
+    - core.entity_view_mode.node.search_index
   module:
-    - node
     - user
+    - search_api
+    - node
 _core:
   default_config_hash: J04p8dO7JgH6HJ11pkCigWVJg-8TXjwcS4kwaVmluI8
 id: article
@@ -25,17 +26,11 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: changed
     type: date
-    dependencies:
-      module:
-        - node
   created:
     label: 'Authored on'
     datasource_id: 'entity:node'
     property_path: created
     type: date
-    dependencies:
-      module:
-        - node
   field_article_type:
     label: 'Article type'
     datasource_id: 'entity:node'
@@ -83,7 +78,6 @@ field_settings:
     type: string
     dependencies:
       module:
-        - node
         - user
   node_grants:
     label: 'Node access information'
@@ -97,16 +91,13 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: promote
     type: boolean
-    dependencies:
-      module:
-        - node
   rendered_item:
     label: 'Rendered HTML output'
     property_path: rendered_item
     type: text
     configuration:
       roles:
-        - anonymous
+        anonymous: anonymous
       view_mode:
         'entity:node':
           article: search_index
@@ -117,26 +108,17 @@ field_settings:
     type: boolean
     indexed_locked: true
     type_locked: true
-    dependencies:
-      module:
-        - node
   sticky:
     label: 'Sticky at top of lists'
     datasource_id: 'entity:node'
     property_path: sticky
     type: boolean
-    dependencies:
-      module:
-        - node
   title:
     label: Title
     datasource_id: 'entity:node'
     property_path: title
     type: text
-    boost: 8.0
-    dependencies:
-      module:
-        - node
+    boost: !!float 8
   uid:
     label: 'Authored by'
     datasource_id: 'entity:node'
@@ -144,9 +126,6 @@ field_settings:
     type: integer
     indexed_locked: true
     type_locked: true
-    dependencies:
-      module:
-        - node
 datasource_settings:
   'entity:node':
     bundles:
@@ -164,9 +143,6 @@ processor_settings:
       preprocess_query: -45
   entity_status: {  }
   html_filter:
-    weights:
-      preprocess_index: -46
-      preprocess_query: -47
     all_fields: false
     fields:
       - field_summary
@@ -179,22 +155,21 @@ processor_settings:
       h2: 3
       h3: 2
       strong: 2
-  ignorecase:
     weights:
-      preprocess_index: -49
-      preprocess_query: -49
+      preprocess_index: -46
+      preprocess_query: -47
+  ignorecase:
     all_fields: false
     fields:
       - field_summary
       - name
       - rendered_item
       - title
-  language_with_fallback: {  }
+    weights:
+      preprocess_index: -49
+      preprocess_query: -49
   rendered_item: {  }
   stopwords:
-    weights:
-      preprocess_index: -48
-      preprocess_query: -50
     all_fields: false
     fields:
       - field_summary
@@ -236,10 +211,10 @@ processor_settings:
       - was
       - will
       - with
-  tokenizer:
     weights:
-      preprocess_index: -44
-      preprocess_query: -46
+      preprocess_index: -48
+      preprocess_query: -50
+  tokenizer:
     all_fields: false
     fields:
       - field_summary
@@ -248,21 +223,23 @@ processor_settings:
     spaces: ''
     overlap_cjk: 1
     minimum_word_size: '3'
-  transliteration:
     weights:
-      preprocess_index: -47
-      preprocess_query: -48
+      preprocess_index: -44
+      preprocess_query: -46
+  transliteration:
     all_fields: false
     fields:
       - field_summary
       - name
       - rendered_item
       - title
+    weights:
+      preprocess_index: -47
+      preprocess_query: -48
 tracker_settings:
   default:
     indexing_order: fifo
 options:
-  cron_limit: 50
   index_directly: true
-  track_changes_in_references: true
+  cron_limit: 50
 server: database
diff --git a/config/sync/search_api.index.blog.yml b/config/sync/search_api.index.blog.yml
index 9b296af..e55aa0f 100644
--- a/config/sync/search_api.index.blog.yml
+++ b/config/sync/search_api.index.blog.yml
@@ -3,14 +3,15 @@ langcode: en
 status: true
 dependencies:
   config:
-    - core.entity_view_mode.node.search_index
-    - field.storage.node.field_summary
     - field.storage.node.field_tags
+    - field.storage.node.field_summary
     - field.storage.node.field_topics
     - search_api.server.database
+    - core.entity_view_mode.node.search_index
   module:
-    - node
     - user
+    - search_api
+    - node
 _core:
   default_config_hash: LVXH3P5V5qSiUZzvZXvCnxDkd1deRiRJxfXyTLWGOFM
 id: blog
@@ -23,17 +24,11 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: changed
     type: date
-    dependencies:
-      module:
-        - node
   created:
     label: 'Authored on'
     datasource_id: 'entity:node'
     property_path: created
     type: date
-    dependencies:
-      module:
-        - node
   field_summary:
     label: Summary
     datasource_id: 'entity:node'
@@ -65,7 +60,6 @@ field_settings:
     type: string
     dependencies:
       module:
-        - node
         - user
   node_grants:
     label: 'Node access information'
@@ -79,16 +73,13 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: promote
     type: boolean
-    dependencies:
-      module:
-        - node
   rendered_item:
     label: 'Rendered HTML output'
     property_path: rendered_item
     type: text
     configuration:
       roles:
-        - anonymous
+        anonymous: anonymous
       view_mode:
         'entity:node':
           blog: search_index
@@ -99,26 +90,17 @@ field_settings:
     type: boolean
     indexed_locked: true
     type_locked: true
-    dependencies:
-      module:
-        - node
   sticky:
     label: 'Sticky at top of lists'
     datasource_id: 'entity:node'
     property_path: sticky
     type: boolean
-    dependencies:
-      module:
-        - node
   title:
     label: Title
     datasource_id: 'entity:node'
     property_path: title
     type: text
-    boost: 8.0
-    dependencies:
-      module:
-        - node
+    boost: !!float 8
   uid:
     label: 'Authored by'
     datasource_id: 'entity:node'
@@ -126,9 +108,6 @@ field_settings:
     type: integer
     indexed_locked: true
     type_locked: true
-    dependencies:
-      module:
-        - node
 datasource_settings:
   'entity:node':
     bundles:
@@ -146,9 +125,6 @@ processor_settings:
       preprocess_query: -45
   entity_status: {  }
   html_filter:
-    weights:
-      preprocess_index: -46
-      preprocess_query: -47
     all_fields: false
     fields:
       - field_summary
@@ -161,22 +137,21 @@ processor_settings:
       h2: 3
       h3: 2
       strong: 2
-  ignorecase:
     weights:
-      preprocess_index: -49
-      preprocess_query: -49
+      preprocess_index: -46
+      preprocess_query: -47
+  ignorecase:
     all_fields: false
     fields:
       - field_summary
       - name
       - rendered_item
       - title
-  language_with_fallback: {  }
+    weights:
+      preprocess_index: -49
+      preprocess_query: -49
   rendered_item: {  }
   stopwords:
-    weights:
-      preprocess_index: -48
-      preprocess_query: -50
     all_fields: false
     fields:
       - field_summary
@@ -218,10 +193,10 @@ processor_settings:
       - was
       - will
       - with
-  tokenizer:
     weights:
-      preprocess_index: -44
-      preprocess_query: -46
+      preprocess_index: -48
+      preprocess_query: -50
+  tokenizer:
     all_fields: false
     fields:
       - field_summary
@@ -230,21 +205,23 @@ processor_settings:
     spaces: ''
     overlap_cjk: 1
     minimum_word_size: '3'
-  transliteration:
     weights:
-      preprocess_index: -47
-      preprocess_query: -48
+      preprocess_index: -44
+      preprocess_query: -46
+  transliteration:
     all_fields: false
     fields:
       - field_summary
       - name
       - rendered_item
       - title
+    weights:
+      preprocess_index: -47
+      preprocess_query: -48
 tracker_settings:
   default:
     indexing_order: fifo
 options:
-  cron_limit: 50
   index_directly: true
-  track_changes_in_references: true
+  cron_limit: 50
 server: database
diff --git a/config/sync/search_api.index.collection.yml b/config/sync/search_api.index.collection.yml
deleted file mode 100644
index 5ea11c0..0000000
--- a/config/sync/search_api.index.collection.yml
+++ /dev/null
@@ -1,159 +0,0 @@
-uuid: 4706378a-3a02-48d7-8672-d8313e9c20f3
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.search_index
-    - field.storage.node.field_authors
-    - field.storage.node.field_collection_type
-    - field.storage.node.field_summary
-    - field.storage.node.field_tags
-    - field.storage.node.field_topics
-    - search_api.server.database
-  module:
-    - node
-    - user
-_core:
-  default_config_hash: _QVCLp7W8HxV52MEnKkYc2bX5i3NFf4ejVOfuTApG9g
-id: collection
-name: Collection
-description: 'An index for the collection content type.'
-read_only: false
-field_settings:
-  changed:
-    label: Changed
-    datasource_id: 'entity:node'
-    property_path: changed
-    type: date
-    dependencies:
-      module:
-        - node
-  created:
-    label: 'Authored on'
-    datasource_id: 'entity:node'
-    property_path: created
-    type: date
-    dependencies:
-      module:
-        - node
-  field_authors:
-    label: Authors
-    datasource_id: 'entity:node'
-    property_path: field_authors
-    type: integer
-    dependencies:
-      config:
-        - field.storage.node.field_authors
-  field_collection_type:
-    label: 'Collection type'
-    datasource_id: 'entity:node'
-    property_path: field_collection_type
-    type: integer
-    dependencies:
-      config:
-        - field.storage.node.field_collection_type
-  field_summary:
-    label: Summary
-    datasource_id: 'entity:node'
-    property_path: field_summary
-    type: text
-    dependencies:
-      config:
-        - field.storage.node.field_summary
-  field_tags:
-    label: Tags
-    datasource_id: 'entity:node'
-    property_path: field_tags
-    type: integer
-    dependencies:
-      config:
-        - field.storage.node.field_tags
-  field_topics:
-    label: Topics
-    datasource_id: 'entity:node'
-    property_path: field_topics
-    type: integer
-    dependencies:
-      config:
-        - field.storage.node.field_topics
-  name:
-    label: 'Authored by » User » Name'
-    datasource_id: 'entity:node'
-    property_path: 'uid:entity:name'
-    type: string
-    dependencies:
-      module:
-        - node
-        - user
-  promote:
-    label: 'Promoted to front page'
-    datasource_id: 'entity:node'
-    property_path: promote
-    type: boolean
-    dependencies:
-      module:
-        - node
-  rendered_item:
-    label: 'Rendered HTML output'
-    property_path: rendered_item
-    type: text
-    configuration:
-      roles:
-        - anonymous
-      view_mode:
-        'entity:node':
-          collection: search_index
-  status:
-    label: Published
-    datasource_id: 'entity:node'
-    property_path: status
-    type: boolean
-    dependencies:
-      module:
-        - node
-  sticky:
-    label: 'Sticky at top of lists'
-    datasource_id: 'entity:node'
-    property_path: sticky
-    type: boolean
-    dependencies:
-      module:
-        - node
-  title:
-    label: Title
-    datasource_id: 'entity:node'
-    property_path: title
-    type: string
-    dependencies:
-      module:
-        - node
-  uid:
-    label: 'Authored by'
-    datasource_id: 'entity:node'
-    property_path: uid
-    type: integer
-    dependencies:
-      module:
-        - node
-datasource_settings:
-  'entity:node':
-    bundles:
-      default: false
-      selected:
-        - collection
-    languages:
-      default: true
-      selected: {  }
-processor_settings:
-  add_url: {  }
-  aggregated_field: {  }
-  language_with_fallback: {  }
-  rendered_item: {  }
-tracker_settings:
-  default:
-    indexing_order: fifo
-options:
-  cron_limit: 50
-  index_directly: true
-  track_changes_in_references: true
-server: database
diff --git a/config/sync/search_api.index.content.yml b/config/sync/search_api.index.content.yml
index 3768f6c..c44b491 100644
--- a/config/sync/search_api.index.content.yml
+++ b/config/sync/search_api.index.content.yml
@@ -2,15 +2,16 @@ uuid: 3bce79c6-bb22-401d-8623-b292b4b7b960
 langcode: en
 status: true
 dependencies:
+  module:
+    - node
+    - user
+    - search_api
   config:
-    - core.entity_view_mode.node.full
     - field.storage.node.field_summary
     - field.storage.node.field_tags
     - field.storage.node.field_topics
     - search_api.server.database
-  module:
-    - node
-    - user
+    - core.entity_view_mode.node.full
 _core:
   default_config_hash: q4urWOU1mmYKKSBzYuwpRBTSIJnFwzapGP4bnCajbFs
 id: content
@@ -27,6 +28,7 @@ field_settings:
       module:
         - node
         - user
+        - user
   changed:
     label: Changed
     datasource_id: 'entity:node'
@@ -114,7 +116,7 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: title
     type: text
-    boost: 8.0
+    boost: !!float 8
     dependencies:
       module:
         - node
@@ -160,10 +162,6 @@ processor_settings:
     weights:
       preprocess_index: -10
   html_filter:
-    weights:
-      preprocess_index: -3
-      preprocess_query: -6
-    all_fields: false
     fields:
       - field_summary
       - rendered_item
@@ -175,25 +173,24 @@ processor_settings:
       h2: 3
       h3: 2
       string: 2
-  ignorecase:
     weights:
-      preprocess_index: -5
-      preprocess_query: -8
+      preprocess_index: -3
+      preprocess_query: -6
     all_fields: false
+  ignorecase:
     fields:
       - field_summary
       - rendered_item
       - title
-  language_with_fallback: {  }
+    weights:
+      preprocess_index: -5
+      preprocess_query: -8
+    all_fields: false
   rendered_item:
     weights:
       add_properties: 0
       pre_index_save: -10
   stopwords:
-    weights:
-      preprocess_index: -5
-      preprocess_query: -10
-    all_fields: false
     fields:
       - field_summary
       - rendered_item
@@ -234,11 +231,11 @@ processor_settings:
       - was
       - will
       - with
-  tokenizer:
     weights:
-      preprocess_index: -2
-      preprocess_query: -5
+      preprocess_index: -5
+      preprocess_query: -10
     all_fields: false
+  tokenizer:
     fields:
       - field_summary
       - rendered_item
@@ -246,20 +243,23 @@ processor_settings:
     spaces: ''
     overlap_cjk: 1
     minimum_word_size: '3'
-  transliteration:
     weights:
-      preprocess_index: -4
-      preprocess_query: -7
+      preprocess_index: -2
+      preprocess_query: -5
     all_fields: false
+  transliteration:
     fields:
       - field_summary
       - rendered_item
       - title
+    weights:
+      preprocess_index: -4
+      preprocess_query: -7
+    all_fields: false
 tracker_settings:
   default:
     indexing_order: fifo
 options:
-  cron_limit: 50
   index_directly: true
-  track_changes_in_references: true
+  cron_limit: 50
 server: database
diff --git a/config/sync/search_api.index.people.yml b/config/sync/search_api.index.people.yml
index 1f9f9b8..6ea4d73 100644
--- a/config/sync/search_api.index.people.yml
+++ b/config/sync/search_api.index.people.yml
@@ -3,13 +3,14 @@ langcode: en
 status: true
 dependencies:
   config:
-    - core.entity_view_mode.node.search_index
-    - field.storage.node.field_people_type
     - field.storage.node.field_summary
+    - field.storage.node.field_people_type
     - search_api.server.database
+    - core.entity_view_mode.node.search_index
   module:
-    - node
     - user
+    - search_api
+    - node
 _core:
   default_config_hash: MppSSFf9_oAEuTYEXp1R5nK30k5xRKvptoEDwKw9v6o
 id: people
@@ -22,17 +23,11 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: changed
     type: date
-    dependencies:
-      module:
-        - node
   created:
     label: 'Authored on'
     datasource_id: 'entity:node'
     property_path: created
     type: date
-    dependencies:
-      module:
-        - node
   field_people_type:
     label: 'People type'
     datasource_id: 'entity:node'
@@ -56,7 +51,6 @@ field_settings:
     type: string
     dependencies:
       module:
-        - node
         - user
   node_grants:
     label: 'Node access information'
@@ -70,9 +64,6 @@ field_settings:
     datasource_id: 'entity:node'
     property_path: promote
     type: boolean
-    dependencies:
-      module:
-        - node
   rendered_item:
     label: 'Rendered HTML output'
     property_path: rendered_item
@@ -90,26 +81,17 @@ field_settings:
     type: boolean
     indexed_locked: true
     type_locked: true
-    dependencies:
-      module:
-        - node
   sticky:
     label: 'Sticky at top of lists'
     datasource_id: 'entity:node'
     property_path: sticky
     type: boolean
-    dependencies:
-      module:
-        - node
   title:
     label: Title
     datasource_id: 'entity:node'
     property_path: title
     type: text
-    boost: 8.0
-    dependencies:
-      module:
-        - node
+    boost: !!float 8
   uid:
     label: 'Authored by'
     datasource_id: 'entity:node'
@@ -117,9 +99,6 @@ field_settings:
     type: integer
     indexed_locked: true
     type_locked: true
-    dependencies:
-      module:
-        - node
 datasource_settings:
   'entity:node':
     bundles:
@@ -137,9 +116,6 @@ processor_settings:
       preprocess_query: -45
   entity_status: {  }
   html_filter:
-    weights:
-      preprocess_index: -46
-      preprocess_query: -47
     all_fields: false
     fields:
       - field_summary
@@ -152,22 +128,21 @@ processor_settings:
       h2: 3
       h3: 2
       strong: 2
-  ignorecase:
     weights:
-      preprocess_index: -49
-      preprocess_query: -49
+      preprocess_index: -46
+      preprocess_query: -47
+  ignorecase:
     all_fields: false
     fields:
       - field_summary
       - name
       - rendered_item
       - title
-  language_with_fallback: {  }
+    weights:
+      preprocess_index: -49
+      preprocess_query: -49
   rendered_item: {  }
   stopwords:
-    weights:
-      preprocess_index: -48
-      preprocess_query: -50
     all_fields: false
     fields:
       - field_summary
@@ -209,10 +184,10 @@ processor_settings:
       - was
       - will
       - with
-  tokenizer:
     weights:
-      preprocess_index: -44
-      preprocess_query: -46
+      preprocess_index: -48
+      preprocess_query: -50
+  tokenizer:
     all_fields: false
     fields:
       - field_summary
@@ -221,21 +196,23 @@ processor_settings:
     spaces: ''
     overlap_cjk: 1
     minimum_word_size: '3'
-  transliteration:
     weights:
-      preprocess_index: -47
-      preprocess_query: -48
+      preprocess_index: -44
+      preprocess_query: -46
+  transliteration:
     all_fields: false
     fields:
       - field_summary
       - name
       - rendered_item
       - title
+    weights:
+      preprocess_index: -47
+      preprocess_query: -48
 tracker_settings:
   default:
     indexing_order: fifo
 options:
-  cron_limit: 50
   index_directly: true
-  track_changes_in_references: true
+  cron_limit: 50
 server: database
diff --git a/config/sync/search_api.server.database.yml b/config/sync/search_api.server.database.yml
index 8e74c69..5e6cc0a 100644
--- a/config/sync/search_api.server.database.yml
+++ b/config/sync/search_api.server.database.yml
@@ -12,11 +12,10 @@ description: 'Drutopia database server.'
 backend: search_api_db
 backend_config:
   database: 'default:default'
+  database_text: ''
   min_chars: 3
-  matching: words
+  partial_matches: false
   autocomplete:
     suggest_suffix: true
     suggest_words: true
-  database_text: ''
-  partial_matches: false
-  phrase: disabled
+  matching: words
diff --git a/config/sync/search_api.settings.yml b/config/sync/search_api.settings.yml
index 6cd5bd1..6a3ea2e 100644
--- a/config/sync/search_api.settings.yml
+++ b/config/sync/search_api.settings.yml
@@ -1,28 +1,6 @@
-_core:
-  default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE
 default_cron_limit: 50
 cron_worker_runtime: 15
 default_tracker: default
 tracking_page_size: 100
-boost_factors:
-  - 0.0
-  - 0.1
-  - 0.2
-  - 0.3
-  - 0.5
-  - 0.6
-  - 0.7
-  - 0.8
-  - 0.9
-  - 1.0
-  - 1.1
-  - 1.2
-  - 1.3
-  - 1.4
-  - 1.5
-  - 2.0
-  - 3.0
-  - 5.0
-  - 8.0
-  - 13.0
-  - 21.0
+_core:
+  default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE
diff --git a/config/sync/search_api_db.settings.yml b/config/sync/search_api_db.settings.yml
index cfb4639..4b890f0 100644
--- a/config/sync/search_api_db.settings.yml
+++ b/config/sync/search_api_db.settings.yml
@@ -1,3 +1,3 @@
+autocomplete_max_occurrences: 0.9
 _core:
   default_config_hash: 1oDrVmUfNY3gp0cRBV5bSXj1OdMCinSoSCM5qeZdLNU
-autocomplete_max_occurrences: 0.9
diff --git a/config/sync/serialization.settings.yml b/config/sync/serialization.settings.yml
new file mode 100644
index 0000000..ea2d8a5
--- /dev/null
+++ b/config/sync/serialization.settings.yml
@@ -0,0 +1,4 @@
+bc_primitives_as_strings: false
+bc_timestamp_normalizer_unix: false
+_core:
+  default_config_hash: 6A1rmsmNf4SJrwCEt_aZyO_kPYuFnIOPC2n5lJiIftA
diff --git a/config/sync/seven.settings.yml b/config/sync/seven.settings.yml
new file mode 100644
index 0000000..6bba58b
--- /dev/null
+++ b/config/sync/seven.settings.yml
@@ -0,0 +1,3 @@
+third_party_settings:
+  shortcut:
+    module_link: true
diff --git a/config/sync/statistics.settings.yml b/config/sync/statistics.settings.yml
deleted file mode 100644
index 1b4bef8..0000000
--- a/config/sync/statistics.settings.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-_core:
-  default_config_hash: 83DFdl59OsypYUif32K2NCB8eiszXAKCcay04oZCRpA
-count_content_views: 1
-display_max_age: 3600
diff --git a/config/sync/subpathauto.settings.yml b/config/sync/subpathauto.settings.yml
deleted file mode 100644
index c5f2943..0000000
--- a/config/sync/subpathauto.settings.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-_core:
-  default_config_hash: VSBsC1hsGPM2gNULMlhwxRDW_cJD6BVggQ8f9d9fZUk
-depth: 2
-redirect_support: false
diff --git a/config/sync/system.action.convert_bundles_on_action.yml b/config/sync/system.action.convert_bundles_on_action.yml
deleted file mode 100644
index 67874bd..0000000
--- a/config/sync/system.action.convert_bundles_on_action.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 9d1a9def-dd5c-4e4f-84ea-83ac6ae33859
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_action
-label: 'Convert Action Entity Bundles'
-type: action
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_base_field_override.yml b/config/sync/system.action.convert_bundles_on_base_field_override.yml
deleted file mode 100644
index 40c3e98..0000000
--- a/config/sync/system.action.convert_bundles_on_base_field_override.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7f441261-787e-4958-9306-df532432879b
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_base_field_override
-label: 'Convert Base field override Entity Bundles'
-type: base_field_override
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_block.yml b/config/sync/system.action.convert_bundles_on_block.yml
deleted file mode 100644
index 360ad5a..0000000
--- a/config/sync/system.action.convert_bundles_on_block.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 6fec25d3-120c-4582-80f0-0fe5355da250
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_block
-label: 'Convert Block Entity Bundles'
-type: block
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_block_content.yml b/config/sync/system.action.convert_bundles_on_block_content.yml
deleted file mode 100644
index 718850b..0000000
--- a/config/sync/system.action.convert_bundles_on_block_content.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 6e2fc7b2-1a00-4244-8ea4-03ef35a63c89
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_block_content
-label: 'Convert Custom block Entity Bundles'
-type: block_content
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_block_content_type.yml b/config/sync/system.action.convert_bundles_on_block_content_type.yml
deleted file mode 100644
index b14e775..0000000
--- a/config/sync/system.action.convert_bundles_on_block_content_type.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 0f012df9-892d-4012-b0fb-3c59837a849a
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_block_content_type
-label: 'Convert Custom block type Entity Bundles'
-type: block_content_type
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_block_visibility_group.yml b/config/sync/system.action.convert_bundles_on_block_visibility_group.yml
deleted file mode 100644
index 69b5633..0000000
--- a/config/sync/system.action.convert_bundles_on_block_visibility_group.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 3c513348-82e3-403f-9dcd-58c153bafc8a
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_block_visibility_group
-label: 'Convert Block Visibility Group Entity Bundles'
-type: block_visibility_group
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_captcha_point.yml b/config/sync/system.action.convert_bundles_on_captcha_point.yml
deleted file mode 100644
index 3568f03..0000000
--- a/config/sync/system.action.convert_bundles_on_captcha_point.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 2b0f0b55-9cc1-4e3d-8d94-77d7ebd2eaca
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_captcha_point
-label: 'Convert Captcha Point Entity Bundles'
-type: captcha_point
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_comment.yml b/config/sync/system.action.convert_bundles_on_comment.yml
deleted file mode 100644
index d5b2880..0000000
--- a/config/sync/system.action.convert_bundles_on_comment.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: c99597cf-4c35-4e85-85a9-d6ca85b2a161
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_comment
-label: 'Convert Comment Entity Bundles'
-type: comment
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_comment_type.yml b/config/sync/system.action.convert_bundles_on_comment_type.yml
deleted file mode 100644
index 9054151..0000000
--- a/config/sync/system.action.convert_bundles_on_comment_type.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 0148ae69-4f25-431f-a9bc-25a1f41f82fb
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_comment_type
-label: 'Convert Comment type Entity Bundles'
-type: comment_type
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_config_snapshot.yml b/config/sync/system.action.convert_bundles_on_config_snapshot.yml
deleted file mode 100644
index 757fc20..0000000
--- a/config/sync/system.action.convert_bundles_on_config_snapshot.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: a2809267-891e-473a-9c47-171c62ac23fd
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_config_snapshot
-label: 'Convert Config snapshot Entity Bundles'
-type: config_snapshot
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_contact_form.yml b/config/sync/system.action.convert_bundles_on_contact_form.yml
deleted file mode 100644
index c6ce657..0000000
--- a/config/sync/system.action.convert_bundles_on_contact_form.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 149109c8-e7b2-4fad-8425-99034af2b80e
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_contact_form
-label: 'Convert Contact form Entity Bundles'
-type: contact_form
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_contact_message.yml b/config/sync/system.action.convert_bundles_on_contact_message.yml
deleted file mode 100644
index ac4dd9c..0000000
--- a/config/sync/system.action.convert_bundles_on_contact_message.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: faaa5310-206f-4507-810e-8841329377ca
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_contact_message
-label: 'Convert Contact message Entity Bundles'
-type: contact_message
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_crop.yml b/config/sync/system.action.convert_bundles_on_crop.yml
deleted file mode 100644
index 2490521..0000000
--- a/config/sync/system.action.convert_bundles_on_crop.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 6fa31c2a-0488-45b5-bcf8-6bc134ec21e6
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_crop
-label: 'Convert Crop Entity Bundles'
-type: crop
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_crop_type.yml b/config/sync/system.action.convert_bundles_on_crop_type.yml
deleted file mode 100644
index 0d04baa..0000000
--- a/config/sync/system.action.convert_bundles_on_crop_type.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 6a8c04ac-4f30-4476-8c22-7bf6bb0ace7c
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_crop_type
-label: 'Convert Crop type Entity Bundles'
-type: crop_type
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_custom_perms_entity.yml b/config/sync/system.action.convert_bundles_on_custom_perms_entity.yml
deleted file mode 100644
index 3066b16..0000000
--- a/config/sync/system.action.convert_bundles_on_custom_perms_entity.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: e0d19fa5-006d-452c-8e86-565861fafe1a
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_custom_perms_entity
-label: 'Convert Custom perms entity Entity Bundles'
-type: custom_perms_entity
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_date_format.yml b/config/sync/system.action.convert_bundles_on_date_format.yml
deleted file mode 100644
index a974a1a..0000000
--- a/config/sync/system.action.convert_bundles_on_date_format.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ad1a7582-9f68-4c1e-9547-b8b5bbf9baa8
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_date_format
-label: 'Convert Date format Entity Bundles'
-type: date_format
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_editor.yml b/config/sync/system.action.convert_bundles_on_editor.yml
deleted file mode 100644
index a34747f..0000000
--- a/config/sync/system.action.convert_bundles_on_editor.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ec8193aa-89f6-451b-93e7-3193d80a1655
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_editor
-label: 'Convert Text Editor Entity Bundles'
-type: editor
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_entity_form_display.yml b/config/sync/system.action.convert_bundles_on_entity_form_display.yml
deleted file mode 100644
index b1aff80..0000000
--- a/config/sync/system.action.convert_bundles_on_entity_form_display.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 5f8fc632-c272-4c85-bf56-3998adf8f22b
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_entity_form_display
-label: 'Convert Entity form display Entity Bundles'
-type: entity_form_display
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_entity_form_mode.yml b/config/sync/system.action.convert_bundles_on_entity_form_mode.yml
deleted file mode 100644
index f14e9fc..0000000
--- a/config/sync/system.action.convert_bundles_on_entity_form_mode.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7d0e8a14-8781-46e5-987d-30ddccdcead3
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_entity_form_mode
-label: 'Convert Form mode Entity Bundles'
-type: entity_form_mode
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_entity_view_display.yml b/config/sync/system.action.convert_bundles_on_entity_view_display.yml
deleted file mode 100644
index d8c6a35..0000000
--- a/config/sync/system.action.convert_bundles_on_entity_view_display.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 79233bc3-aa26-4d8d-93bf-c9bfc5347675
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_entity_view_display
-label: 'Convert Entity view display Entity Bundles'
-type: entity_view_display
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_entity_view_mode.yml b/config/sync/system.action.convert_bundles_on_entity_view_mode.yml
deleted file mode 100644
index dd01acc..0000000
--- a/config/sync/system.action.convert_bundles_on_entity_view_mode.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 8fe10338-1f51-44ff-bd8b-42fbf436040f
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_entity_view_mode
-label: 'Convert View mode Entity Bundles'
-type: entity_view_mode
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_facets_facet.yml b/config/sync/system.action.convert_bundles_on_facets_facet.yml
deleted file mode 100644
index 77ca72f..0000000
--- a/config/sync/system.action.convert_bundles_on_facets_facet.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 961b6b56-03b2-4636-9635-3275180f9222
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_facets_facet
-label: 'Convert Facet Entity Bundles'
-type: facets_facet
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_facets_facet_source.yml b/config/sync/system.action.convert_bundles_on_facets_facet_source.yml
deleted file mode 100644
index 103ab11..0000000
--- a/config/sync/system.action.convert_bundles_on_facets_facet_source.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 2f451a05-caa3-4841-afdd-adfda3488506
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_facets_facet_source
-label: 'Convert Facet source Entity Bundles'
-type: facets_facet_source
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_field_config.yml b/config/sync/system.action.convert_bundles_on_field_config.yml
deleted file mode 100644
index 2b4482b..0000000
--- a/config/sync/system.action.convert_bundles_on_field_config.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: c0e3175b-defb-47b9-9879-64e098ff6249
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_field_config
-label: 'Convert Field Entity Bundles'
-type: field_config
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_field_storage_config.yml b/config/sync/system.action.convert_bundles_on_field_storage_config.yml
deleted file mode 100644
index 77b0ecc..0000000
--- a/config/sync/system.action.convert_bundles_on_field_storage_config.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: d58d4c26-5522-417c-af88-1ca0fc339ebb
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_field_storage_config
-label: 'Convert Field storage Entity Bundles'
-type: field_storage_config
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_file.yml b/config/sync/system.action.convert_bundles_on_file.yml
deleted file mode 100644
index 03acd4a..0000000
--- a/config/sync/system.action.convert_bundles_on_file.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 97a60cdc-1b1a-4776-8fb8-d40397bbac31
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_file
-label: 'Convert File Entity Bundles'
-type: file
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_filter_format.yml b/config/sync/system.action.convert_bundles_on_filter_format.yml
deleted file mode 100644
index 94fef97..0000000
--- a/config/sync/system.action.convert_bundles_on_filter_format.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 04bfa25f-9fe2-487e-8e23-6fc50194c0aa
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_filter_format
-label: 'Convert Text format Entity Bundles'
-type: filter_format
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_fixed_block_content.yml b/config/sync/system.action.convert_bundles_on_fixed_block_content.yml
deleted file mode 100644
index e5c04ba..0000000
--- a/config/sync/system.action.convert_bundles_on_fixed_block_content.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 711c88d0-48ed-484f-833d-1ad043e85cc9
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_fixed_block_content
-label: 'Convert Fixed block content Entity Bundles'
-type: fixed_block_content
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_image_style.yml b/config/sync/system.action.convert_bundles_on_image_style.yml
deleted file mode 100644
index ae9de3e..0000000
--- a/config/sync/system.action.convert_bundles_on_image_style.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 06647eff-8f3a-43a9-ae87-3e8293da88cd
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_image_style
-label: 'Convert Image style Entity Bundles'
-type: image_style
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_linkit_profile.yml b/config/sync/system.action.convert_bundles_on_linkit_profile.yml
deleted file mode 100644
index c413bb6..0000000
--- a/config/sync/system.action.convert_bundles_on_linkit_profile.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: c566ea06-1d16-4af6-a4d9-23fb04e70baf
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_linkit_profile
-label: 'Convert Linkit profile Entity Bundles'
-type: linkit_profile
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_media.yml b/config/sync/system.action.convert_bundles_on_media.yml
deleted file mode 100644
index 5a00ba0..0000000
--- a/config/sync/system.action.convert_bundles_on_media.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: be4a06cb-0c36-4e95-8876-0274e1c63921
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_media
-label: 'Convert Media Entity Bundles'
-type: media
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_menu.yml b/config/sync/system.action.convert_bundles_on_menu.yml
deleted file mode 100644
index b66e782..0000000
--- a/config/sync/system.action.convert_bundles_on_menu.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ba04c606-a941-4d84-a198-d3322f59416e
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_menu
-label: 'Convert Menu Entity Bundles'
-type: menu
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_menu_link_content.yml b/config/sync/system.action.convert_bundles_on_menu_link_content.yml
deleted file mode 100644
index 6c3f2fe..0000000
--- a/config/sync/system.action.convert_bundles_on_menu_link_content.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ac95c453-7e3a-4f2e-9547-aabbabd41a93
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_menu_link_content
-label: 'Convert Custom menu link Entity Bundles'
-type: menu_link_content
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_metatag_defaults.yml b/config/sync/system.action.convert_bundles_on_metatag_defaults.yml
deleted file mode 100644
index afff1fb..0000000
--- a/config/sync/system.action.convert_bundles_on_metatag_defaults.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: dc34867d-3857-4961-b0ce-c84466f51c99
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_metatag_defaults
-label: 'Convert Metatag defaults Entity Bundles'
-type: metatag_defaults
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_migration.yml b/config/sync/system.action.convert_bundles_on_migration.yml
deleted file mode 100644
index 64c39f0..0000000
--- a/config/sync/system.action.convert_bundles_on_migration.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 994aa17b-90fd-47e0-8a25-96bbcad22c61
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_migration
-label: 'Convert Migration Entity Bundles'
-type: migration
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_migration_group.yml b/config/sync/system.action.convert_bundles_on_migration_group.yml
deleted file mode 100644
index 95be5f4..0000000
--- a/config/sync/system.action.convert_bundles_on_migration_group.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 13328577-0e33-4ad2-a3ef-46e5daa40aa1
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_migration_group
-label: 'Convert Migration Group Entity Bundles'
-type: migration_group
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_node.yml b/config/sync/system.action.convert_bundles_on_node.yml
deleted file mode 100644
index 9a15a99..0000000
--- a/config/sync/system.action.convert_bundles_on_node.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 40c5df90-7978-4299-9006-4bc0b2f0fd97
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_node
-label: 'Convert Content Entity Bundles'
-type: node
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_node_type.yml b/config/sync/system.action.convert_bundles_on_node_type.yml
deleted file mode 100644
index 21099ea..0000000
--- a/config/sync/system.action.convert_bundles_on_node_type.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 75cf71ad-876b-4c51-a1b2-e1e3d228f5a0
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_node_type
-label: 'Convert Content type Entity Bundles'
-type: node_type
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_paragraph.yml b/config/sync/system.action.convert_bundles_on_paragraph.yml
deleted file mode 100644
index 759aa72..0000000
--- a/config/sync/system.action.convert_bundles_on_paragraph.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: e7a6ef0c-6866-4497-bcd9-506efa0c5dc6
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_paragraph
-label: 'Convert Paragraph Entity Bundles'
-type: paragraph
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_paragraphs_type.yml b/config/sync/system.action.convert_bundles_on_paragraphs_type.yml
deleted file mode 100644
index babbe52..0000000
--- a/config/sync/system.action.convert_bundles_on_paragraphs_type.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 93f5a258-a111-4083-87c9-71d32e2d12c3
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_paragraphs_type
-label: 'Convert Paragraphs type Entity Bundles'
-type: paragraphs_type
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_path_alias.yml b/config/sync/system.action.convert_bundles_on_path_alias.yml
deleted file mode 100644
index 649ae3e..0000000
--- a/config/sync/system.action.convert_bundles_on_path_alias.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 872eb8eb-8e69-47df-9202-86f3090d4548
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_path_alias
-label: 'Convert URL alias Entity Bundles'
-type: path_alias
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_pathauto_pattern.yml b/config/sync/system.action.convert_bundles_on_pathauto_pattern.yml
deleted file mode 100644
index 11c4352..0000000
--- a/config/sync/system.action.convert_bundles_on_pathauto_pattern.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 892726db-2542-4c50-82a5-4b1d45a02d54
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_pathauto_pattern
-label: 'Convert Pathauto pattern Entity Bundles'
-type: pathauto_pattern
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_rdf_mapping.yml b/config/sync/system.action.convert_bundles_on_rdf_mapping.yml
deleted file mode 100644
index b22117f..0000000
--- a/config/sync/system.action.convert_bundles_on_rdf_mapping.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: bbc02002-5a9f-47e2-b98d-757d5cfcbd16
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_rdf_mapping
-label: 'Convert RDF mapping Entity Bundles'
-type: rdf_mapping
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_redirect.yml b/config/sync/system.action.convert_bundles_on_redirect.yml
deleted file mode 100644
index 7569c86..0000000
--- a/config/sync/system.action.convert_bundles_on_redirect.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: fd04cd61-f26d-4fac-bd8e-c9a70776a661
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_redirect
-label: 'Convert Redirect Entity Bundles'
-type: redirect
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_responsive_image_style.yml b/config/sync/system.action.convert_bundles_on_responsive_image_style.yml
deleted file mode 100644
index 42659cc..0000000
--- a/config/sync/system.action.convert_bundles_on_responsive_image_style.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 84f64327-5a7d-40cd-9a97-c9f011fbd96b
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_responsive_image_style
-label: 'Convert Responsive image style Entity Bundles'
-type: responsive_image_style
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_search_api_index.yml b/config/sync/system.action.convert_bundles_on_search_api_index.yml
deleted file mode 100644
index 62434c0..0000000
--- a/config/sync/system.action.convert_bundles_on_search_api_index.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 17916cc8-a71e-4937-aca3-232c0000d0da
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_search_api_index
-label: 'Convert Search index Entity Bundles'
-type: search_api_index
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_search_api_server.yml b/config/sync/system.action.convert_bundles_on_search_api_server.yml
deleted file mode 100644
index b665b96..0000000
--- a/config/sync/system.action.convert_bundles_on_search_api_server.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: cb1a4643-b047-4d1a-ae80-7c605d991f6e
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_search_api_server
-label: 'Convert Search server Entity Bundles'
-type: search_api_server
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_search_api_task.yml b/config/sync/system.action.convert_bundles_on_search_api_task.yml
deleted file mode 100644
index 43b9479..0000000
--- a/config/sync/system.action.convert_bundles_on_search_api_task.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 2ff59997-2d67-4ec3-a3c3-8fea3d86f3c4
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_search_api_task
-label: 'Convert Search task Entity Bundles'
-type: search_api_task
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_shortcut.yml b/config/sync/system.action.convert_bundles_on_shortcut.yml
deleted file mode 100644
index 6c87f60..0000000
--- a/config/sync/system.action.convert_bundles_on_shortcut.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: cd07f03c-f7c8-45f5-8a7a-c0f352e5a05a
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_shortcut
-label: 'Convert Shortcut link Entity Bundles'
-type: shortcut
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_shortcut_set.yml b/config/sync/system.action.convert_bundles_on_shortcut_set.yml
deleted file mode 100644
index 5be10c4..0000000
--- a/config/sync/system.action.convert_bundles_on_shortcut_set.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 8a741340-4a2e-48bc-a013-19b56baf2bde
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_shortcut_set
-label: 'Convert Shortcut set Entity Bundles'
-type: shortcut_set
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_taxonomy_term.yml b/config/sync/system.action.convert_bundles_on_taxonomy_term.yml
deleted file mode 100644
index 9ee00fe..0000000
--- a/config/sync/system.action.convert_bundles_on_taxonomy_term.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 956ec8a0-2b72-4026-a326-c0784c27d6e6
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_taxonomy_term
-label: 'Convert Taxonomy term Entity Bundles'
-type: taxonomy_term
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_taxonomy_vocabulary.yml b/config/sync/system.action.convert_bundles_on_taxonomy_vocabulary.yml
deleted file mode 100644
index d6ab45b..0000000
--- a/config/sync/system.action.convert_bundles_on_taxonomy_vocabulary.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 9e3d9462-1bdc-4b03-800e-09284622ea44
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_taxonomy_vocabulary
-label: 'Convert Taxonomy vocabulary Entity Bundles'
-type: taxonomy_vocabulary
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_tour.yml b/config/sync/system.action.convert_bundles_on_tour.yml
deleted file mode 100644
index 163c605..0000000
--- a/config/sync/system.action.convert_bundles_on_tour.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 4a058825-32e8-4a90-8ed4-cec7e6c83a12
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_tour
-label: 'Convert Tour Entity Bundles'
-type: tour
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_user.yml b/config/sync/system.action.convert_bundles_on_user.yml
deleted file mode 100644
index 83ecbd5..0000000
--- a/config/sync/system.action.convert_bundles_on_user.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: abc37603-7642-46be-a52c-f654d0014c99
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_user
-label: 'Convert User Entity Bundles'
-type: user
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_user_role.yml b/config/sync/system.action.convert_bundles_on_user_role.yml
deleted file mode 100644
index 276b9a6..0000000
--- a/config/sync/system.action.convert_bundles_on_user_role.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 109343a9-de41-434c-bffe-84070b0b1990
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_user_role
-label: 'Convert Role Entity Bundles'
-type: user_role
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.convert_bundles_on_view.yml b/config/sync/system.action.convert_bundles_on_view.yml
deleted file mode 100644
index f8c963d..0000000
--- a/config/sync/system.action.convert_bundles_on_view.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ad043648-bd10-495c-80e9-77a48653323c
-langcode: en
-status: true
-dependencies:
-  module:
-    - convert_bundles
-id: convert_bundles_on_view
-label: 'Convert View Entity Bundles'
-type: view
-plugin: convert_bundles_action_base
-configuration: {  }
diff --git a/config/sync/system.action.media_delete_action.yml b/config/sync/system.action.media_delete_action.yml
deleted file mode 100644
index 1f5c093..0000000
--- a/config/sync/system.action.media_delete_action.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: ebbdbbdd-2c8e-4e29-8a60-2cd5f0a9fea8
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: FrZy1tmuXJcOxhXlBoI1Hsnen5TT-9OCC1iolWH84go
-id: media_delete_action
-label: 'Delete media'
-type: media
-plugin: 'entity:delete_action:media'
-configuration: {  }
diff --git a/config/sync/system.action.media_publish_action.yml b/config/sync/system.action.media_publish_action.yml
deleted file mode 100644
index f36af6f..0000000
--- a/config/sync/system.action.media_publish_action.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 55b32edc-f5cb-4b7a-a4b4-1e6c260b7653
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: nh83qNNrmWE-CDdHz2MdFOAk60T9mzv3R-MaKfZR2jw
-id: media_publish_action
-label: 'Publish media'
-type: media
-plugin: 'entity:publish_action:media'
-configuration: {  }
diff --git a/config/sync/system.action.media_save_action.yml b/config/sync/system.action.media_save_action.yml
deleted file mode 100644
index 372150f..0000000
--- a/config/sync/system.action.media_save_action.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 802965d5-ae83-475c-a8ff-cc1f7d8fc338
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: VVyUA6PIaVeGtcIbgEWqJ6SYDiJdReBeojFswURFpKs
-id: media_save_action
-label: 'Save media'
-type: media
-plugin: 'entity:save_action:media'
-configuration: {  }
diff --git a/config/sync/system.action.media_unpublish_action.yml b/config/sync/system.action.media_unpublish_action.yml
deleted file mode 100644
index fe69912..0000000
--- a/config/sync/system.action.media_unpublish_action.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 6393e92a-f5e6-45f3-9bfa-54019aeae290
-langcode: en
-status: true
-dependencies:
-  module:
-    - media
-_core:
-  default_config_hash: CsK6TseQ2DatEbZgbd30swOlZ28_HHwAESU2LvEnWq0
-id: media_unpublish_action
-label: 'Unpublish media'
-type: media
-plugin: 'entity:unpublish_action:media'
-configuration: {  }
diff --git a/config/sync/system.action.pathauto_update_alias_node.yml b/config/sync/system.action.pathauto_update_alias_node.yml
index 8ad3dfe..22b5d7c 100644
--- a/config/sync/system.action.pathauto_update_alias_node.yml
+++ b/config/sync/system.action.pathauto_update_alias_node.yml
@@ -2,11 +2,11 @@ uuid: 344cf245-f745-4525-8924-24c5dfcf190a
 langcode: en
 status: true
 dependencies:
-  module:
-    - pathauto
   enforced:
     module:
       - node
+  module:
+    - pathauto
 _core:
   default_config_hash: lno8QThS348UX-kaUsagJtCnuPHKLXYnTQiF_9HSDWA
 id: pathauto_update_alias_node
diff --git a/config/sync/system.action.pathauto_update_alias_user.yml b/config/sync/system.action.pathauto_update_alias_user.yml
index 4a81844..a801754 100644
--- a/config/sync/system.action.pathauto_update_alias_user.yml
+++ b/config/sync/system.action.pathauto_update_alias_user.yml
@@ -2,11 +2,11 @@ uuid: 18e559c7-d673-484c-a0a5-9f08b1363b17
 langcode: en
 status: true
 dependencies:
-  module:
-    - pathauto
   enforced:
     module:
       - user
+  module:
+    - pathauto
 _core:
   default_config_hash: x_ok_ZsfA4Xk4B_hVW3O4-3PcNoK57nXLz_Dlletidg
 id: pathauto_update_alias_user
diff --git a/config/sync/system.action.redirect_delete_action.yml b/config/sync/system.action.redirect_delete_action.yml
index 2281b7d..1cfa3bc 100644
--- a/config/sync/system.action.redirect_delete_action.yml
+++ b/config/sync/system.action.redirect_delete_action.yml
@@ -2,11 +2,11 @@ uuid: 64b28b1f-dcab-4ba0-b506-aa60a87345c7
 langcode: en
 status: true
 dependencies:
-  module:
-    - redirect
   enforced:
     module:
       - redirect
+  module:
+    - redirect
 _core:
   default_config_hash: vcnRZRvBqTbK3nZ2M4_lKPlEGc8GjPzgaqapYUfyX8M
 id: redirect_delete_action
diff --git a/config/sync/system.action.taxonomy_term_publish_action.yml b/config/sync/system.action.taxonomy_term_publish_action.yml
deleted file mode 100644
index f28169b..0000000
--- a/config/sync/system.action.taxonomy_term_publish_action.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: b92e437c-f849-479a-b925-da206609b8de
-langcode: en
-status: true
-dependencies:
-  module:
-    - taxonomy
-_core:
-  default_config_hash: DoVt_VGgVLcDD4XmVbSFzr0K17SJy9imFiYusKkJBgY
-id: taxonomy_term_publish_action
-label: 'Publish taxonomy term'
-type: taxonomy_term
-plugin: 'entity:publish_action:taxonomy_term'
-configuration: {  }
diff --git a/config/sync/system.action.taxonomy_term_unpublish_action.yml b/config/sync/system.action.taxonomy_term_unpublish_action.yml
deleted file mode 100644
index 269998b..0000000
--- a/config/sync/system.action.taxonomy_term_unpublish_action.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 0bad7221-6a6d-4329-b053-736aae94ac79
-langcode: en
-status: true
-dependencies:
-  module:
-    - taxonomy
-_core:
-  default_config_hash: z2sNRM3ECa7FPCGnSNje_9SmZJQgwhD_6fG_L4Mr8zI
-id: taxonomy_term_unpublish_action
-label: 'Unpublish taxonomy term'
-type: taxonomy_term
-plugin: 'entity:unpublish_action:taxonomy_term'
-configuration: {  }
diff --git a/config/sync/system.action.user_add_role_action.content_administrator.yml b/config/sync/system.action.user_add_role_action.content_administrator.yml
new file mode 100644
index 0000000..4e96a0f
--- /dev/null
+++ b/config/sync/system.action.user_add_role_action.content_administrator.yml
@@ -0,0 +1,14 @@
+uuid: b222fa47-cff5-4e94-af47-84a2bde97b15
+langcode: en
+status: true
+dependencies:
+  config:
+    - user.role.content_administrator
+  module:
+    - user
+id: user_add_role_action.content_administrator
+label: 'Add the content administrator role to the selected user(s)'
+type: user
+plugin: user_add_role_action
+configuration:
+  rid: content_administrator
diff --git a/config/sync/system.action.user_add_role_action.proofreader.yml b/config/sync/system.action.user_add_role_action.proofreader.yml
new file mode 100644
index 0000000..34c6501
--- /dev/null
+++ b/config/sync/system.action.user_add_role_action.proofreader.yml
@@ -0,0 +1,14 @@
+uuid: e48bc0ca-88c6-426e-bcb6-8fbc5988883c
+langcode: en
+status: true
+dependencies:
+  config:
+    - user.role.proofreader
+  module:
+    - user
+id: user_add_role_action.proofreader
+label: 'Add the proofreader role to the selected user(s)'
+type: user
+plugin: user_add_role_action
+configuration:
+  rid: proofreader
diff --git a/config/sync/system.action.user_remove_role_action.content_administrator.yml b/config/sync/system.action.user_remove_role_action.content_administrator.yml
new file mode 100644
index 0000000..d7bb466
--- /dev/null
+++ b/config/sync/system.action.user_remove_role_action.content_administrator.yml
@@ -0,0 +1,14 @@
+uuid: 26345514-9ec4-48e3-9dea-c85d5c3c23e3
+langcode: en
+status: true
+dependencies:
+  config:
+    - user.role.content_administrator
+  module:
+    - user
+id: user_remove_role_action.content_administrator
+label: 'Remove the content administrator role from the selected user(s)'
+type: user
+plugin: user_remove_role_action
+configuration:
+  rid: content_administrator
diff --git a/config/sync/system.action.user_remove_role_action.proofreader.yml b/config/sync/system.action.user_remove_role_action.proofreader.yml
new file mode 100644
index 0000000..742f1b6
--- /dev/null
+++ b/config/sync/system.action.user_remove_role_action.proofreader.yml
@@ -0,0 +1,14 @@
+uuid: 8cb184f2-7b47-4b99-b871-6af76cca867a
+langcode: en
+status: true
+dependencies:
+  config:
+    - user.role.proofreader
+  module:
+    - user
+id: user_remove_role_action.proofreader
+label: 'Remove the proofreader role from the selected user(s)'
+type: user
+plugin: user_remove_role_action
+configuration:
+  rid: proofreader
diff --git a/config/sync/system.advisories.yml b/config/sync/system.advisories.yml
deleted file mode 100644
index bfdac86..0000000
--- a/config/sync/system.advisories.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-enabled: true
-interval_hours: 6
diff --git a/config/sync/system.authorize.yml b/config/sync/system.authorize.yml
new file mode 100644
index 0000000..c469cae
--- /dev/null
+++ b/config/sync/system.authorize.yml
@@ -0,0 +1,3 @@
+filetransfer_default: null
+_core:
+  default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg
diff --git a/config/sync/system.cron.yml b/config/sync/system.cron.yml
index 7360f55..a44f232 100644
--- a/config/sync/system.cron.yml
+++ b/config/sync/system.cron.yml
@@ -1,6 +1,5 @@
-_core:
-  default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E
 threshold:
   requirements_warning: 172800
   requirements_error: 1209600
-logging: true
+_core:
+  default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E
diff --git a/config/sync/system.date.yml b/config/sync/system.date.yml
index 5099b6c..59acb7a 100644
--- a/config/sync/system.date.yml
+++ b/config/sync/system.date.yml
@@ -1,11 +1,11 @@
-_core:
-  default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo
-first_day: 0
 country:
-  default: null
+  default: ''
+first_day: 0
 timezone:
   default: UTC
   user:
     configurable: true
-    default: 0
     warn: false
+    default: 0
+_core:
+  default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo
diff --git a/config/sync/system.diff.yml b/config/sync/system.diff.yml
index f2fff7b..c43dd91 100644
--- a/config/sync/system.diff.yml
+++ b/config/sync/system.diff.yml
@@ -1,5 +1,5 @@
-_core:
-  default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
 context:
   lines_leading: 2
   lines_trailing: 2
+_core:
+  default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM
diff --git a/config/sync/system.feature_flags.yml b/config/sync/system.feature_flags.yml
deleted file mode 100644
index 7169df0..0000000
--- a/config/sync/system.feature_flags.yml
+++ /dev/null
@@ -1 +0,0 @@
-linkset_endpoint: false
diff --git a/config/sync/system.file.yml b/config/sync/system.file.yml
index 1798f2a..39ee4cb 100644
--- a/config/sync/system.file.yml
+++ b/config/sync/system.file.yml
@@ -1,6 +1,7 @@
-_core:
-  default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g
 allow_insecure_uploads: false
 default_scheme: public
-path: {  }
+path:
+  temporary: /tmp
 temporary_maximum_age: 21600
+_core:
+  default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g
diff --git a/config/sync/system.image.gd.yml b/config/sync/system.image.gd.yml
index 2d81266..b676907 100644
--- a/config/sync/system.image.gd.yml
+++ b/config/sync/system.image.gd.yml
@@ -1,3 +1,3 @@
+jpeg_quality: 75
 _core:
   default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ
-jpeg_quality: 75
diff --git a/config/sync/system.image.yml b/config/sync/system.image.yml
index 2e18f7f..990d3dc 100644
--- a/config/sync/system.image.yml
+++ b/config/sync/system.image.yml
@@ -1,3 +1,3 @@
+toolkit: gd
 _core:
   default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24
-toolkit: gd
diff --git a/config/sync/system.logging.yml b/config/sync/system.logging.yml
index d6164de..e95b28a 100644
--- a/config/sync/system.logging.yml
+++ b/config/sync/system.logging.yml
@@ -1,3 +1,3 @@
+error_level: hide
 _core:
   default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA
-error_level: hide
diff --git a/config/sync/system.mail.yml b/config/sync/system.mail.yml
index 2c6ba5a..60ed34d 100644
--- a/config/sync/system.mail.yml
+++ b/config/sync/system.mail.yml
@@ -1,11 +1,4 @@
-_core:
-  default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
 interface:
   default: php_mail
-mailer_dsn:
-  scheme: sendmail
-  host: default
-  user: null
-  password: null
-  port: null
-  options: {  }
+_core:
+  default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE
diff --git a/config/sync/system.maintenance.yml b/config/sync/system.maintenance.yml
index 7bc5b98..79501fb 100644
--- a/config/sync/system.maintenance.yml
+++ b/config/sync/system.maintenance.yml
@@ -1,4 +1,4 @@
+message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
+langcode: en
 _core:
   default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8
-langcode: en
-message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
diff --git a/config/sync/system.performance.yml b/config/sync/system.performance.yml
index 902d668..d4f85d5 100644
--- a/config/sync/system.performance.yml
+++ b/config/sync/system.performance.yml
@@ -1,8 +1,6 @@
-_core:
-  default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ
 cache:
   page:
-    max_age: 1800
+    max_age: 0
 css:
   preprocess: true
   gzip: true
@@ -14,3 +12,6 @@ fast_404:
 js:
   preprocess: true
   gzip: true
+stale_file_threshold: 2592000
+_core:
+  default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ
diff --git a/config/sync/system.rss.yml b/config/sync/system.rss.yml
index 04a8fe0..858f127 100644
--- a/config/sync/system.rss.yml
+++ b/config/sync/system.rss.yml
@@ -1,4 +1,8 @@
+channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: en
 _core:
   default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU
-items:
-  view_mode: rss
diff --git a/config/sync/system.site.yml b/config/sync/system.site.yml
index a4d700c..1359baa 100644
--- a/config/sync/system.site.yml
+++ b/config/sync/system.site.yml
@@ -1,15 +1,14 @@
-_core:
-  default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI
-langcode: en
 uuid: defbb222-313e-4c16-8f41-a3362991e447
 name: 'Grassroots Economic Organizing'
-mail: webworker@geo.coop
+mail: admin@example.com
 slogan: 'Catalyzing worker co-ops & the solidarity economy'
 page:
   403: ''
   404: ''
-  front: /home
+  front: /node
 admin_compact_mode: false
 weight_select_max: 100
+langcode: en
 default_langcode: en
-mail_notification: webworker@geo.coop
+_core:
+  default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI
diff --git a/config/sync/system.theme.global.yml b/config/sync/system.theme.global.yml
index 929d470..ad3e46c 100644
--- a/config/sync/system.theme.global.yml
+++ b/config/sync/system.theme.global.yml
@@ -1,5 +1,3 @@
-_core:
-  default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8
 favicon:
   mimetype: image/vnd.microsoft.icon
   path: ''
@@ -7,10 +5,12 @@ favicon:
   use_default: true
 features:
   comment_user_picture: true
-  comment_user_verification: false
+  comment_user_verification: true
   favicon: true
   node_user_picture: true
 logo:
   path: ''
-  url: null
+  url: ''
   use_default: true
+_core:
+  default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8
diff --git a/config/sync/system.theme.yml b/config/sync/system.theme.yml
index 8a14c9f..406fb18 100644
--- a/config/sync/system.theme.yml
+++ b/config/sync/system.theme.yml
@@ -1,4 +1,4 @@
-_core:
-  default_config_hash: CC5XFpmfp26ciMydC4BovjZOl9XoF7yoo2ypqf-GrZE
 admin: claro
 default: geofresco
+_core:
+  default_config_hash: CC5XFpmfp26ciMydC4BovjZOl9XoF7yoo2ypqf-GrZE
diff --git a/config/sync/taxonomy.settings.yml b/config/sync/taxonomy.settings.yml
index 0e3837d..c98a316 100644
--- a/config/sync/taxonomy.settings.yml
+++ b/config/sync/taxonomy.settings.yml
@@ -1,5 +1,5 @@
-_core:
-  default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias
 maintain_index_table: true
 override_selector: false
 terms_per_page_admin: 100
+_core:
+  default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias
diff --git a/config/sync/taxonomy.vocabulary.article_type.yml b/config/sync/taxonomy.vocabulary.article_type.yml
index da7370d..a548d83 100644
--- a/config/sync/taxonomy.vocabulary.article_type.yml
+++ b/config/sync/taxonomy.vocabulary.article_type.yml
@@ -8,4 +8,3 @@ name: 'Article type'
 vid: article_type
 description: 'For categorizing articles.'
 weight: 0
-new_revision: false
diff --git a/config/sync/taxonomy.vocabulary.collection_type.yml b/config/sync/taxonomy.vocabulary.collection_type.yml
index 4c4e432..7ac59c3 100644
--- a/config/sync/taxonomy.vocabulary.collection_type.yml
+++ b/config/sync/taxonomy.vocabulary.collection_type.yml
@@ -8,4 +8,3 @@ name: 'Collection type'
 vid: collection_type
 description: 'For categorizing collections on aspects unique to collections.'
 weight: 0
-new_revision: false
diff --git a/config/sync/taxonomy.vocabulary.people_type.yml b/config/sync/taxonomy.vocabulary.people_type.yml
index c94daa3..1c1bfe2 100644
--- a/config/sync/taxonomy.vocabulary.people_type.yml
+++ b/config/sync/taxonomy.vocabulary.people_type.yml
@@ -8,4 +8,3 @@ name: 'People type'
 vid: people_type
 description: 'For categorizing people content.'
 weight: 0
-new_revision: false
diff --git a/config/sync/taxonomy.vocabulary.tags.yml b/config/sync/taxonomy.vocabulary.tags.yml
index 876a35f..4050b22 100644
--- a/config/sync/taxonomy.vocabulary.tags.yml
+++ b/config/sync/taxonomy.vocabulary.tags.yml
@@ -8,4 +8,3 @@ name: Tags
 vid: tags
 description: 'Use tags to group content if you need categories beyond the given topics.'
 weight: 0
-new_revision: false
diff --git a/config/sync/taxonomy.vocabulary.topics.yml b/config/sync/taxonomy.vocabulary.topics.yml
index 1e59f38..b917557 100644
--- a/config/sync/taxonomy.vocabulary.topics.yml
+++ b/config/sync/taxonomy.vocabulary.topics.yml
@@ -8,4 +8,3 @@ name: Topics
 vid: topics
 description: 'Use topics to group content into categories.'
 weight: 0
-new_revision: false
diff --git a/config/sync/text.settings.yml b/config/sync/text.settings.yml
index a295c7e..ef751a5 100644
--- a/config/sync/text.settings.yml
+++ b/config/sync/text.settings.yml
@@ -1,3 +1,3 @@
+default_summary_length: 600
 _core:
   default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA
-default_summary_length: 600
diff --git a/config/sync/tour.tour.block-layout.yml b/config/sync/tour.tour.block-layout.yml
deleted file mode 100644
index 6b3247a..0000000
--- a/config/sync/tour.tour.block-layout.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-uuid: 0ce31527-fe4d-4b3f-b561-cddb88ea1002
-langcode: en
-status: true
-dependencies:
-  module:
-    - block
-_core:
-  default_config_hash: pG6QAggTrD7RQWb79PT3NH48GSvTiePly_l53f3OENs
-id: block-layout
-label: 'Block Layout Page'
-module: block
-routes:
-  -
-    route_name: block.admin_display
-tips:
-  block-layout:
-    id: block-layout
-    plugin: text
-    label: 'Block Layout'
-    weight: 1
-    body: 'Blocks are boxes of content rendered into an area, or region, of a web page that can be displayed in regions (such as footer or sidebar) on your page.'
-  place-block:
-    id: place-block
-    plugin: text
-    label: 'Place Blocks'
-    weight: 2
-    selector: .button--small
-    body: 'Any custom or contributed block can be added to a particular region by clicking on a button Place block. A new block can also be created by clicking on Place Block'
-  block-region:
-    id: block-region
-    plugin: text
-    label: 'Block Region'
-    weight: 3
-    selector: .block-region-select
-    body: 'Assign or change the region of a block by clicking here. A dropdown list with all the regions will appear. You can place one block in multiple regions.'
-  configure-block:
-    id: configure-block
-    plugin: text
-    label: 'Configure Block'
-    weight: 4
-    selector: .dropbutton-widget
-    body: 'By Clicking on "Configure" you can go ahead and edit the contents of the block, deal with the visibility settings and even change the placement of where it is on your theme.'
diff --git a/config/sync/tour.tour.honeypot.yml b/config/sync/tour.tour.honeypot.yml
deleted file mode 100644
index 3d8c8d9..0000000
--- a/config/sync/tour.tour.honeypot.yml
+++ /dev/null
@@ -1,70 +0,0 @@
-uuid: 342c1eb0-ae5f-4e47-a29b-c50acf2ba48b
-langcode: en
-status: true
-dependencies:
-  module:
-    - honeypot
-_core:
-  default_config_hash: eJszwZawaWU6LHIgSykn-OsisG3smruwsKOqx44TUoA
-id: honeypot
-label: Honeypot
-module: honeypot
-routes:
-  -
-    route_name: honeypot.config
-tips:
-  honeypot-configuration:
-    id: honeypot-configuration
-    plugin: text
-    label: Honeypot
-    weight: -10
-    position: top-start
-    body: "Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots.\r\n\r\nClick Next to be guided through this configuration page."
-  protect-all-forms:
-    id: protect-all-forms
-    plugin: text
-    label: 'Protect all forms'
-    weight: -9
-    position: bottom-start
-    selector: '#edit-protect-all-forms'
-    body: "Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed.\r\n\r\nNote: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time."
-  log-blocked-form-submissions:
-    id: log-blocked-form-submissions
-    plugin: text
-    label: 'Log blocked form submissions'
-    weight: -8
-    position: bottom-start
-    selector: '#edit-log'
-    body: 'Check this box to log every form submission using watchdog. If you have Database Logging enabled, you can view these log entries in the Recent log messages page under Reports.'
-  honeypot-element-name:
-    id: honeypot-element-name
-    plugin: text
-    label: 'Honeypot Element Name'
-    weight: -7
-    position: top-start
-    selector: '#edit-element-name'
-    body: "Spam bots typically fill out any field they believe will help get links back to their site, so tempting them with a field named something like 'url', 'homepage', or 'link' makes it hard for them to resist filling in the field—and easy to catch them in the trap and reject their submissions!"
-  honeypot-time-limit:
-    id: honeypot-time-limit
-    plugin: text
-    label: 'Honeypot Time Limit'
-    weight: -6
-    position: top-start
-    selector: '#edit-time-limit'
-    body: "If you enter a positive value, Honeypot will require that all protected forms take at least that many seconds long to fill out. Most forms take at least 5-10 seconds to complete (if you're a human), so setting this to a value < 5 will help protect against spam bots. Set to 0 to disable."
-  honeypot-expire:
-    id: honeypot-expire
-    plugin: text
-    label: 'Honeypot Expire'
-    weight: -5
-    position: top-start
-    selector: '#edit-expire'
-    body: "If you enter a positive value, Honeypot will require that all protected forms take at least that many seconds long to fill out. Most forms take at least 5-10 seconds to complete (if you're a human), so setting this to a value < 5 will help protect against spam bots. Set to 0 to disable."
-  honeypot-form-specific-settings:
-    id: honeypot-form-specific-settings
-    plugin: text
-    label: 'Honeypot form-specific settings'
-    weight: -4
-    position: top-start
-    selector: '#edit-form-settings'
-    body: 'If you would like to choose particular forms to be protected by Honeypot, check the forms you wish to protect in this section. Most common types of forms are available for protection.'
diff --git a/config/sync/tour.tour.search-api-index-fields.yml b/config/sync/tour.tour.search-api-index-fields.yml
index 860652c..fdc4943 100644
--- a/config/sync/tour.tour.search-api-index-fields.yml
+++ b/config/sync/tour.tour.search-api-index-fields.yml
@@ -17,75 +17,85 @@ tips:
     id: search-api-index-fields-introduction
     plugin: text
     label: 'Fields indexed in this index'
-    weight: 1
     body: 'This page lists which fields are indexed in this index, grouped by datasource. (Datasource-independent fields are listed under "General".) Indexed fields can be used to add filters or sorting to views or other search displays based on the index. Fields with type "Fulltext" can also be used for fulltext searching.'
+    weight: 1
   search-api-index-fields-add:
     id: search-api-index-fields-add
     plugin: text
     label: 'Add fields'
-    weight: 2
-    selector: '.button-action[data-drupal-selector="edit-add-field"]'
     body: 'With the "Add fields" button you can add additional fields to this index.'
+    weight: 2
+    attributes:
+      data-class: 'button-action[data-drupal-selector="edit-add-field"]'
   search-api-index-fields-label:
     id: search-api-index-fields-label
     plugin: text
     label: Label
-    weight: 3
-    selector: '.details-wrapper:nth(0) table thead th:nth(0)'
     body: 'A label for the field that will be used to refer to the field in most places in the user interface.'
+    weight: 3
+    attributes:
+      data-class: 'details-wrapper:nth(0) table thead th:nth(0)'
   search-api-index-fields-machine-name:
     id: search-api-index-fields-machine-name
     plugin: text
     label: 'Machine name'
+    body: 'The internal ID to use for this field. Can safely be ignored by inexperienced users in most cases. Changing a field''s machine name requires reindexing of the index.'
     weight: 4
-    selector: '.details-wrapper:nth(0) table thead th:nth(1)'
-    body: "The internal ID to use for this field. Can safely be ignored by inexperienced users in most cases. Changing a field's machine name requires reindexing of the index."
+    attributes:
+      data-class: 'details-wrapper:nth(0) table thead th:nth(1)'
   search-api-index-fields-property-path:
     id: search-api-index-fields-property-path
     plugin: text
     label: 'Property path'
-    weight: 5
-    selector: '.details-wrapper:nth(0) table thead th:nth(2)'
     body: 'The internal relationship linking the indexed item to the field, with links being separated by colons (:). This can be useful information for advanced users, but can otherwise be ignored.'
+    weight: 5
+    attributes:
+      data-class: 'details-wrapper:nth(0) table thead th:nth(2)'
   search-api-index-fields-type:
     id: search-api-index-fields-type
     plugin: text
     label: Type
-    weight: 6
-    selector: '.details-wrapper:nth(0) table thead th:nth(3)'
     body: 'The data type to use when indexing the field. Determines how a field can be used in searches. For information on the available types, see the <a href="#search-api-data-types-table">"Data types" box</a> at the bottom of the page.'
+    weight: 6
+    attributes:
+      data-class: 'details-wrapper:nth(0) table thead th:nth(3)'
   search-api-index-fields-boost:
     id: search-api-index-fields-boost
     plugin: text
     label: Boost
-    weight: 7
-    selector: '.details-wrapper:nth(0) table thead th:nth(4)'
     body: 'Only applicable for fulltext fields. Determines how "important" the field is compared to other fulltext fields, to influence scoring of fulltext searches.'
+    weight: 7
+    attributes:
+      data-class: 'details-wrapper:nth(0) table thead th:nth(4)'
   search-api-index-fields-edit:
     id: search-api-index-fields-edit
     plugin: text
     label: 'Edit field'
-    weight: 8
-    selector: '.details-wrapper:nth(0) table tbody td:nth(5) a'
     body: 'Some fields have additional configuration available, in which case an "Edit" link is displayed in the "Operations" column.'
+    weight: 8
+    attributes:
+      data-class: 'details-wrapper:nth(0) table tbody td:nth(5) a'
   search-api-index-fields-remove:
     id: search-api-index-fields-remove
     plugin: text
     label: 'Remove field'
-    weight: 9
-    selector: '.details-wrapper:nth(0) table tbody td:nth(6) a'
     body: 'Removes a field from the index again. (Note: Sometimes, a field is required (for example, by a processor) and cannot be removed.)'
+    weight: 9
+    attributes:
+      data-class: 'details-wrapper:nth(0) table tbody td:nth(6) a'
   search-api-index-fields-submit:
     id: search-api-index-fields-submit
     plugin: text
     label: 'Save changes'
-    weight: 10
-    selector: '#edit-actions-submit'
     body: 'This saves all changes made to the fields for this index. Until this button is pressed, all added, changed or removed fields will only be stored temporarily and not effect the actual index used in the rest of the site.'
+    weight: 10
+    attributes:
+      data-id: edit-actions-submit
   search-api-index-fields-cancel:
     id: search-api-index-fields-cancel
     plugin: text
     label: 'Cancel changes'
-    weight: 10
-    selector: '#edit-actions-cancel'
     body: 'If you have made changes to the index''s fields but not yet saved them, the "Cancel" link lets you discard those changes.'
+    weight: 10
+    attributes:
+      data-id: edit-actions-cancel
diff --git a/config/sync/tour.tour.search-api-index-form.yml b/config/sync/tour.tour.search-api-index-form.yml
index e48748e..bc062eb 100644
--- a/config/sync/tour.tour.search-api-index-form.yml
+++ b/config/sync/tour.tour.search-api-index-form.yml
@@ -19,47 +19,53 @@ tips:
     id: search-api-index-form-introduction
     plugin: text
     label: 'Adding or editing an index'
-    weight: 1
     body: 'This form can be used to edit an existing index or add a new index to your site. Indexes define a set of data that will be indexed and can then be searched.'
+    weight: 1
   search-api-index-form-name:
     id: search-api-index-form-name
     plugin: text
     label: 'Index name'
-    weight: 2
-    selector: '#edit-name'
     body: 'Enter a name to identify this index. For example, "Content index". This will only be displayed in the admin user interface.'
+    weight: 2
+    attributes:
+      data-id: edit-name
   search-api-index-form-datasources:
     id: search-api-index-form-datasources
     plugin: text
     label: Datasources
-    weight: 3
-    selector: '#edit-datasources'
     body: 'Datasources define the types of items that will be indexed in this index. By default, all content entities (like content, comments and taxonomy terms) will be available here, but modules can also add their own.'
+    weight: 3
+    attributes:
+      data-id: edit-datasources
   search-api-index-form-tracker:
     id: search-api-index-form-tracker
     plugin: text
     label: Tracker
+    body: 'An index''s tracker is the system that keeps track of which items there are available for the index, and which of them still need to be indexed. Changing the tracker of an existing index will lead to reindexing of all items.'
     weight: 4
-    selector: '#edit-tracker'
-    body: "An index's tracker is the system that keeps track of which items there are available for the index, and which of them still need to be indexed. Changing the tracker of an existing index will lead to reindexing of all items."
+    attributes:
+      data-id: edit-tracker
   search-api-index-form-server:
     id: search-api-index-form-server
     plugin: text
     label: Server
-    weight: 5
-    selector: '#edit-server'
     body: 'The search server that the index should use for indexing and searching. If no server is selected here, the index cannot be enabled. An index can only have one server, but a server can have any number of indexes.'
+    weight: 5
+    attributes:
+      data-id: edit-server
   search-api-index-form-description:
     id: search-api-index-form-description
     plugin: text
     label: 'Index description'
-    weight: 6
-    selector: '#edit-description'
     body: 'Optionally, enter a description to explain the function of the index in more detail. This will only be displayed in the admin user interface.'
+    weight: 6
+    attributes:
+      data-id: edit-description
   search-api-index-form-options:
     id: search-api-index-form-options
     plugin: text
     label: 'Advanced options'
-    weight: 7
-    selector: '#edit-options'
     body: 'These options allow more detailed configuration of index behavior, but can usually safely be ignored by inexperienced users.'
+    weight: 7
+    attributes:
+      data-id: edit-options
diff --git a/config/sync/tour.tour.search-api-index-processors.yml b/config/sync/tour.tour.search-api-index-processors.yml
index 600a6c6..fdd3c45 100644
--- a/config/sync/tour.tour.search-api-index-processors.yml
+++ b/config/sync/tour.tour.search-api-index-processors.yml
@@ -17,26 +17,29 @@ tips:
     id: search-api-index-processors-introduction
     plugin: text
     label: 'Processors used for this index'
+    body: 'Processors customize different aspects of an index''s functionality. They can keep items from being indexed, change how certain fields are indexed and influence searches.'
     weight: 1
-    body: "Processors customize different aspects of an index's functionality. They can keep items from being indexed, change how certain fields are indexed and influence searches."
   search-api-index-processors-enable:
     id: search-api-index-processors-enable
     plugin: text
     label: 'Enable processors'
-    weight: 2
-    selector: '#edit-status'
     body: 'This lists all processors available for this index and lets you choose the ones that should be active. (Note: Some processors cannot be disabled.)'
+    weight: 2
+    attributes:
+      data-id: edit-status
   search-api-index-processors-weights:
     id: search-api-index-processors-weights
     plugin: text
     label: 'Processor order'
-    weight: 3
-    selector: '#edit-weights'
     body: 'This shows you which enabled processors will be active in the different parts of the indexing/searching workflow, and lets you re-arrange them. This should usually not be necessary, and only be used by advanced users as some processors will lead to unexpected results when used in the wrong order.'
+    weight: 3
+    attributes:
+      data-id: edit-weights
   search-api-index-processors-settings:
     id: search-api-index-processors-settings
     plugin: text
     label: 'Processor settings'
-    weight: 4
-    selector: .form-type-vertical-tabs
     body: 'Some processors have additional configuration available, which you are able to change here.'
+    weight: 4
+    attributes:
+      data-class: form-type-vertical-tabs
diff --git a/config/sync/tour.tour.search-api-index.yml b/config/sync/tour.tour.search-api-index.yml
index b345fcb..9c8055e 100644
--- a/config/sync/tour.tour.search-api-index.yml
+++ b/config/sync/tour.tour.search-api-index.yml
@@ -17,82 +17,93 @@ tips:
     id: search-api-index-introduction
     plugin: text
     label: 'Information about an index'
-    weight: 1
     body: 'This page shows a summary of a search index and its status.'
+    weight: 1
   search-api-index-index-status:
     id: search-api-index-index-status
     plugin: text
     label: 'Index status'
-    weight: 2
-    selector: .search-api-index-status
     body: 'This gives a summary about how many items are known for this index, and how many have been indexed in their latest version. Items that are not indexed yet cannot be found by searches.'
+    weight: 2
+    attributes:
+      data-class: search-api-index-status
   search-api-index-status:
     id: search-api-index-status
     plugin: text
     label: Status
-    weight: 3
-    selector: .search-api-index-summary--status
     body: 'Shows whether the index is currently enabled or disabled.'
+    weight: 3
+    attributes:
+      data-class: search-api-index-summary--status
   search-api-index-datasources:
     id: search-api-index-datasources
     plugin: text
     label: Datasources
-    weight: 4
-    selector: .search-api-index-summary--datasource
     body: 'Lists all datasources that are enabled for this index.'
+    weight: 4
+    attributes:
+      data-class: search-api-index-summary--datasource
   search-api-index-tracker:
     id: search-api-index-tracker
     plugin: text
     label: Tracker
-    weight: 5
-    selector: .search-api-index-summary--tracker
     body: 'The tracker used by the index. Only one ("Default") is available by default.'
+    weight: 5
+    attributes:
+      data-class: search-api-index-summary--tracker
   search-api-index-server:
     id: search-api-index-server
     plugin: text
     label: Server
-    weight: 6
-    selector: .search-api-index-summary--server
     body: 'If the index is attached to a server, this server is listed here.'
+    weight: 6
+    attributes:
+      data-class: search-api-index-summary--server
   search-api-index-server-index-status:
     id: search-api-index-server-index-status
     plugin: text
     label: 'Server index status'
-    weight: 7
-    selector: .search-api-index-summary--server-index-status
     body: 'For enabled indexes, the number of items that can actually be retrieved from the server is listed here. For reasons why this number might differ from the number under "Index status", <a href="https://www.drupal.org/docs/8/modules/search-api/getting-started/frequently-asked-questions#server-index-status">see the module''s documentation</a>.'
+    weight: 7
+    attributes:
+      data-class: search-api-index-summary--server-index-status
   search-api-index-cron-batch-size:
     id: search-api-index-cron-batch-size
     plugin: text
     label: 'Cron batch size'
-    weight: 8
-    selector: .search-api-index-summary--cron-batch-size
     body: 'The number of items that will be indexed at once during cron runs.'
+    weight: 8
+    attributes:
+      data-class: search-api-index-summary--cron-batch-size
   search-api-index-index-now:
     id: search-api-index-remove
     plugin: text
     label: 'Start indexing now'
-    weight: 9
-    selector: '#edit-index'
     body: 'The "Start indexing now" form allows indexing items manually right away, with a batch process. Otherwise, items are only indexed during cron runs. The form might be disabled if indexing is currently not possible for some reason, or not necessary.'
+    weight: 9
+    attributes:
+      data-id: edit-index
   search-api-index-tracking:
     id: search-api-index-tracking
     plugin: text
     label: 'Track items for index'
-    weight: 10
-    selector: '#edit-tracking'
     body: 'In certain situations, the index''s tracker doesn''t have the latest state of the items available for indexing. This will be automatically rectified during cron runs, but can also be manually triggered here, with the "Track now" button.'
+    weight: 10
+    attributes:
+      data-id: edit-tracking
   search-api-index-reindex:
     id: search-api-index-reindex
     plugin: text
     label: 'Queue all items for reindexing'
-    weight: 11
-    selector: '#edit-reindex'
     body: 'This will queue all items on this index for reindexing. Previously indexed data will remain on the search server, so searches on this index will continue to yield results.'
+    weight: 11
+    attributes:
+      data-id: edit-reindex
   search-api-index-clear:
     id: search-api-index-clear
     plugin: text
     label: 'Clear all indexed data'
-    weight: 12
-    selector: '#edit-clear'
     body: 'This will remove all indexed content for this index from the search server and queue it for reindexing. Searches on this index will not return any results until items are reindexed.'
+    weight: 12
+    attributes:
+      data-id: edit-clear
diff --git a/config/sync/tour.tour.search-api-server-form.yml b/config/sync/tour.tour.search-api-server-form.yml
index 4af6d6c..5fe8948 100644
--- a/config/sync/tour.tour.search-api-server-form.yml
+++ b/config/sync/tour.tour.search-api-server-form.yml
@@ -19,26 +19,29 @@ tips:
     id: search-api-server-form-introduction
     plugin: text
     label: 'Adding or editing a Server'
-    weight: 1
     body: 'This form can be used to edit an existing server or add a new server to your site. Servers will hold your indexed data.'
+    weight: 1
   search-api-server-form-name:
     id: search-api-server-form-name
     plugin: text
     label: 'Server name'
-    weight: 2
-    selector: '#edit-name'
     body: 'Enter a name to identify this server. For example, "Solr server". This will only be displayed in the admin user interface.'
+    weight: 2
+    attributes:
+      data-id: edit-name
   search-api-server-form-description:
     id: search-api-server-form-description
     plugin: text
     label: 'Server description'
-    weight: 3
-    selector: '#edit-description'
     body: 'Optionally, enter a description to explain the function of the server in more detail. This will only be displayed in the admin user interface.'
+    weight: 3
+    attributes:
+      data-id: edit-description
   search-api-server-form-backend:
     id: search-api-server-form-backend
     plugin: text
     label: 'Server backend'
-    weight: 4
-    selector: '#edit-backend'
     body: 'Servers can be based on different technologies. These are called "backends". A server uses exactly one backend and cannot change it later. You can make the "Database" backend available by enabling the "Database Search" module. Another very common backend is <a href="https://www.drupal.org/project/search_api_solr">"Solr"</a>, which requires to be set up separately.'
+    weight: 4
+    attributes:
+      data-id: edit-backend
diff --git a/config/sync/tour.tour.search-api-server.yml b/config/sync/tour.tour.search-api-server.yml
index 67df814..61a6809 100644
--- a/config/sync/tour.tour.search-api-server.yml
+++ b/config/sync/tour.tour.search-api-server.yml
@@ -17,33 +17,37 @@ tips:
     id: search-api-server-introduction
     plugin: text
     label: 'Information about a server'
-    weight: 1
     body: 'This page shows a summary of a search server.'
+    weight: 1
   search-api-server-status:
     id: search-api-server-status
     plugin: text
     label: Status
-    weight: 2
-    selector: .search-api-server-summary--status
     body: 'Shows whether the server is currently enabled or disabled.'
+    weight: 2
+    attributes:
+      data-class: search-api-server-summary--status
   search-api-server-backend:
     id: search-api-server-backend
     plugin: text
     label: 'Backend class'
-    weight: 3
-    selector: .search-api-server-summary--backend
     body: 'The backend plugin used for this server. The backend plugin determines how items are indexed and searched – for example, using the database or an Apache Solr server.'
+    weight: 3
+    attributes:
+      data-class: search-api-server-summary--backend
   search-api-server-indexes:
     id: search-api-server-indexes
     plugin: text
     label: 'Search indexes'
-    weight: 4
-    selector: .search-api-server-summary--indexes
     body: 'Lists all search indexes that are attached to this server.'
+    weight: 4
+    attributes:
+      data-class: search-api-server-summary--indexes
   search-api-server-clear:
     id: search-api-server-clear
     plugin: text
     label: 'Delete all indexed data'
+    body: 'This will permanently remove all data currently indexed on this server for indexes that aren''t read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results.'
     weight: 5
-    selector: '#edit-clear'
-    body: "This will permanently remove all data currently indexed on this server for indexes that aren't read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results."
+    attributes:
+      data-id: edit-clear
diff --git a/config/sync/tour.tour.views-ui.yml b/config/sync/tour.tour.views-ui.yml
index e94d800..33a192b 100644
--- a/config/sync/tour.tour.views-ui.yml
+++ b/config/sync/tour.tour.views-ui.yml
@@ -19,70 +19,79 @@ tips:
     id: views-main
     plugin: text
     label: 'Manage view settings'
-    weight: 1
     body: 'View or edit the configuration.'
+    weight: 1
   views-ui-displays:
     id: views-ui-displays
     plugin: text
     label: 'Displays in this view'
-    weight: 2
-    selector: '#views-display-top'
     body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.'
+    weight: 2
+    attributes:
+      data-id: views-display-top
   views-ui-view-admin:
     id: views-ui-view-admin
     plugin: text
     label: 'View administration'
-    weight: 3
-    position: left-start
-    selector: '#views-display-extra-actions'
     body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.'
+    weight: 3
+    location: left
+    attributes:
+      data-id: views-display-extra-actions
   views-ui-format:
     id: views-ui-format
     plugin: text
     label: 'Output format'
+    body: 'Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal''s base functionality.'
     weight: 4
-    selector: .views-ui-display-tab-bucket.format
-    body: "Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal's base functionality."
+    attributes:
+      data-class: views-ui-display-tab-bucket.format
   views-ui-fields:
     id: views-ui-fields
     plugin: text
     label: Fields
-    weight: 5
-    selector: .views-ui-display-tab-bucket.field
     body: 'If this view uses fields, they are listed here. You can click on a field to configure it.'
+    weight: 5
+    attributes:
+      data-class: views-ui-display-tab-bucket.field
   views-ui-filter:
     id: views-ui-filter
     plugin: text
     label: 'Filter your view'
-    weight: 6
-    selector: .views-ui-display-tab-bucket.filter
     body: 'Add filters to limit the results in the output. E.g., to only show content that is <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.'
+    weight: 6
+    attributes:
+      data-class: views-ui-display-tab-bucket.filter
   views-ui-filter-operations:
     id: views-ui-filter-operations
     plugin: text
     label: 'Filter actions'
-    weight: 7
-    selector: '.views-ui-display-tab-bucket.filter .dropbutton-widget'
     body: 'Add, rearrange or remove filters.'
+    weight: 7
+    attributes:
+      data-class: 'views-ui-display-tab-bucket.filter .dropbutton-widget'
   views-ui-sorts:
     id: views-ui-sorts
     plugin: text
     label: 'Sort Criteria'
-    weight: 8
-    selector: .views-ui-display-tab-bucket.sort
     body: 'Control the order in which the results are output. Click on an active sort rule to configure it.'
+    weight: 8
+    attributes:
+      data-class: views-ui-display-tab-bucket.sort
   views-ui-sorts-operations:
     id: views-ui-sorts-operations
     plugin: text
     label: 'Sort actions'
-    weight: 9
-    selector: '.views-ui-display-tab-bucket.sort .dropbutton-widget'
     body: 'Add, rearrange or remove sorting rules.'
+    weight: 9
+    attributes:
+      data-class: 'views-ui-display-tab-bucket.sort .dropbutton-widget'
   views-ui-preview:
     id: views-ui-preview
     plugin: text
     label: Preview
-    weight: 10
-    position: left-start
-    selector: '#preview-submit'
     body: 'Show a preview of the view output.'
+    weight: 10
+    location: left
+    attributes:
+      data-id: preview-submit
diff --git a/config/sync/update.settings.yml b/config/sync/update.settings.yml
index 944aa9a..aca754f 100644
--- a/config/sync/update.settings.yml
+++ b/config/sync/update.settings.yml
@@ -1,12 +1,13 @@
-_core:
-  default_config_hash: xbYr66-g0FjNgVBkGypCuN46vBI2XHntXN1URawq1s4
 check:
   disabled_extensions: false
   interval_days: 1
 fetch:
-  url: null
+  url: ''
   max_attempts: 2
   timeout: 30
 notification:
-  emails: {  }
+  emails:
+    - admin@example.com
   threshold: all
+_core:
+  default_config_hash: 2QzULf0zovJQx3J06Y9rufzzfi-CY2CTTlEfJJh2Qyw
diff --git a/config/sync/user.flood.yml b/config/sync/user.flood.yml
index 4eb3644..f165c95 100644
--- a/config/sync/user.flood.yml
+++ b/config/sync/user.flood.yml
@@ -1,7 +1,7 @@
-_core:
-  default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
 uid_only: false
 ip_limit: 50
 ip_window: 3600
 user_limit: 5
 user_window: 21600
+_core:
+  default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs
diff --git a/config/sync/user.mail.yml b/config/sync/user.mail.yml
index 224d083..25e2429 100644
--- a/config/sync/user.mail.yml
+++ b/config/sync/user.mail.yml
@@ -1,30 +1,30 @@
+cancel_confirm:
+  body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
+  subject: 'Account cancellation request for [user:display-name] at [site:name]'
+password_reset:
+  body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
+  subject: 'Replacement login information for [user:display-name] at [site:name]'
+register_admin_created:
+  body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'An administrator created an account for you at [site:name]'
+register_no_approval_required:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name]'
+register_pending_approval:
+  body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+register_pending_approval_admin:
+  body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
+  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+status_activated:
+  body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (approved)'
+status_blocked:
+  body: "[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (blocked)'
+status_canceled:
+  body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
+  subject: 'Account details for [user:display-name] at [site:name] (canceled)'
+langcode: en
 _core:
   default_config_hash: IWzNdUVX2YSiflxrGSTLIiqTrhgIzbV2C-hRL5DniJM
-langcode: en
-cancel_confirm:
-  subject: 'Account cancellation request for [user:display-name] at [site:name]'
-  body: "[user:display-name],\r\n\r\nA request to cancel your account has been made at [site:name].\r\n\r\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:cancel-url]\r\n\r\nNOTE: The cancellation of your account is not reversible.\r\n\r\nThis link expires in one day and nothing will happen if it is not used.\r\n\r\n--  [site:name] team"
-password_reset:
-  subject: 'Replacement login information for [user:display-name] at [site:name]'
-  body: "[user:display-name],\r\n\r\nA request to reset the password for your account has been made at [site:name].\r\n\r\nYou may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\r\n\r\n--  [site:name] team"
-register_admin_created:
-  subject: 'An administrator created an account for you at [site:name]'
-  body: "[user:display-name],\r\n\r\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team"
-register_no_approval_required:
-  subject: 'Account details for [user:display-name] at [site:name]'
-  body: "[user:display-name],\r\n\r\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team"
-register_pending_approval:
-  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
-  body: "[user:display-name],\r\n\r\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\r\n\r\n--  [site:name] team"
-register_pending_approval_admin:
-  subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
-  body: "[user:display-name] has applied for an account.\r\n\r\n[user:edit-url]"
-status_activated:
-  subject: 'Account details for [user:display-name] at [site:name] (approved)'
-  body: "[user:display-name],\r\n\r\nYour account at [site:name] has been activated.\r\n\r\nYou may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:account-name]\r\npassword: Your password\r\n\r\n--  [site:name] team"
-status_blocked:
-  subject: 'Account details for [user:display-name] at [site:name] (blocked)'
-  body: "[user:display-name],\r\n\r\nYour account on [site:name] has been blocked.\r\n\r\n--  [site:name] team"
-status_canceled:
-  subject: 'Account details for [user:display-name] at [site:name] (canceled)'
-  body: "[user:display-name],\r\n\r\nYour account on [site:name] has been canceled.\r\n\r\n--  [site:name] team"
diff --git a/config/sync/user.role.administrator.yml b/config/sync/user.role.administrator.yml
index a395ab4..5396765 100644
--- a/config/sync/user.role.administrator.yml
+++ b/config/sync/user.role.administrator.yml
@@ -8,4 +8,235 @@ id: administrator
 label: administrator
 weight: 0
 is_admin: true
-permissions: {  }
+permissions:
+  - 'access ad node'
+  - 'access ad statistics'
+  - 'access administration menu'
+  - 'access administration pages'
+  - 'access all panels'
+  - 'access all views'
+  - 'access backup and migrate'
+  - 'access backup files'
+  - 'access comments'
+  - 'access content'
+  - 'access content overview'
+  - 'access contextual links'
+  - 'access devel information'
+  - 'access forward'
+  - 'access library reports'
+  - 'access news feeds'
+  - 'access overlay'
+  - 'access print'
+  - 'access site in maintenance mode'
+  - 'access site reports'
+  - 'access site-wide contact form'
+  - 'access statistics'
+  - 'access taxonomy images'
+  - 'access textimages'
+  - 'access textsize content'
+  - 'access tinymce'
+  - 'access toolbar'
+  - 'access user profiles'
+  - admin_classes
+  - admin_fields
+  - admin_view_modes
+  - 'administer CAPTCHA settings'
+  - 'administer actions'
+  - 'administer addtoany'
+  - 'administer advanced pane settings'
+  - 'administer backup and migrate'
+  - 'administer blocks'
+  - 'administer boxes'
+  - 'administer comments'
+  - 'administer contact forms'
+  - 'administer content types'
+  - 'administer custom content'
+  - 'administer disqus'
+  - 'administer features'
+  - 'administer fields'
+  - 'administer filters'
+  - 'administer flags'
+  - 'administer forums'
+  - 'administer forward'
+  - 'administer google analytics'
+  - 'administer image styles'
+  - 'administer languages'
+  - 'administer masquerade'
+  - 'administer menu'
+  - 'administer module missing message fixer'
+  - 'administer modules'
+  - 'administer news feeds'
+  - 'administer nodes'
+  - 'administer nodeteaser'
+  - 'administer page manager'
+  - 'administer pane access'
+  - 'administer panels display styles'
+  - 'administer panels layouts'
+  - 'administer panels pane styles'
+  - 'administer panels region styles'
+  - 'administer panels styles'
+  - 'administer pathauto'
+  - 'administer permissions'
+  - 'administer print'
+  - 'administer scheduler'
+  - 'administer search'
+  - 'administer site configuration'
+  - 'administer software updates'
+  - 'administer statistics'
+  - 'administer string overrides'
+  - 'administer taxonomy'
+  - 'administer taxonomy images'
+  - 'administer taxonomy_list'
+  - 'administer textsize'
+  - 'administer theme assignments'
+  - 'administer themekey settings'
+  - 'administer themes'
+  - 'administer tinymce'
+  - 'administer url aliases'
+  - 'administer users'
+  - 'administer views'
+  - 'administer weblinks'
+  - 'assign node themes'
+  - 'assign path alias themes'
+  - 'assign theme to own nodes'
+  - 'block IP addresses'
+  - 'bypass node access'
+  - 'can disable taxonomy images'
+  - 'change own username'
+  - 'count ad clicks'
+  - 'count ad impressions'
+  - 'create blog content'
+  - 'create blog entries'
+  - 'create content_document content'
+  - 'create content_event content'
+  - 'create forum content'
+  - 'create forum content'
+  - 'create link content'
+  - 'create page content'
+  - 'create pages'
+  - 'create panels'
+  - 'create stories'
+  - 'create story content'
+  - 'create url aliases'
+  - 'create weblinks'
+  - 'delete any blog content'
+  - 'delete any content_document content'
+  - 'delete any content_event content'
+  - 'delete any forum content'
+  - 'delete any link content'
+  - 'delete any page content'
+  - 'delete any story content'
+  - 'delete backup files'
+  - 'delete own blog content'
+  - 'delete own content_document content'
+  - 'delete own content_event content'
+  - 'delete own forum content'
+  - 'delete own link content'
+  - 'delete own page content'
+  - 'delete own story content'
+  - 'delete revisions'
+  - 'delete terms in 1'
+  - 'delete terms in 10'
+  - 'delete terms in 12'
+  - 'delete terms in 13'
+  - 'delete terms in 14'
+  - 'delete terms in 15'
+  - 'delete terms in 16'
+  - 'delete terms in 17'
+  - 'delete terms in 2'
+  - 'delete terms in 3'
+  - 'delete terms in 4'
+  - 'delete terms in 5'
+  - 'delete terms in 6'
+  - 'delete terms in 7'
+  - 'delete terms in 8'
+  - 'display disqus comments on profile'
+  - 'display drupal links'
+  - 'edit any blog content'
+  - 'edit any content_document content'
+  - 'edit any content_event content'
+  - 'edit any forum content'
+  - 'edit any link content'
+  - 'edit any page content'
+  - 'edit any story content'
+  - 'edit boxes'
+  - 'edit group categories'
+  - 'edit group weblinks'
+  - 'edit own blog content'
+  - 'edit own blog content'
+  - 'edit own comments'
+  - 'edit own content_document content'
+  - 'edit own content_event content'
+  - 'edit own forum content'
+  - 'edit own link content'
+  - 'edit own page content'
+  - 'edit own pages'
+  - 'edit own stories'
+  - 'edit own story content'
+  - 'edit own weblinks'
+  - 'edit terms in 1'
+  - 'edit terms in 10'
+  - 'edit terms in 12'
+  - 'edit terms in 13'
+  - 'edit terms in 14'
+  - 'edit terms in 15'
+  - 'edit terms in 16'
+  - 'edit terms in 17'
+  - 'edit terms in 2'
+  - 'edit terms in 3'
+  - 'edit terms in 4'
+  - 'edit terms in 5'
+  - 'edit terms in 6'
+  - 'edit terms in 7'
+  - 'edit terms in 8'
+  - 'flag featured_theme'
+  - 'flag slider'
+  - 'flush caches'
+  - 'manage features'
+  - 'masquerade as admin'
+  - 'masquerade as any user'
+  - 'masquerade as user'
+  - 'node-specific print configuration'
+  - 'order nodes within categories'
+  - 'override email address'
+  - 'override flood control'
+  - 'perform backup'
+  - 'post comments'
+  - 'restore from backup'
+  - 'revert revisions'
+  - 'schedule publishing of nodes'
+  - 'search Google CSE'
+  - 'search content'
+  - 'select different theme'
+  - 'show format selection for comment'
+  - 'show format selection for file'
+  - 'show format selection for node'
+  - 'show format selection for taxonomy_term'
+  - 'show format selection for user'
+  - 'show format tips'
+  - 'show more format tips link'
+  - 'skip CAPTCHA'
+  - 'skip comment approval'
+  - 'switch users'
+  - 'toggle disqus comments'
+  - 'translate interface'
+  - 'unflag featured_theme'
+  - 'unflag slider'
+  - 'upload files'
+  - 'use PHP for title patterns'
+  - 'use advanced search'
+  - 'use exclude node title'
+  - 'use page manager'
+  - 'use panels caching features'
+  - 'use panels dashboard'
+  - 'use panels locks'
+  - 'use text format 1'
+  - 'use text format 3'
+  - 'view disqus comments'
+  - 'view files'
+  - 'view pane admin links'
+  - 'view post access counter'
+  - 'view revisions'
+  - 'view scheduled content'
+  - 'view the administration theme'
+  - 'view uploaded files'
diff --git a/config/sync/user.role.anonymous.yml b/config/sync/user.role.anonymous.yml
index 3cf2561..42d8eb7 100644
--- a/config/sync/user.role.anonymous.yml
+++ b/config/sync/user.role.anonymous.yml
@@ -1,15 +1,7 @@
 uuid: 6151d556-5104-4936-a96b-5ec733c798da
 langcode: en
 status: true
-dependencies:
-  module:
-    - comment
-    - contact
-    - empty_page
-    - exclude_node_title
-    - media
-    - statistics
-    - system
+dependencies: {  }
 _core:
   default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow
 id: anonymous
@@ -19,9 +11,22 @@ is_admin: false
 permissions:
   - 'access comments'
   - 'access content'
+  - 'access forward'
+  - 'access news feeds'
   - 'access site-wide contact form'
+  - 'access textimages'
+  - 'access textsize content'
+  - 'administer textsize'
+  - 'count ad clicks'
+  - 'count ad impressions'
+  - 'diff view changes'
   - 'post comments'
+  - 'search Google CSE'
+  - 'search content'
+  - 'skip comment approval'
   - 'use exclude node title'
-  - 'view empty pages'
-  - 'view media'
+  - 'use text format 1'
+  - 'use text format 3'
+  - 'view disqus comments'
+  - 'view files'
   - 'view post access counter'
diff --git a/config/sync/user.role.authenticated.yml b/config/sync/user.role.authenticated.yml
index 148f812..a11247f 100644
--- a/config/sync/user.role.authenticated.yml
+++ b/config/sync/user.role.authenticated.yml
@@ -1,21 +1,7 @@
 uuid: f3a87a2a-96b2-4e23-a6c0-14bcdcad2d75
 langcode: en
 status: true
-dependencies:
-  module:
-    - captcha
-    - comment
-    - comment_notify
-    - contact
-    - empty_page
-    - exclude_node_title
-    - file
-    - google_analytics
-    - media
-    - node
-    - statistics
-    - system
-    - visitors
+dependencies: {  }
 _core:
   default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI
 id: authenticated
@@ -25,18 +11,29 @@ is_admin: false
 permissions:
   - 'access comments'
   - 'access content'
+  - 'access forward'
+  - 'access news feeds'
   - 'access site-wide contact form'
+  - 'access textimages'
+  - 'access textsize content'
+  - 'access tinymce'
   - 'access user contact forms'
+  - 'administer textsize'
   - 'change own username'
-  - 'delete own files'
-  - 'opt-in or out of google analytics tracking'
+  - 'create blog entries'
+  - 'create forum content'
+  - 'create weblinks'
+  - 'diff view changes'
+  - 'edit own blog content'
+  - 'edit own forum content'
+  - 'edit own weblinks'
   - 'post comments'
-  - 'skip CAPTCHA'
+  - 'search content'
   - 'skip comment approval'
-  - 'subscribe to comments'
   - 'use exclude node title'
-  - 'view empty pages'
-  - 'view media'
+  - 'use text format 1'
+  - 'use text format 3'
+  - 'view disqus comments'
+  - 'view files'
   - 'view own unpublished content'
   - 'view post access counter'
-  - 'view visitors counter'
diff --git a/config/sync/user.role.content_administrator.yml b/config/sync/user.role.content_administrator.yml
new file mode 100644
index 0000000..8bf8b3d
--- /dev/null
+++ b/config/sync/user.role.content_administrator.yml
@@ -0,0 +1,149 @@
+uuid: cf805bab-ba69-46a8-afc2-08cb4c62b0b7
+langcode: en
+status: true
+dependencies: {  }
+id: content_administrator
+label: 'content administrator'
+weight: 0
+is_admin: null
+permissions:
+  - 'access administration menu'
+  - 'access administration pages'
+  - 'access all panels'
+  - 'access comments'
+  - 'access content'
+  - 'access content overview'
+  - 'access contextual links'
+  - 'access forward'
+  - 'access library reports'
+  - 'access news feeds'
+  - 'access overlay'
+  - 'access print'
+  - 'access site in maintenance mode'
+  - 'access site reports'
+  - 'access site-wide contact form'
+  - 'access statistics'
+  - 'access textimages'
+  - 'access tinymce'
+  - 'access toolbar'
+  - 'administer blocks'
+  - 'administer boxes'
+  - 'administer comments'
+  - 'administer custom content'
+  - 'administer disqus'
+  - 'administer forums'
+  - 'administer menu'
+  - 'administer nodes'
+  - 'administer pathauto'
+  - 'administer statistics'
+  - 'administer taxonomy'
+  - 'administer url aliases'
+  - 'bypass node access'
+  - 'change own username'
+  - 'create blog content'
+  - 'create blog entries'
+  - 'create content_document content'
+  - 'create content_event content'
+  - 'create forum content'
+  - 'create forum content'
+  - 'create link content'
+  - 'create page content'
+  - 'create pages'
+  - 'create stories'
+  - 'create story content'
+  - 'create url aliases'
+  - 'create weblinks'
+  - 'delete any blog content'
+  - 'delete any content_document content'
+  - 'delete any content_event content'
+  - 'delete any forum content'
+  - 'delete any link content'
+  - 'delete any page content'
+  - 'delete any story content'
+  - 'delete own blog content'
+  - 'delete own content_document content'
+  - 'delete own content_event content'
+  - 'delete own forum content'
+  - 'delete own link content'
+  - 'delete own page content'
+  - 'delete own story content'
+  - 'delete revisions'
+  - 'delete terms in 1'
+  - 'delete terms in 10'
+  - 'delete terms in 12'
+  - 'delete terms in 13'
+  - 'delete terms in 14'
+  - 'delete terms in 15'
+  - 'delete terms in 16'
+  - 'delete terms in 17'
+  - 'delete terms in 2'
+  - 'delete terms in 3'
+  - 'delete terms in 4'
+  - 'delete terms in 5'
+  - 'delete terms in 6'
+  - 'delete terms in 7'
+  - 'delete terms in 8'
+  - 'edit any blog content'
+  - 'edit any content_document content'
+  - 'edit any content_event content'
+  - 'edit any forum content'
+  - 'edit any link content'
+  - 'edit any page content'
+  - 'edit any story content'
+  - 'edit boxes'
+  - 'edit own blog content'
+  - 'edit own blog content'
+  - 'edit own comments'
+  - 'edit own content_document content'
+  - 'edit own content_event content'
+  - 'edit own forum content'
+  - 'edit own link content'
+  - 'edit own page content'
+  - 'edit own pages'
+  - 'edit own stories'
+  - 'edit own story content'
+  - 'edit own weblinks'
+  - 'edit terms in 1'
+  - 'edit terms in 10'
+  - 'edit terms in 12'
+  - 'edit terms in 13'
+  - 'edit terms in 14'
+  - 'edit terms in 15'
+  - 'edit terms in 16'
+  - 'edit terms in 17'
+  - 'edit terms in 2'
+  - 'edit terms in 3'
+  - 'edit terms in 4'
+  - 'edit terms in 5'
+  - 'edit terms in 6'
+  - 'edit terms in 7'
+  - 'edit terms in 8'
+  - 'flag featured_theme'
+  - 'flag slider'
+  - 'node-specific print configuration'
+  - 'post comments'
+  - 'revert revisions'
+  - 'schedule publishing of nodes'
+  - 'search content'
+  - 'select different theme'
+  - 'show format selection for comment'
+  - 'show format selection for file'
+  - 'show format selection for node'
+  - 'show format selection for taxonomy_term'
+  - 'show format selection for user'
+  - 'show format tips'
+  - 'show more format tips link'
+  - 'skip CAPTCHA'
+  - 'skip comment approval'
+  - 'toggle disqus comments'
+  - 'translate interface'
+  - 'unflag featured_theme'
+  - 'unflag slider'
+  - 'upload files'
+  - 'use advanced search'
+  - 'use text format 3'
+  - 'view files'
+  - 'view revisions'
+  - 'view scheduled content'
+  - 'view the administration theme'
+  - 'view uploaded files'
diff --git a/config/sync/user.role.contributor.yml b/config/sync/user.role.contributor.yml
index 6df5c96..4fcdbce 100644
--- a/config/sync/user.role.contributor.yml
+++ b/config/sync/user.role.contributor.yml
@@ -1,28 +1,7 @@
 uuid: 8eec17b8-68c1-4482-a3ef-a38f65e4bfb8
 langcode: en
 status: true
-dependencies:
-  config:
-    - filter.format.footnote
-    - filter.format.full_html
-    - media.type.image
-    - node.type.article
-    - node.type.blog
-    - node.type.page
-    - node.type.people
-    - taxonomy.vocabulary.tags
-  module:
-    - comment
-    - contextual
-    - file
-    - filter
-    - media
-    - node
-    - shortcut
-    - system
-    - taxonomy
-    - toolbar
-    - visitors
+dependencies: {  }
 _core:
   default_config_hash: wx_SmNDtHorXJ90rDiwqo6EvHgyvz6_SZFsFO77cdvY
 id: contributor
@@ -30,15 +9,16 @@ label: Contributor
 weight: 2
 is_admin: null
 permissions:
-  - 'access content overview'
   - 'access contextual links'
-  - 'access shortcuts'
-  - 'access toolbar'
+  - 'access in-place editing'
   - 'create article content'
   - 'create blog content'
-  - 'create image media'
+  - 'create page content'
   - 'create people content'
-  - 'delete own files'
+  - 'delete own article content'
+  - 'delete own blog content'
+  - 'delete own page content'
+  - 'delete own people content'
   - 'edit own article content'
   - 'edit own blog content'
   - 'edit own comments'
@@ -46,8 +26,5 @@ permissions:
   - 'edit own people content'
   - 'edit terms in tags'
   - 'skip comment approval'
-  - 'update media'
-  - 'use text format footnote'
-  - 'use text format full_html'
+  - 'use exclude node title'
   - 'view the administration theme'
-  - 'view visitors counter'
diff --git a/config/sync/user.role.editor.yml b/config/sync/user.role.editor.yml
index 2dd91e5..721b46e 100644
--- a/config/sync/user.role.editor.yml
+++ b/config/sync/user.role.editor.yml
@@ -1,26 +1,7 @@
 uuid: 9ced4a01-a383-4fc6-ba7c-476b8849bac5
 langcode: en
 status: true
-dependencies:
-  config:
-    - filter.format.footnote
-    - filter.format.full_html
-  module:
-    - comment
-    - contextual
-    - file
-    - filter
-    - help
-    - node
-    - path
-    - redirect
-    - role_delegation
-    - shortcut
-    - system
-    - taxonomy
-    - toolbar
-    - tour
-    - visitors
+dependencies: {  }
 _core:
   default_config_hash: rlOWgxSj7Nc4dVgLS2xaxjHVZNv9u9Csoy8JavNvygc
 id: editor
@@ -32,8 +13,7 @@ permissions:
   - 'access content overview'
   - 'access contextual links'
   - 'access files overview'
-  - 'access help pages'
-  - 'access shortcuts'
+  - 'access in-place editing'
   - 'access site in maintenance mode'
   - 'access toolbar'
   - 'access tour'
@@ -43,19 +23,15 @@ permissions:
   - 'administer redirects'
   - 'administer taxonomy'
   - 'administer users'
-  - 'assign contributor role'
-  - 'assign invited_blogger role'
   - 'bypass node access'
   - 'bypass node access'
   - 'create url aliases'
   - 'create url aliases'
   - 'delete all revisions'
-  - 'delete own files'
   - 'revert all revisions'
   - 'skip comment approval'
-  - 'use text format footnote'
-  - 'use text format full_html'
+  - 'use exclude node title'
+  - 'use text format restricted_html'
   - 'view all revisions'
   - 'view own unpublished content'
   - 'view the administration theme'
-  - 'view visitors counter'
diff --git a/config/sync/user.role.invited_blogger.yml b/config/sync/user.role.invited_blogger.yml
index b3f73b4..09de64e 100644
--- a/config/sync/user.role.invited_blogger.yml
+++ b/config/sync/user.role.invited_blogger.yml
@@ -1,23 +1,9 @@
 uuid: 71e86e82-b27c-4562-a51d-1241958e68b7
 langcode: en
 status: true
-dependencies:
-  config:
-    - filter.format.footnote
-    - filter.format.full_html
-    - node.type.blog
-  module:
-    - comment
-    - contact
-    - contextual
-    - file
-    - filter
-    - help
-    - node
-    - system
-    - toolbar
+dependencies: {  }
 id: invited_blogger
-label: 'Invited blogger'
+label: 'invited blogger'
 weight: 0
 is_admin: null
 permissions:
@@ -25,19 +11,37 @@ permissions:
   - 'access comments'
   - 'access content'
   - 'access contextual links'
-  - 'access help pages'
+  - 'access forward'
+  - 'access news feeds'
   - 'access site-wide contact form'
-  - 'access toolbar'
+  - 'access textimages'
+  - 'access tinymce'
   - 'change own username'
   - 'create blog content'
+  - 'create blog entries'
+  - 'create content_event content'
+  - 'create forum content'
+  - 'create weblinks'
   - 'delete own blog content'
-  - 'delete own files'
+  - 'delete own content_event content'
   - 'edit own blog content'
   - 'edit own blog content'
   - 'edit own comments'
+  - 'edit own content_event content'
+  - 'edit own forum content'
+  - 'edit own weblinks'
   - 'post comments'
+  - 'search content'
+  - 'show format selection for node'
+  - 'show format tips'
+  - 'show more format tips link'
   - 'skip comment approval'
-  - 'use text format footnote'
-  - 'use text format full_html'
+  - 'toggle disqus comments'
+  - 'translate interface'
+  - 'upload files'
+  - 'use exclude node title'
+  - 'use text format 3'
+  - 'view files'
   - 'view own unpublished content'
   - 'view the administration theme'
+  - 'view uploaded files'
diff --git a/config/sync/user.role.manager.yml b/config/sync/user.role.manager.yml
index da56712..6dd35a9 100644
--- a/config/sync/user.role.manager.yml
+++ b/config/sync/user.role.manager.yml
@@ -1,35 +1,7 @@
 uuid: 492d8ce6-09e1-4a7a-8637-45da1825e180
 langcode: en
 status: true
-dependencies:
-  config:
-    - filter.format.footnote
-    - filter.format.full_html
-  module:
-    - block
-    - block_content
-    - captcha
-    - checklistapi
-    - comment
-    - comment_notify
-    - config_perms
-    - contact
-    - contextual
-    - file
-    - filter
-    - google_analytics
-    - help
-    - metatag
-    - node
-    - path
-    - redirect
-    - role_delegation
-    - shortcut
-    - system
-    - taxonomy
-    - toolbar
-    - tour
-    - visitors
+dependencies: {  }
 _core:
   default_config_hash: p1SmYFXVP1KLKKQI-wkTYJ2dVCvR7HgO7SL3BAKTyTE
 id: manager
@@ -42,27 +14,18 @@ permissions:
   - 'Administer site information'
   - 'Edit contact form'
   - 'access administration pages'
-  - 'access block library'
   - 'access content overview'
   - 'access contextual links'
   - 'access files overview'
-  - 'access help pages'
-  - 'access shortcuts'
+  - 'access in-place editing'
   - 'access site in maintenance mode'
-  - 'access site reports'
   - 'access toolbar'
   - 'access tour'
   - 'access user contact forms'
   - 'access user profiles'
-  - 'access visitors'
-  - 'administer CAPTCHA settings'
-  - 'administer block content'
-  - 'administer block types'
   - 'administer blocks'
-  - 'administer comment notify'
   - 'administer comments'
-  - 'administer google analytics'
-  - 'administer menu'
+  - 'administer eu cookie compliance popup'
   - 'administer meta tags'
   - 'administer nodes'
   - 'administer redirect settings'
@@ -70,22 +33,16 @@ permissions:
   - 'administer taxonomy'
   - 'administer url aliases'
   - 'administer users'
-  - 'assign contributor role'
-  - 'assign editor role'
-  - 'assign invited_blogger role'
-  - 'assign manager role'
   - 'bypass node access'
   - 'bypass node access'
   - 'create url aliases'
   - 'create url aliases'
   - 'delete all revisions'
-  - 'delete own files'
   - 'edit gdpr_checklist checklistapi checklist'
   - 'revert all revisions'
   - 'skip comment approval'
-  - 'use text format footnote'
-  - 'use text format full_html'
+  - 'use exclude node title'
+  - 'use text format restricted_html'
   - 'view all revisions'
   - 'view own unpublished content'
   - 'view the administration theme'
-  - 'view visitors counter'
diff --git a/config/sync/user.role.proofreader.yml b/config/sync/user.role.proofreader.yml
new file mode 100644
index 0000000..5e3989a
--- /dev/null
+++ b/config/sync/user.role.proofreader.yml
@@ -0,0 +1,44 @@
+uuid: b9fb30e7-e260-4654-b97b-d9960f618e53
+langcode: en
+status: true
+dependencies: {  }
+id: proofreader
+label: proofreader
+weight: 0
+is_admin: null
+permissions:
+  - 'access administration pages'
+  - 'access content overview'
+  - 'access contextual links'
+  - 'access overlay'
+  - 'access site-wide contact form'
+  - 'access toolbar'
+  - 'administer menu'
+  - 'administer nodes'
+  - 'administer statistics'
+  - 'bypass node access'
+  - 'edit any blog content'
+  - 'edit any content_document content'
+  - 'edit any content_event content'
+  - 'edit any issue_index content'
+  - 'edit any link content'
+  - 'edit any page content'
+  - 'edit any story content'
+  - 'edit own comments'
+  - 'revert revisions'
+  - 'show format selection for comment'
+  - 'show format selection for file'
+  - 'show format selection for node'
+  - 'show format selection for taxonomy_term'
+  - 'show format selection for user'
+  - 'show format tips'
+  - 'show more format tips link'
+  - 'skip CAPTCHA'
+  - 'toggle disqus comments'
+  - 'translate interface'
+  - 'use advanced search'
+  - 'use exclude node title'
+  - 'use text format 3'
+  - 'view files'
+  - 'view revisions'
+  - 'view the administration theme'
diff --git a/config/sync/user.settings.yml b/config/sync/user.settings.yml
index 81bdfff..7627c6b 100644
--- a/config/sync/user.settings.yml
+++ b/config/sync/user.settings.yml
@@ -1,6 +1,3 @@
-_core:
-  default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk
-langcode: en
 anonymous: Anonymous
 verify_mail: true
 notify:
@@ -12,7 +9,10 @@ notify:
   register_admin_created: true
   register_no_approval_required: true
   register_pending_approval: true
-register: admin_only
+register: visitors_admin_approval
 cancel_method: user_cancel_block
 password_reset_timeout: 86400
 password_strength: true
+langcode: en
+_core:
+  default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk
diff --git a/config/sync/views.settings.yml b/config/sync/views.settings.yml
index aaba173..fbda2e6 100644
--- a/config/sync/views.settings.yml
+++ b/config/sync/views.settings.yml
@@ -1,12 +1,11 @@
-_core:
-  default_config_hash: RaRd9EIcwA4u3qCSRLL8EnCicbda1kV__ASmVbyehvQ
 display_extenders: {  }
+skip_cache: false
 sql_signature: false
 ui:
   show:
     additional_queries: false
     advanced_column: false
-    default_display: false
+    master_display: false
     performance_statistics: false
     preview_information: true
     sql_query:
@@ -45,3 +44,5 @@ field_rewrite_elements:
   ins: INS
   q: Q
   s: S
+_core:
+  default_config_hash: RaRd9EIcwA4u3qCSRLL8EnCicbda1kV__ASmVbyehvQ
diff --git a/config/sync/views.view.archive.yml b/config/sync/views.view.archive.yml
index 71cf187..e34ff3a 100644
--- a/config/sync/views.view.archive.yml
+++ b/config/sync/views.view.archive.yml
@@ -16,34 +16,30 @@ description: 'All content, by month.'
 tag: default
 base_table: node_field_data
 base_field: nid
+core: '8'
 display:
   default:
     id: default
-    display_title: Default
+    display_title: Master
     display_plugin: default
     position: 0
     display_options:
-      title: 'Monthly archive'
-      fields: {  }
-      pager:
-        type: mini
+      query:
+        type: views_query
         options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: 0
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
+          query_comment: ''
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_tags: {  }
+      title: 'Monthly archive'
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
       exposed_form:
         type: basic
         options:
@@ -54,65 +50,72 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: mini
         options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
       sorts:
         created:
           id: created
           table: node_field_data
           field: created
+          order: DESC
+          plugin_id: date
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: created
-          plugin_id: date
-          order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
           granularity: second
+          entity_type: node
+          entity_field: created
       arguments:
         created_year_month:
           id: created_year_month
           table: node_field_data
           field: created_year_month
-          entity_type: node
-          plugin_id: date_year_month
           default_action: summary
           exception:
             title_enable: true
           title_enable: true
           title: '{{ arguments.created_year_month }}'
           default_argument_type: fixed
-          summary_options:
-            override: true
-            items_per_page: 30
           summary:
             sort_order: desc
             format: default_summary
+          summary_options:
+            override: true
+            items_per_page: 30
           specify_validation: true
+          plugin_id: date_year_month
+          entity_type: node
       filters:
         status:
           id: status
           table: node_field_data
           field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
           value: '1'
           group: 0
           expose:
             operator: '0'
-            operator_limit_selection: false
-            operator_list: {  }
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
         langcode:
           id: langcode
           table: node_field_data
@@ -120,9 +123,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
           operator: in
           value:
             '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -134,8 +134,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -155,6 +153,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
       style:
         type: default
         options:
@@ -166,26 +167,20 @@ display:
         type: 'entity:node'
         options:
           view_mode: teaser
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      fields: {  }
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   block_1:
     id: block_1
@@ -193,38 +188,38 @@ display:
     display_plugin: block
     position: 1
     display_options:
+      query:
+        type: views_query
+        options: {  }
+      defaults:
+        arguments: false
       arguments:
         created_year_month:
           id: created_year_month
           table: node_field_data
           field: created_year_month
-          entity_type: node
-          plugin_id: date_year_month
           default_action: summary
           exception:
             title_enable: true
           title_enable: true
           title: '{{ arguments.created_year_month }}'
           default_argument_type: fixed
-          summary_options:
-            items_per_page: 30
           summary:
             format: default_summary
+          summary_options:
+            items_per_page: 30
           specify_validation: true
-      query:
-        type: views_query
-        options: {  }
-      defaults:
-        arguments: false
+          plugin_id: date_year_month
+          entity_type: node
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   page_1:
     id: page_1
@@ -235,14 +230,14 @@ display:
       query:
         type: views_query
         options: {  }
-      display_extenders: {  }
       path: archive
+      display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/views.view.article.yml b/config/sync/views.view.article.yml
index d6e6802..a46e3ab 100644
--- a/config/sync/views.view.article.yml
+++ b/config/sync/views.view.article.yml
@@ -17,25 +17,77 @@ description: 'Various displays for the article content type.'
 tag: ''
 base_table: search_api_index_article
 base_field: search_api_id
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
-      title: Articles
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: none
+        options: {  }
+      query:
+        type: views_query
+        options:
+          bypass_access: false
+          skip_access: false
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 12
+          offset: 0
+          id: 0
+          total_pages: null
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      style:
+        type: default
+        options:
+          row_class: ''
+          default_row_class: false
+          uses_fields: false
+      row:
+        type: search_api
+        options:
+          view_modes:
+            'entity:node':
+              article: card
       fields:
         rendered_item:
-          id: rendered_item
           table: search_api_index_article
           field: rendered_item
-          relationship: none
-          group_type: group
-          admin_label: ''
+          id: rendered_item
           entity_type: null
           entity_field: null
           plugin_id: search_api
+          relationship: none
+          group_type: group
+          admin_label: ''
           label: ''
           exclude: false
           alter:
@@ -81,47 +133,20 @@ display:
           use_highlighting: false
           multi_type: separator
           multi_separator: ', '
-      pager:
-        type: full
-        options:
-          offset: 0
-          items_per_page: 24
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 10
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: search_api_none
-        options: {  }
-      empty: {  }
+      filters: {  }
       sorts:
+        sticky:
+          id: sticky
+          table: search_api_index_article
+          field: sticky
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: search_api
         created:
           id: created
           table: search_api_index_article
@@ -129,34 +154,17 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: search_api
           order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
-      arguments: {  }
-      filters: {  }
-      style:
-        type: default
-        options:
-          row_class: ''
-          default_row_class: false
-          uses_fields: false
-      row:
-        type: search_api
-        options:
-          view_modes:
-            'entity:node':
-              article: card
-      query:
-        type: search_api_query
-        options:
-          bypass_access: false
-          skip_access: false
-      relationships: {  }
+          plugin_id: search_api
+      title: Articles
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
     cache_metadata:
       max-age: -1
@@ -166,29 +174,29 @@ display:
         - user.permissions
       tags: {  }
   block_promoted:
+    display_plugin: block
     id: block_promoted
     display_title: 'Block Promoted'
-    display_plugin: block
     position: 2
     display_options:
+      display_extenders: {  }
       title: Latest
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 4
       defaults:
         title: false
+        style: true
+        row: true
         pager: false
         link_display: false
         link_url: false
-        style: true
-        row: true
+      pager:
+        type: some
+        options:
+          items_per_page: 4
+          offset: 0
       display_description: ''
+      block_description: 'Promoted articles'
       link_display: page_1
       link_url: ''
-      display_extenders: {  }
-      block_description: 'Promoted articles'
       block_hide_empty: true
     cache_metadata:
       max-age: -1
@@ -197,9 +205,9 @@ display:
         - user.permissions
       tags: {  }
   page_listing:
+    display_plugin: page
     id: page_listing
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
       display_extenders: {  }
@@ -208,12 +216,11 @@ display:
         type: normal
         title: News
         description: 'Keep up to date.'
-        weight: -48
-        enabled: false
         expanded: false
-        menu_name: main
         parent: 'menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd'
+        weight: 0
         context: '0'
+        menu_name: main
     cache_metadata:
       max-age: -1
       contexts:
diff --git a/config/sync/views.view.block_content.yml b/config/sync/views.view.block_content.yml
index 9b88870..98d605e 100644
--- a/config/sync/views.view.block_content.yml
+++ b/config/sync/views.view.block_content.yml
@@ -8,20 +8,112 @@ dependencies:
 _core:
   default_config_hash: BmeDSOTSaTVy5QLgxgJ5ye_ZseG5t88JXRP1apFoBkk
 id: block_content
-label: 'Content blocks'
+label: 'Custom block library'
 module: views
-description: 'Find and manage content blocks.'
+description: 'Find and manage custom blocks.'
 tag: default
 base_table: block_content_field_data
 base_field: id
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: 'Content blocks'
+      access:
+        type: perm
+        options:
+          perm: 'administer blocks'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: null
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            info: info
+            type: type
+            changed: changed
+            operations: operations
+          info:
+            info:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            operations:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: changed
+          empty_table: true
+      row:
+        type: fields
       fields:
         info:
           id: info
@@ -30,9 +122,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: null
-          entity_field: info
-          plugin_id: field
           label: 'Block description'
           exclude: false
           alter:
@@ -88,6 +177,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: null
+          entity_field: info
+          plugin_id: field
         type:
           id: type
           table: block_content_field_data
@@ -95,9 +187,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: block_content
-          entity_field: type
-          plugin_id: field
           label: 'Block type'
           exclude: false
           alter:
@@ -153,6 +242,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: block_content
+          entity_field: type
+          plugin_id: field
         changed:
           id: changed
           table: block_content_field_data
@@ -160,9 +252,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: block_content
-          entity_field: changed
-          plugin_id: field
           label: Updated
           exclude: false
           alter:
@@ -204,20 +293,14 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          entity_type: block_content
+          entity_field: changed
           type: timestamp
           settings:
             date_format: short
             custom_date_format: ''
             timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
+          plugin_id: field
         operations:
           id: operations
           table: block_content
@@ -225,8 +308,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: block_content
-          plugin_id: entity_operations
           label: Operations
           exclude: false
           alter:
@@ -269,67 +350,8 @@ display:
           empty_zero: false
           hide_alter_empty: true
           destination: true
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: null
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: true
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access block library'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'There are no content blocks available.'
-          tokenize: false
-        block_content_listing_empty:
-          id: block_content_listing_empty
-          table: block_content
-          field: block_content_listing_empty
-          relationship: none
-          group_type: group
-          admin_label: ''
           entity_type: block_content
-          plugin_id: block_content_listing_empty
-          label: ''
-          empty: true
-      sorts: {  }
-      arguments: {  }
+          plugin_id: entity_operations
       filters:
         info:
           id: info
@@ -338,9 +360,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: block_content
-          entity_field: info
-          plugin_id: string
           operator: contains
           value: ''
           group: 1
@@ -351,8 +370,6 @@ display:
             description: ''
             use_operator: false
             operator: info_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: info
             required: false
             remember: false
@@ -373,6 +390,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: block_content
+          entity_field: info
+          plugin_id: string
         type:
           id: type
           table: block_content_field_data
@@ -380,9 +400,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: block_content
-          entity_field: type
-          plugin_id: bundle
           operator: in
           value: {  }
           group: 1
@@ -393,8 +410,6 @@ display:
             description: ''
             use_operator: false
             operator: type_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: type
             required: false
             remember: false
@@ -416,6 +431,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: block_content
+          entity_field: type
+          plugin_id: bundle
         reusable:
           id: reusable
           table: block_content_field_data
@@ -423,9 +441,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: block_content
-          entity_field: reusable
-          plugin_id: boolean
           operator: '='
           value: '1'
           group: 1
@@ -436,8 +451,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -456,99 +469,70 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            info: info
-            type: type
-            changed: changed
-            operations: operations
-          default: changed
-          info:
-            info:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            type:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            changed:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            operations:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: true
-          caption: ''
-          description: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
+          entity_type: block_content
+          entity_field: reusable
+          plugin_id: boolean
+      sorts: {  }
+      title: 'Custom block library'
       header: {  }
       footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'There are no custom blocks available.'
+          plugin_id: text_custom
+        block_content_listing_empty:
+          admin_label: ''
+          empty: true
+          field: block_content_listing_empty
+          group_type: group
+          id: block_content_listing_empty
+          label: ''
+          relationship: none
+          table: block_content
+          plugin_id: block_content_listing_empty
+          entity_type: block_content
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
   page_1:
+    display_plugin: page
     id: page_1
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
       display_extenders: {  }
-      path: admin/content/block
+      path: admin/structure/block/block-content
       menu:
         type: tab
-        title: Blocks
-        description: 'Create and edit block content.'
+        title: 'Custom block library'
+        description: ''
+        parent: block.admin_display
         weight: 0
-        expanded: false
-        menu_name: admin
-        parent: system.admin_content
         context: '0'
+        menu_name: admin
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
diff --git a/config/sync/views.view.blog.yml b/config/sync/views.view.blog.yml
index 1dbda68..85865b4 100644
--- a/config/sync/views.view.blog.yml
+++ b/config/sync/views.view.blog.yml
@@ -17,25 +17,77 @@ description: 'Various displays for the blog content type.'
 tag: ''
 base_table: search_api_index_blog
 base_field: search_api_id
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
-      title: Blog
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: none
+        options: {  }
+      query:
+        type: views_query
+        options:
+          bypass_access: false
+          skip_access: false
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 12
+          offset: 0
+          id: 0
+          total_pages: null
+          tags:
+            previous: ‹‹
+            next: ››
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: false
+      row:
+        type: search_api
+        options:
+          view_modes:
+            'entity:node':
+              blog: card
       fields:
         rendered_item:
-          id: rendered_item
           table: search_api_index_blog
           field: rendered_item
-          relationship: none
-          group_type: group
-          admin_label: ''
+          id: rendered_item
           entity_type: null
           entity_field: null
           plugin_id: search_api
+          relationship: none
+          group_type: group
+          admin_label: ''
           label: ''
           exclude: false
           alter:
@@ -81,44 +133,20 @@ display:
           use_highlighting: false
           multi_type: separator
           multi_separator: ', '
-      pager:
-        type: mini
-        options:
-          offset: 0
-          items_per_page: 12
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: search_api_none
-        options: {  }
-      empty: {  }
+      filters: {  }
       sorts:
+        sticky:
+          id: sticky
+          table: search_api_index_blog
+          field: sticky
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: search_api
         created:
           id: created
           table: search_api_index_blog
@@ -126,58 +154,36 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: search_api
           order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
+          plugin_id: search_api
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
       arguments: {  }
-      filters: {  }
+      display_extenders: {  }
+      title: Blog
       filter_groups:
         operator: AND
         groups: {  }
-      style:
-        type: default
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: false
-      row:
-        type: search_api
-        options:
-          view_modes:
-            'entity:node':
-              blog: card
-      query:
-        type: search_api_query
-        options:
-          bypass_access: false
-          skip_access: false
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
     cache_metadata:
       max-age: -1
       contexts:
         - 'languages:language_interface'
         - url.query_args
-        - 'user.node_grants:view'
         - user.permissions
-      tags:
-        - 'config:search_api.index.blog'
+      tags: {  }
   block_promoted:
+    display_plugin: block
     id: block_promoted
     display_title: 'Block Promoted'
-    display_plugin: block
     position: 2
     display_options:
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 4
+      display_extenders: {  }
+      display_description: ''
       filters:
         promote:
           id: promote
@@ -186,7 +192,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: search_api_boolean
           operator: '='
           value: '1'
           group: 1
@@ -197,8 +202,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -217,29 +220,31 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: search_api_boolean
+      defaults:
+        filters: false
+        filter_groups: false
+        pager: false
       filter_groups:
         operator: AND
         groups:
           1: AND
-      defaults:
-        pager: false
-        filters: false
-        filter_groups: false
-      display_description: ''
-      display_extenders: {  }
+      pager:
+        type: some
+        options:
+          items_per_page: 4
+          offset: 0
       block_hide_empty: true
     cache_metadata:
       max-age: -1
       contexts:
         - 'languages:language_interface'
-        - 'user.node_grants:view'
         - user.permissions
-      tags:
-        - 'config:search_api.index.blog'
+      tags: {  }
   page_listing:
+    display_plugin: page
     id: page_listing
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
       display_extenders: {  }
@@ -248,18 +253,15 @@ display:
         type: normal
         title: Blog
         description: 'Follow our blogs.'
-        weight: -48
-        enabled: true
         expanded: false
-        menu_name: main
-        parent: 'menu_link_content:ca732f05-d1f6-4704-a192-c2aeefa50410'
+        parent: 'menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd'
+        weight: 0
         context: '0'
+        menu_name: main
     cache_metadata:
       max-age: -1
       contexts:
         - 'languages:language_interface'
         - url.query_args
-        - 'user.node_grants:view'
         - user.permissions
-      tags:
-        - 'config:search_api.index.blog'
+      tags: {  }
diff --git a/config/sync/views.view.blogs.yml b/config/sync/views.view.blogs.yml
deleted file mode 100644
index 0acf2cc..0000000
--- a/config/sync/views.view.blogs.yml
+++ /dev/null
@@ -1,288 +0,0 @@
-uuid: f1150168-75a5-4f36-9442-7e4a6024649e
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.teaser
-    - node.type.blog
-  module:
-    - node
-    - user
-id: blogs
-label: Blogs
-module: views
-description: 'Old-style per-user (not per-author/person) blog listings.'
-tag: ''
-base_table: node_field_data
-base_field: nid
-display:
-  default:
-    id: default
-    display_title: Master
-    display_plugin: default
-    position: 0
-    display_options:
-      title: Blogs
-      fields:
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: field
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-      pager:
-        type: full
-        options:
-          offset: 0
-          items_per_page: 20
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
-      sorts:
-        created:
-          id: created
-          table: node_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
-      arguments: {  }
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          value:
-            blog: blog
-          expose:
-            operator_limit_selection: false
-            operator_list: {  }
-      style:
-        type: default
-      row:
-        type: 'entity:node'
-        options:
-          view_mode: teaser
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  feed_all:
-    id: feed_all
-    display_title: Feed
-    display_plugin: feed
-    position: 2
-    display_options:
-      pager:
-        type: some
-      style:
-        type: rss
-      row:
-        type: node_rss
-      display_extenders: {  }
-      path: blogs/feed
-      displays:
-        default: default
-        page_1: page_1
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  page_all:
-    id: page_all
-    display_title: 'Blogs page'
-    display_plugin: page
-    position: 1
-    display_options:
-      display_description: 'All blog posts by all users.'
-      display_extenders: {  }
-      path: blogs
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  page_user:
-    id: page_user
-    display_title: 'User blogs'
-    display_plugin: page
-    position: 3
-    display_options:
-      arguments:
-        uid:
-          id: uid
-          table: node_field_data
-          field: uid
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: uid
-          plugin_id: entity_target_id
-          default_action: default
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: true
-          title: "{{ arguments.uid }}'s blog"
-          default_argument_type: user
-          default_argument_options:
-            user: false
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          break_phrase: false
-          not: false
-          target_entity_type_id: user
-      defaults:
-        relationships: false
-        arguments: false
-      relationships: {  }
-      display_description: 'Blog posts listings for each user.'
-      display_extenders: {  }
-      path: blog/%
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.collection.yml b/config/sync/views.view.collection.yml
deleted file mode 100644
index 3f24ec0..0000000
--- a/config/sync/views.view.collection.yml
+++ /dev/null
@@ -1,258 +0,0 @@
-uuid: b3990b2d-ad81-43ba-bc8f-62309108ad89
-langcode: en
-status: true
-dependencies:
-  config:
-    - search_api.index.collection
-    - system.menu.main
-  module:
-    - search_api
-    - user
-_core:
-  default_config_hash: f8uoIe_CmLkBA5LAlknvx3pT4QCs26VgjFam0s8Wz68
-id: collection
-label: Collection
-module: views
-description: 'Various displays for the collection content type.'
-tag: ''
-base_table: search_api_index_collection
-base_field: search_api_id
-display:
-  default:
-    id: default
-    display_title: Master
-    display_plugin: default
-    position: 0
-    display_options:
-      title: Collections
-      fields:
-        rendered_item:
-          id: rendered_item
-          table: search_api_index_collection
-          field: rendered_item
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: null
-          entity_field: null
-          plugin_id: search_api
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          link_to_item: false
-          use_highlighting: false
-          multi_type: separator
-          multi_separator: ', '
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 12
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: search_api_none
-        options: {  }
-      empty: {  }
-      sorts:
-        created:
-          id: created
-          table: search_api_index_collection
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: search_api
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-      arguments: {  }
-      filters:
-        status:
-          id: status
-          table: search_api_index_collection
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: search_api_boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      style:
-        type: default
-        options:
-          row_class: ''
-          default_row_class: false
-          uses_fields: false
-      row:
-        type: search_api
-        options:
-          view_modes:
-            'entity:node':
-              collection: card
-      query:
-        type: search_api_query
-        options:
-          bypass_access: false
-          skip_access: false
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-        - user.permissions
-      tags: {  }
-  block_promoted:
-    id: block_promoted
-    display_title: 'Block Promoted'
-    display_plugin: block
-    position: 2
-    display_options:
-      title: Latest
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 4
-      defaults:
-        title: false
-        pager: false
-        link_display: false
-        link_url: false
-        style: true
-        row: true
-      display_description: ''
-      link_display: page_1
-      link_url: ''
-      display_extenders: {  }
-      block_description: 'Promoted collections'
-      block_hide_empty: true
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - user.permissions
-      tags: {  }
-  page_listing:
-    id: page_listing
-    display_title: Page
-    display_plugin: page
-    position: 1
-    display_options:
-      display_extenders: {  }
-      path: collections
-      menu:
-        type: normal
-        title: News
-        description: 'Keep up to date.'
-        weight: -43
-        enabled: false
-        expanded: false
-        menu_name: main
-        parent: 'menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd'
-        context: '0'
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.collection_select_content.yml b/config/sync/views.view.collection_select_content.yml
index d6ec9e7..b8c0b2b 100644
--- a/config/sync/views.view.collection_select_content.yml
+++ b/config/sync/views.view.collection_select_content.yml
@@ -17,35 +17,97 @@ description: 'Choose items to include in a Collection.'
 tag: ''
 base_table: node_field_data
 base_field: nid
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: null
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+      row:
+        type: fields
+        options:
+          inline: {  }
+          separator: ''
+          hide_empty: false
+          default_field_elements: true
       fields:
         title:
           id: title
           table: node_field_data
           field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
           entity_type: node
           entity_field: title
-          plugin_id: field
           label: ''
-          exclude: false
           alter:
             alter_text: false
             make_link: false
             absolute: false
+            trim: false
             word_boundary: false
             ellipsis: false
             strip_tags: false
-            trim: false
             html: false
+          hide_empty: false
+          empty_zero: false
+          settings:
+            link_to_entity: true
+          plugin_id: field
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
           element_type: ''
           element_class: ''
           element_label_type: ''
@@ -55,13 +117,9 @@ display:
           element_wrapper_class: ''
           element_default_classes: true
           empty: ''
-          hide_empty: false
-          empty_zero: false
           hide_alter_empty: true
           click_sort_column: value
           type: string
-          settings:
-            link_to_entity: true
           group_column: value
           group_columns: {  }
           group_rows: true
@@ -79,9 +137,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: field
           label: ''
           exclude: false
           alter:
@@ -137,6 +192,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: node
+          entity_field: type
+          plugin_id: field
         status:
           id: status
           table: node_field_data
@@ -144,9 +202,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: status
-          plugin_id: field
           label: ''
           exclude: false
           alter:
@@ -192,8 +247,8 @@ display:
           type: boolean
           settings:
             format: custom
-            format_custom_false: Unpublished
             format_custom_true: ''
+            format_custom_false: Unpublished
           group_column: value
           group_columns: {  }
           group_rows: true
@@ -204,6 +259,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: node
+          entity_field: status
+          plugin_id: field
         field_summary:
           id: field_summary
           table: node__field_summary
@@ -211,7 +269,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: field
           label: ''
           exclude: false
           alter:
@@ -266,100 +323,40 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
-      pager:
-        type: mini
-        options:
-          offset: 0
-          items_per_page: 10
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
+          plugin_id: field
+      filters:
+        status:
+          value: '1'
+          table: node_field_data
+          field: status
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+          id: status
           expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
+            operator: ''
+          group: 1
       sorts:
         created:
           id: created
           table: node_field_data
           field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
+          order: DESC
           entity_type: node
           entity_field: created
           plugin_id: date
-          order: DESC
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
           granularity: second
-      arguments: {  }
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-      style:
-        type: default
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          uses_fields: false
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
     cache_metadata:
       max-age: -1
@@ -372,16 +369,12 @@ display:
       tags:
         - 'config:field.storage.node.field_summary'
   entity_reference:
+    display_plugin: entity_reference
     id: entity_reference
     display_title: 'Entity Reference'
-    display_plugin: entity_reference
     position: 1
     display_options:
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 20
+      display_extenders: {  }
       style:
         type: entity_reference
         options:
@@ -400,7 +393,11 @@ display:
             status: status
           separator: ' · '
           hide_empty: true
-      display_extenders: {  }
+      pager:
+        type: some
+        options:
+          items_per_page: 20
+          offset: 0
     cache_metadata:
       max-age: -1
       contexts:
diff --git a/config/sync/views.view.comment.yml b/config/sync/views.view.comment.yml
index 13f3371..51d197d 100644
--- a/config/sync/views.view.comment.yml
+++ b/config/sync/views.view.comment.yml
@@ -14,14 +14,123 @@ description: 'Find and manage comments.'
 tag: default
 base_table: comment_field_data
 base_field: cid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: Comments
+      access:
+        type: perm
+        options:
+          perm: 'administer comments'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: null
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+            first: '« first'
+            last: 'last »'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          quantity: 9
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: true
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            comment_bulk_form: comment_bulk_form
+            subject: subject
+            uid: uid
+            entity_id: entity_id
+            changed: changed
+            operations: operations
+          info:
+            comment_bulk_form:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            subject:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            uid:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            entity_id:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            operations:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: changed
+          empty_table: true
+      row:
+        type: fields
       fields:
         comment_bulk_form:
           id: comment_bulk_form
@@ -30,8 +139,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          plugin_id: comment_bulk_form
           label: ''
           exclude: false
           alter:
@@ -78,6 +185,8 @@ display:
           selected_actions:
             - comment_delete_action
             - comment_unpublish_action
+          plugin_id: comment_bulk_form
+          entity_type: comment
         subject:
           id: subject
           table: comment_field_data
@@ -85,9 +194,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: subject
-          plugin_id: field
           label: Subject
           exclude: false
           alter:
@@ -143,6 +249,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: subject
+          plugin_id: field
         uid:
           id: uid
           table: comment_field_data
@@ -150,9 +259,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: uid
-          plugin_id: field
           label: ''
           exclude: true
           alter:
@@ -208,6 +314,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: uid
+          plugin_id: field
         name:
           id: name
           table: comment_field_data
@@ -215,9 +324,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: name
-          plugin_id: field
           label: Author
           exclude: false
           alter:
@@ -272,6 +378,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: name
+          plugin_id: field
         entity_id:
           id: entity_id
           table: comment_field_data
@@ -279,9 +388,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: entity_id
-          plugin_id: commented_entity
           label: 'Posted in'
           exclude: false
           alter:
@@ -337,6 +443,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: entity_id
+          plugin_id: commented_entity
         changed:
           id: changed
           table: comment_field_data
@@ -344,9 +453,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: changed
-          plugin_id: field
           label: Updated
           exclude: false
           alter:
@@ -394,15 +500,6 @@ display:
             date_format: short
             custom_date_format: ''
             timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
           group_column: value
           group_columns: {  }
           group_rows: true
@@ -413,6 +510,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: changed
+          plugin_id: field
         operations:
           id: operations
           table: comment
@@ -420,8 +520,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          plugin_id: entity_operations
           label: Operations
           exclude: false
           alter:
@@ -464,6 +562,8 @@ display:
           empty_zero: false
           hide_alter_empty: true
           destination: true
+          entity_type: comment
+          plugin_id: entity_operations
         name_1:
           id: name_1
           table: users_field_data
@@ -471,9 +571,6 @@ display:
           relationship: uid
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
           label: ''
           exclude: true
           alter:
@@ -529,75 +626,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: null
-          id: 0
-          tags:
-            next: 'next ›'
-            previous: '‹ previous'
-            first: '« first'
-            last: 'last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Filter
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'administer comments'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'No comments available.'
-          tokenize: false
-      sorts:
-        changed:
-          id: changed
-          table: comment_field_data
-          field: changed
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: comment
-          entity_field: changed
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: changed
-          exposed: false
-          granularity: second
-      arguments: {  }
+          entity_type: user
+          entity_field: name
+          plugin_id: field
       filters:
         status:
           id: status
@@ -606,9 +637,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: status
-          plugin_id: boolean
           operator: '='
           value: '1'
           group: 1
@@ -619,8 +647,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -639,6 +665,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: comment
+          entity_field: status
+          plugin_id: boolean
         subject:
           id: subject
           table: comment_field_data
@@ -646,9 +675,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: subject
-          plugin_id: string
           operator: contains
           value: ''
           group: 1
@@ -659,8 +685,6 @@ display:
             description: ''
             use_operator: false
             operator: subject_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: subject
             required: false
             remember: false
@@ -681,6 +705,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: comment
+          entity_field: subject
+          plugin_id: string
         combine:
           id: combine
           table: views
@@ -688,7 +715,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: combine
           operator: contains
           value: ''
           group: 1
@@ -699,8 +725,6 @@ display:
             description: ''
             use_operator: false
             operator: combine_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: author_name
             required: false
             remember: false
@@ -724,6 +748,7 @@ display:
           fields:
             name: name
             name_1: name_1
+          plugin_id: combine
         langcode:
           id: langcode
           table: comment_field_data
@@ -731,9 +756,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: langcode
-          plugin_id: language
           operator: in
           value: {  }
           group: 1
@@ -744,8 +766,6 @@ display:
             description: ''
             use_operator: false
             operator: langcode_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: langcode
             required: false
             remember: false
@@ -767,81 +787,50 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            comment_bulk_form: comment_bulk_form
-            subject: subject
-            uid: uid
-            entity_id: entity_id
-            changed: changed
-            operations: operations
-          default: changed
-          info:
-            comment_bulk_form:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            subject:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            uid:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            entity_id:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            changed:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            operations:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: true
-          caption: ''
-          description: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
+          entity_type: comment
+          entity_field: langcode
+          plugin_id: language
+      sorts:
+        changed:
+          id: changed
+          table: comment_field_data
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          entity_type: comment
+          entity_field: changed
+          plugin_id: date
+      title: Comments
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No comments available.'
+          plugin_id: text_custom
+      arguments: {  }
+      display_extenders: {  }
+      use_more: false
+      use_more_always: true
+      use_more_text: more
+      use_ajax: false
+      hide_attachment_summary: false
+      show_admin_links: true
+      group_by: false
+      css_class: ''
       relationships:
         uid:
           id: uid
@@ -850,66 +839,235 @@ display:
           relationship: none
           group_type: group
           admin_label: author
+          required: false
           entity_type: comment
           entity_field: uid
           plugin_id: standard
-          required: false
-      css_class: ''
-      use_ajax: false
-      group_by: false
-      show_admin_links: true
-      use_more: false
-      use_more_always: true
-      use_more_text: more
-      header: {  }
-      footer: {  }
-      hide_attachment_summary: false
-      display_extenders: {  }
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
-      tags: {  }
       cacheable: false
+      max-age: 0
+      tags: {  }
   page_published:
+    display_plugin: page
     id: page_published
     display_title: 'Published comments'
-    display_plugin: page
     position: 1
     display_options:
-      display_description: 'The approved comments listing.'
-      display_comment: ''
-      exposed_block: false
-      display_extenders: {  }
       path: admin/content/comment
       menu:
         type: tab
         title: Comments
         description: 'Comments published'
-        weight: 0
-        menu_name: admin
         parent: ''
+        weight: 0
         context: '0'
+        menu_name: admin
+      display_description: 'The approved comments listing.'
+      display_extenders: {  }
+      exposed_block: false
+      display_comment: ''
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
-      tags: {  }
       cacheable: false
+      max-age: 0
+      tags: {  }
   page_unapproved:
+    display_plugin: page
     id: page_unapproved
     display_title: 'Unapproved comments'
-    display_plugin: page
     position: 2
     display_options:
+      path: admin/content/comment/approval
+      menu:
+        type: tab
+        title: 'Unapproved comments'
+        description: 'Comments unapproved'
+        parent: ''
+        weight: 1
+        context: '0'
+        menu_name: admin
+      display_description: 'The unapproved comments listing.'
+      filters:
+        status:
+          id: status
+          table: comment_field_data
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '0'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: comment
+          entity_field: status
+          plugin_id: boolean
+        subject:
+          id: subject
+          table: comment_field_data
+          field: subject
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: subject_op
+            label: Subject
+            description: ''
+            use_operator: false
+            operator: subject_op
+            identifier: subject
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: comment
+          entity_field: subject
+          plugin_id: string
+        combine:
+          id: combine
+          table: views
+          field: combine
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: combine_op
+            label: 'Author Name'
+            description: ''
+            use_operator: false
+            operator: combine_op
+            identifier: author_name
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          fields:
+            name: name
+            name_1: name_1
+          plugin_id: combine
+        langcode:
+          id: langcode
+          table: comment_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: langcode_op
+            label: Language
+            description: ''
+            use_operator: false
+            operator: langcode_op
+            identifier: langcode
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          entity_type: comment
+          entity_field: langcode
+          plugin_id: language
+      defaults:
+        filters: false
+        filter_groups: false
+        fields: false
+      display_extenders: {  }
       fields:
         comment_bulk_form:
           id: comment_bulk_form
@@ -918,8 +1076,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          plugin_id: comment_bulk_form
           label: ''
           exclude: false
           alter:
@@ -966,6 +1122,8 @@ display:
           selected_actions:
             - comment_delete_action
             - comment_publish_action
+          plugin_id: comment_bulk_form
+          entity_type: comment
         subject:
           id: subject
           table: comment_field_data
@@ -973,9 +1131,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: subject
-          plugin_id: field
           label: Subject
           exclude: false
           alter:
@@ -1031,6 +1186,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: subject
+          plugin_id: field
         uid:
           id: uid
           table: comment_field_data
@@ -1038,9 +1196,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: uid
-          plugin_id: field
           label: ''
           exclude: true
           alter:
@@ -1096,6 +1251,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: uid
+          plugin_id: field
         name:
           id: name
           table: comment_field_data
@@ -1103,9 +1261,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: name
-          plugin_id: field
           label: Author
           exclude: false
           alter:
@@ -1160,6 +1315,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: name
+          plugin_id: field
         entity_id:
           id: entity_id
           table: comment_field_data
@@ -1167,9 +1325,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: entity_id
-          plugin_id: commented_entity
           label: 'Posted in'
           exclude: false
           alter:
@@ -1225,6 +1380,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: entity_id
+          plugin_id: commented_entity
         changed:
           id: changed
           table: comment_field_data
@@ -1232,9 +1390,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: changed
-          plugin_id: field
           label: Updated
           exclude: false
           alter:
@@ -1282,15 +1437,6 @@ display:
             date_format: short
             custom_date_format: ''
             timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
           group_column: value
           group_columns: {  }
           group_rows: true
@@ -1301,6 +1447,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: comment
+          entity_field: changed
+          plugin_id: field
         operations:
           id: operations
           table: comment
@@ -1308,8 +1457,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          plugin_id: entity_operations
           label: Operations
           exclude: false
           alter:
@@ -1352,6 +1499,8 @@ display:
           empty_zero: false
           hide_alter_empty: true
           destination: true
+          entity_type: comment
+          plugin_id: entity_operations
         name_1:
           id: name_1
           table: users_field_data
@@ -1359,9 +1508,6 @@ display:
           relationship: uid
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
           label: ''
           exclude: true
           alter:
@@ -1417,201 +1563,20 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
-      filters:
-        status:
-          id: status
-          table: comment_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: comment
-          entity_field: status
-          plugin_id: boolean
-          operator: '='
-          value: '0'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        subject:
-          id: subject
-          table: comment_field_data
-          field: subject
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: comment
-          entity_field: subject
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: subject_op
-            label: Subject
-            description: ''
-            use_operator: false
-            operator: subject_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: subject
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        combine:
-          id: combine
-          table: views
-          field: combine
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: combine
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: combine_op
-            label: 'Author Name'
-            description: ''
-            use_operator: false
-            operator: combine_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: author_name
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-          fields:
-            name: name
-            name_1: name_1
-        langcode:
-          id: langcode
-          table: comment_field_data
-          field: langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: comment
-          entity_field: langcode
-          plugin_id: language
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: langcode_op
-            label: Language
-            description: ''
-            use_operator: false
-            operator: langcode_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: langcode
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
+          entity_type: user
+          entity_field: name
+          plugin_id: field
       filter_groups:
         operator: AND
         groups:
           1: AND
-      defaults:
-        fields: false
-        filters: false
-        filter_groups: false
-      display_description: 'The unapproved comments listing.'
-      display_extenders: {  }
-      path: admin/content/comment/approval
-      menu:
-        type: tab
-        title: 'Unapproved comments'
-        description: 'Comments unapproved'
-        weight: 1
-        menu_name: admin
-        parent: ''
-        context: '0'
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
-      tags: {  }
       cacheable: false
+      max-age: 0
+      tags: {  }
diff --git a/config/sync/views.view.comments_recent.yml b/config/sync/views.view.comments_recent.yml
index a4b82df..bc1e9bc 100644
--- a/config/sync/views.view.comments_recent.yml
+++ b/config/sync/views.view.comments_recent.yml
@@ -15,25 +15,62 @@ description: 'Recent comments.'
 tag: default
 base_table: comment_field_data
 base_field: cid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: 'Recent comments'
+      access:
+        type: perm
+        options:
+          perm: 'access comments'
+      cache:
+        type: tag
+      query:
+        type: views_query
+      exposed_form:
+        type: basic
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+      row:
+        type: fields
+        options:
+          default_field_elements: true
+          hide_empty: false
+      relationships:
+        node:
+          field: node
+          id: node
+          table: comment_field_data
+          required: true
+          plugin_id: standard
       fields:
         subject:
           id: subject
           table: comment_field_data
           field: subject
           relationship: none
+          type: string
+          settings:
+            link_to_entity: true
+          plugin_id: field
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: subject
-          plugin_id: field
           label: ''
           exclude: false
           alter:
@@ -75,19 +112,16 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
-          type: string
-          settings:
-            link_to_entity: true
+          entity_type: comment
+          entity_field: subject
         changed:
           id: changed
           table: comment_field_data
           field: changed
           relationship: none
+          plugin_id: field
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: changed
-          plugin_id: field
           label: ''
           exclude: false
           alter:
@@ -134,32 +168,32 @@ display:
             future_format: '@interval hence'
             past_format: '@interval ago'
             granularity: 2
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 10
-      exposed_form:
-        type: basic
-      access:
-        type: perm
-        options:
-          perm: 'access comments'
-      cache:
-        type: tag
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          label: ''
-          empty: true
-          content: 'No comments available.'
-          tokenize: false
+          entity_type: comment
+          entity_field: changed
+      filters:
+        status:
+          value: '1'
+          table: comment_field_data
+          field: status
+          id: status
+          plugin_id: boolean
+          expose:
+            operator: ''
+          group: 1
+          entity_type: comment
+          entity_field: status
+        status_node:
+          value: '1'
+          table: node_field_data
+          field: status
+          relationship: node
+          id: status_node
+          plugin_id: boolean
+          expose:
+            operator: ''
+          group: 1
+          entity_type: node
+          entity_field: status
       sorts:
         created:
           id: created
@@ -168,14 +202,13 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: comment
-          entity_field: created
-          plugin_id: date
           order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
+          plugin_id: date
+          entity_type: comment
+          entity_field: created
         cid:
           id: cid
           table: comment_field_data
@@ -183,87 +216,48 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
+          order: DESC
+          exposed: false
+          plugin_id: field
           entity_type: comment
           entity_field: cid
-          plugin_id: field
-          order: DESC
-          expose:
-            field_identifier: cid
-          exposed: false
-      filters:
-        status:
-          id: status
-          table: comment_field_data
-          field: status
-          entity_type: comment
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        status_node:
-          id: status_node
-          table: node_field_data
-          field: status
-          relationship: node
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-      style:
-        type: html_list
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          type: ul
-          wrapper_class: item-list
-          class: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          hide_empty: false
-      query:
-        type: views_query
-      relationships:
-        node:
-          id: node
-          table: comment_field_data
-          field: node
-          plugin_id: standard
-          required: true
+      title: 'Recent comments'
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          empty: true
+          content: 'No comments available.'
+          tokenize: false
+          plugin_id: text_custom
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user.permissions
+      max-age: -1
       tags: {  }
   block_1:
+    display_plugin: block
     id: block_1
     display_title: Block
-    display_plugin: block
     position: 1
     display_options:
-      display_extenders: {  }
       block_description: 'Recent comments'
       block_category: 'Lists (Views)'
       allow:
         items_per_page: true
+      display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/views.view.content.yml b/config/sync/views.view.content.yml
index 0c9bbf9..c638a32 100644
--- a/config/sync/views.view.content.yml
+++ b/config/sync/views.view.content.yml
@@ -14,248 +14,18 @@ description: 'Find and manage content.'
 tag: default
 base_table: node_field_data
 base_field: nid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
     display_options:
-      title: Content
-      fields:
-        node_bulk_form:
-          id: node_bulk_form
-          table: node
-          field: node_bulk_form
-          entity_type: node
-          plugin_id: node_bulk_form
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-          element_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          entity_type: node
-          entity_field: title
-          plugin_id: field
-          label: Title
-          exclude: false
-          alter:
-            alter_text: false
-          element_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: string
-          settings:
-            link_to_entity: true
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: field
-          label: 'Content type'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: target_id
-          type: entity_reference_label
-          settings:
-            link: false
-          group_column: target_id
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        name:
-          id: name
-          table: users_field_data
-          field: name
-          relationship: uid
-          entity_type: user
-          entity_field: name
-          plugin_id: field
-          label: Author
-          exclude: false
-          alter:
-            alter_text: false
-          element_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: user_name
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: field
-          label: Status
-          exclude: false
-          alter:
-            alter_text: false
-          element_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: boolean
-          settings:
-            format: custom
-            format_custom_false: Unpublished
-            format_custom_true: Published
-        changed:
-          id: changed
-          table: node_field_data
-          field: changed
-          entity_type: node
-          entity_field: changed
-          plugin_id: field
-          label: Updated
-          exclude: false
-          alter:
-            alter_text: false
-          element_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: timestamp
-          settings:
-            date_format: short
-            custom_date_format: ''
-            timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-        operations:
-          id: operations
-          table: node
-          field: operations
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: entity_operations
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          destination: true
-      pager:
-        type: full
+      access:
+        type: perm
         options:
-          pagination_heading_level: h4
-          items_per_page: 50
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-            first: '« First'
-            last: 'Last »'
+          perm: 'access content overview'
+      cache:
+        type: tag
+      query:
+        type: views_query
       exposed_form:
         type: basic
         options:
@@ -266,221 +36,26 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: full
         options:
-          perm: 'access content overview'
-      cache:
-        type: tag
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          plugin_id: text_custom
-          empty: true
-          content: 'No content available.'
-      sorts: {  }
-      arguments: {  }
-      filters:
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: title_op
-            label: Title
-            description: ''
-            use_operator: false
-            operator: title_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: title
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: type_op
-            label: 'Content type'
-            description: ''
-            use_operator: false
-            operator: type_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: type
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: true
-          expose:
-            operator_id: ''
-            label: Status
-            description: ''
-            use_operator: false
-            operator: status_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: status
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: true
-          group_info:
-            label: 'Published status'
-            description: ''
-            identifier: status
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items:
-              1:
-                title: Published
-                operator: '='
-                value: '1'
-              2:
-                title: Unpublished
-                operator: '='
-                value: '0'
-        langcode:
-          id: langcode
-          table: node_field_data
-          field: langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: langcode_op
-            label: Language
-            description: ''
-            use_operator: false
-            operator: langcode_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: langcode
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        status_extra:
-          id: status_extra
-          table: node_field_data
-          field: status_extra
-          entity_type: node
-          plugin_id: node_status
-          operator: '='
-          value: false
-          group: 1
-          expose:
-            operator_limit_selection: false
-            operator_list: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
+          items_per_page: 50
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+            first: '« First'
+            last: 'Last »'
       style:
         type: table
         options:
           grouping: {  }
           row_class: ''
           default_row_class: true
+          override: true
+          sticky: true
+          caption: ''
+          summary: ''
+          description: ''
           columns:
             node_bulk_form: node_bulk_form
             title: title
@@ -492,7 +67,6 @@ display:
             delete_node: delete_node
             dropbutton: dropbutton
             timestamp: title
-          default: changed
           info:
             node_bulk_form:
               align: ''
@@ -562,28 +136,433 @@ display:
               separator: ''
               empty_column: false
               responsive: ''
-          override: true
-          sticky: true
-          summary: ''
+          default: changed
           empty_table: true
-          caption: ''
-          description: ''
       row:
         type: fields
-      query:
-        type: views_query
+      fields:
+        node_bulk_form:
+          id: node_bulk_form
+          table: node
+          field: node_bulk_form
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: node_bulk_form
+          entity_type: node
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          label: Title
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: node
+          entity_field: title
+          type: string
+          settings:
+            link_to_entity: true
+          plugin_id: field
+        type:
+          id: type
+          table: node_field_data
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Content type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: target_id
+          type: entity_reference_label
+          settings:
+            link: false
+          group_column: target_id
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          entity_type: node
+          entity_field: type
+          plugin_id: field
+        name:
+          id: name
+          table: users_field_data
+          field: name
+          relationship: uid
+          label: Author
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: field
+          type: user_name
+          entity_type: user
+          entity_field: name
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: boolean
+          settings:
+            format: custom
+            format_custom_true: Published
+            format_custom_false: Unpublished
+          plugin_id: field
+          entity_type: node
+          entity_field: status
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          label: Updated
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp
+          settings:
+            date_format: short
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          entity_type: node
+          entity_field: changed
+        operations:
+          id: operations
+          table: node
+          field: operations
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          destination: true
+          plugin_id: entity_operations
+      filters:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: title_op
+            label: Title
+            description: ''
+            use_operator: false
+            operator: title_op
+            identifier: title
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: node
+          entity_field: title
+        type:
+          id: type
+          table: node_field_data
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: type_op
+            label: 'Content type'
+            description: ''
+            use_operator: false
+            operator: type_op
+            identifier: type
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: bundle
+          entity_type: node
+          entity_field: type
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '1'
+          group: 1
+          exposed: true
+          expose:
+            operator_id: ''
+            label: Status
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: true
+          group_info:
+            label: 'Published status'
+            description: ''
+            identifier: status
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items:
+              1:
+                title: Published
+                operator: '='
+                value: '1'
+              2:
+                title: Unpublished
+                operator: '='
+                value: '0'
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+        langcode:
+          id: langcode
+          table: node_field_data
+          field: langcode
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: langcode_op
+            label: Language
+            description: ''
+            use_operator: false
+            operator: langcode_op
+            identifier: langcode
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+        status_extra:
+          id: status_extra
+          table: node_field_data
+          field: status_extra
+          operator: '='
+          value: false
+          plugin_id: node_status
+          group: 1
+          entity_type: node
+      sorts: {  }
+      title: Content
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          empty: true
+          content: 'No content available.'
+          plugin_id: text_custom
+      arguments: {  }
       relationships:
         uid:
           id: uid
           table: node_field_data
           field: uid
           admin_label: author
-          plugin_id: standard
           required: true
+          plugin_id: standard
       show_admin_links: false
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
       display_extenders: {  }
+    display_plugin: default
+    display_title: Master
+    id: default
+    position: 0
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
@@ -592,30 +571,30 @@ display:
         - user
         - 'user.node_grants:view'
         - user.permissions
+      max-age: 0
       tags: {  }
   page_1:
-    id: page_1
-    display_title: Page
-    display_plugin: page
-    position: 1
     display_options:
-      display_extenders: {  }
       path: admin/content/node
       menu:
         type: 'default tab'
         title: Content
         description: ''
-        weight: -10
         menu_name: admin
+        weight: -10
         context: ''
       tab_options:
         type: normal
         title: Content
         description: 'Find and manage content'
-        weight: -10
         menu_name: admin
+        weight: -10
+      display_extenders: {  }
+    display_plugin: page
+    display_title: Page
+    id: page_1
+    position: 1
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
@@ -624,4 +603,5 @@ display:
         - user
         - 'user.node_grants:view'
         - user.permissions
+      max-age: 0
       tags: {  }
diff --git a/config/sync/views.view.content_by_author.yml b/config/sync/views.view.content_by_author.yml
index 6a75e0c..6aa5102 100644
--- a/config/sync/views.view.content_by_author.yml
+++ b/config/sync/views.view.content_by_author.yml
@@ -16,23 +16,62 @@ description: 'Display of content by an author using person type'
 tag: ''
 base_table: node_field_data
 base_field: nid
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
-      title: 'By this author'
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: some
+        options:
+          items_per_page: 4
+          offset: 0
+      style:
+        type: default
+      row:
+        type: 'entity:node'
+        options:
+          relationship: none
+          view_mode: simple_card
       fields:
         title:
           id: title
           table: node_field_data
           field: title
+          settings:
+            link_to_entity: true
+          plugin_id: field
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: field
           label: ''
           exclude: false
           alter:
@@ -76,8 +115,6 @@ display:
           hide_alter_empty: true
           click_sort_column: value
           type: string
-          settings:
-            link_to_entity: true
           group_column: value
           group_columns: {  }
           group_rows: true
@@ -88,46 +125,48 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
+      filters:
+        status:
+          value: '1'
+          table: node_field_data
+          field: status
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+          id: status
+          expose:
+            operator: ''
+          group: 1
       sorts:
         created:
           id: created
           table: node_field_data
           field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
+          order: DESC
           entity_type: node
           entity_field: created
           plugin_id: date
-          order: DESC
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
           granularity: second
+      title: 'By this author'
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships:
+        field_authors:
+          id: field_authors
+          table: node__field_authors
+          field: field_authors
+          relationship: none
+          group_type: group
+          admin_label: 'field_authors: Content'
+          required: true
+          plugin_id: standard
       arguments:
         nid:
           id: nid
@@ -136,9 +175,6 @@ display:
           relationship: field_authors
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: nid
-          plugin_id: node_nid
           default_action: default
           exception:
             value: all
@@ -148,11 +184,12 @@ display:
           title: ''
           default_argument_type: node
           default_argument_options: {  }
+          default_argument_skip_url: false
           summary_options:
             base_path: ''
             count: true
-            override: false
             items_per_page: 25
+            override: false
           summary:
             sort_order: asc
             number_of_records: 0
@@ -164,52 +201,14 @@ display:
           validate_options: {  }
           break_phrase: false
           not: false
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
           entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
+          entity_field: nid
+          plugin_id: node_nid
+      display_extenders: {  }
       filter_groups:
         operator: AND
         groups:
           1: AND
-      style:
-        type: default
-      row:
-        type: 'entity:node'
-        options:
-          relationship: none
-          view_mode: simple_card
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships:
-        field_authors:
-          id: field_authors
-          table: node__field_authors
-          field: field_authors
-          relationship: none
-          group_type: group
-          admin_label: 'field_authors: Content'
-          plugin_id: standard
-          required: true
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
     cache_metadata:
       max-age: -1
       contexts:
@@ -220,18 +219,18 @@ display:
         - user.permissions
       tags: {  }
   block_author:
+    display_plugin: block
     id: block_author
     display_title: Block
-    display_plugin: block
     position: 1
     display_options:
+      display_extenders: {  }
       defaults:
         use_more: true
         use_more_always: true
         use_more_text: true
         link_display: true
         link_url: true
-      display_extenders: {  }
       block_hide_empty: true
     cache_metadata:
       max-age: -1
@@ -242,26 +241,3 @@ display:
         - 'user.node_grants:view'
         - user.permissions
       tags: {  }
-  feed:
-    id: feed
-    display_title: Feed
-    display_plugin: feed
-    position: 2
-    display_options:
-      row:
-        type: node_rss
-        options: {  }
-      display_extenders: {  }
-      path: people/%/rss.xml
-      displays:
-        block_author: block_author
-        default: '0'
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.content_recent.yml b/config/sync/views.view.content_recent.yml
index c0bca70..0f17282 100644
--- a/config/sync/views.view.content_recent.yml
+++ b/config/sync/views.view.content_recent.yml
@@ -2,11 +2,6 @@ uuid: ca2596da-f5f0-466e-8ba1-5b17588c5bfe
 langcode: en
 status: true
 dependencies:
-  config:
-    - node.type.article
-    - node.type.blog
-    - node.type.collection
-    - node.type.gleaning
   module:
     - node
     - user
@@ -19,35 +14,127 @@ description: 'Recent content.'
 tag: default
 base_table: node_field_data
 base_field: nid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: 'Recent content'
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: some
+        options:
+          items_per_page: 5
+          offset: 0
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+      row:
+        type: fields
       fields:
         title:
           id: title
           table: node_field_data
           field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
           entity_type: node
           entity_field: title
-          plugin_id: field
           label: ''
           exclude: false
           alter:
             alter_text: false
             make_link: false
             absolute: false
+            trim: false
             word_boundary: false
             ellipsis: false
             strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          type: string
+          settings:
+            link_to_entity: true
+          plugin_id: field
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
             trim: false
+            preserve_tags: ''
             html: false
           element_type: ''
           element_class: ''
@@ -61,61 +148,22 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
-          type: string
-          settings:
-            link_to_entity: true
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 5
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'No content available.'
-          tokenize: false
-      sorts:
-        changed:
-          id: changed
-          table: node_field_data
-          field: changed
-          relationship: none
-          group_type: group
-          admin_label: ''
+          click_sort_column: value
+          type: timestamp_ago
+          settings: {  }
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
           entity_type: node
           entity_field: changed
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: changed
-          exposed: false
-          granularity: second
-      arguments: {  }
+          plugin_id: field
       filters:
         status_extra:
           id: status_extra
@@ -124,8 +172,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          plugin_id: node_status
           operator: '='
           value: false
           group: 1
@@ -136,8 +182,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -156,6 +200,8 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: node
+          plugin_id: node_status
         langcode:
           id: langcode
           table: node_field_data
@@ -163,9 +209,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
           operator: in
           value:
             '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -177,8 +220,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -198,70 +239,40 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-        type:
-          id: type
+          entity_type: node
+          entity_field: langcode
+          plugin_id: language
+      sorts:
+        changed:
+          id: changed
           table: node_field_data
-          field: type
+          field: changed
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value:
-            article: article
-            blog: blog
-            collection: collection
-            gleaning: gleaning
-          group: 1
+          order: DESC
           exposed: false
           expose:
-            operator_id: ''
             label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      style:
-        type: html_list
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          type: ul
-          wrapper_class: item-list
-          class: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
+          granularity: second
+          entity_type: node
+          entity_field: changed
+          plugin_id: date
+      title: 'Recent content'
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No content available.'
+          plugin_id: text_custom
       relationships:
         uid:
           id: uid
@@ -270,40 +281,39 @@ display:
           relationship: none
           group_type: group
           admin_label: author
+          required: true
           entity_type: node
           entity_field: uid
           plugin_id: standard
-          required: true
+      arguments: {  }
+      display_extenders: {  }
       use_more: false
       use_more_always: false
       use_more_text: More
-      link_display: '0'
       link_url: ''
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
+      link_display: '0'
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   block_1:
+    display_plugin: block
     id: block_1
     display_title: Block
-    display_plugin: block
     position: 1
     display_options:
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/views.view.files.yml b/config/sync/views.view.files.yml
index b3b3735..6d3474a 100644
--- a/config/sync/views.view.files.yml
+++ b/config/sync/views.view.files.yml
@@ -14,528 +14,29 @@ description: 'Find and manage files.'
 tag: default
 base_table: file_managed
 base_field: fid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: Files
-      fields:
-        fid:
-          id: fid
-          table: file_managed
-          field: fid
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: fid
-          plugin_id: field
-          label: Fid
-          exclude: true
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        filename:
-          id: filename
-          table: file_managed
-          field: filename
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: filename
-          plugin_id: field
-          label: Name
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: false
-            ellipsis: false
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: file_link
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        filemime:
-          id: filemime
-          table: file_managed
-          field: filemime
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: filemime
-          plugin_id: field
-          label: 'MIME type'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: file_filemime
-        filesize:
-          id: filesize
-          table: file_managed
-          field: filesize
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: filesize
-          plugin_id: field
-          label: Size
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: file_size
-        status:
-          id: status
-          table: file_managed
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: status
-          plugin_id: field
-          label: Status
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: boolean
-          settings:
-            format: custom
-            format_custom_false: Temporary
-            format_custom_true: Permanent
-        created:
-          id: created
-          table: file_managed
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: created
-          plugin_id: field
-          label: 'Upload date'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: timestamp
-          settings:
-            date_format: medium
-            custom_date_format: ''
-            timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-        changed:
-          id: changed
-          table: file_managed
-          field: changed
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: changed
-          plugin_id: field
-          label: 'Changed date'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: timestamp
-          settings:
-            date_format: medium
-            custom_date_format: ''
-            timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-        count:
-          id: count
-          table: file_usage
-          field: count
-          relationship: fid
-          group_type: sum
-          admin_label: ''
-          plugin_id: numeric
-          label: 'Used in'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: true
-            path: 'admin/content/files/usage/{{ fid }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: true
-          format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz
-          prefix: ''
-          suffix: ''
-        operations:
-          id: operations
-          table: file_managed
-          field: operations
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          plugin_id: entity_operations
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          destination: false
-      pager:
-        type: mini
+      access:
+        type: perm
         options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: 0
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
+          perm: 'access files overview'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
       exposed_form:
         type: basic
         options:
@@ -546,157 +47,35 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: mini
         options:
-          perm: 'access files overview'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          plugin_id: text_custom
-          empty: true
-          content: 'No files available.'
-      sorts: {  }
-      arguments: {  }
-      filters:
-        filename:
-          id: filename
-          table: file_managed
-          field: filename
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: filename
-          plugin_id: string
-          operator: word
-          value: ''
-          group: 1
-          exposed: true
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
           expose:
-            operator_id: filemime_op
-            label: Filename
-            description: ''
-            use_operator: false
-            operator: filename_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: filename
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        filemime:
-          id: filemime
-          table: file_managed
-          field: filemime
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: filemime
-          plugin_id: string
-          operator: word
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: filemime_op
-            label: 'MIME type'
-            description: ''
-            use_operator: false
-            operator: filemime_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: filemime
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        status:
-          id: status
-          table: file_managed
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: file
-          entity_field: status
-          plugin_id: file_status
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: status_op
-            label: Status
-            description: ''
-            use_operator: false
-            operator: status_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: status
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
       style:
         type: table
         options:
           grouping: {  }
           row_class: ''
           default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
           columns:
             fid: fid
             filename: filename
@@ -706,7 +85,6 @@ display:
             created: created
             changed: changed
             count: count
-          default: changed
           info:
             fid:
               sortable: false
@@ -764,22 +142,570 @@ display:
               separator: ''
               empty_column: false
               responsive: priority-medium
-          override: true
-          sticky: false
-          summary: ''
+          default: changed
           empty_table: true
-          caption: ''
-          description: ''
       row:
         type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
+      fields:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Fid
+          exclude: true
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          plugin_id: field
+          entity_type: file
+          entity_field: fid
+        filename:
+          id: filename
+          table: file_managed
+          field: filename
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Name
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          click_sort_column: value
+          type: file_link
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
+          plugin_id: field
+          entity_type: file
+          entity_field: filename
+        filemime:
+          id: filemime
+          table: file_managed
+          field: filemime
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'MIME type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: file_filemime
+          plugin_id: field
+          entity_type: file
+          entity_field: filemime
+        filesize:
+          id: filesize
+          table: file_managed
+          field: filesize
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Size
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: file_size
+          plugin_id: field
+          entity_type: file
+          entity_field: filesize
+        status:
+          id: status
+          table: file_managed
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: boolean
+          settings:
+            format: custom
+            format_custom_false: Temporary
+            format_custom_true: Permanent
+          plugin_id: field
+          entity_type: file
+          entity_field: status
+        created:
+          id: created
+          table: file_managed
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Upload date'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp
+          settings:
+            date_format: medium
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          entity_type: file
+          entity_field: created
+        changed:
+          id: changed
+          table: file_managed
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Changed date'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: timestamp
+          settings:
+            date_format: medium
+            custom_date_format: ''
+            timezone: ''
+          plugin_id: field
+          entity_type: file
+          entity_field: changed
+        count:
+          id: count
+          table: file_usage
+          field: count
+          relationship: fid
+          group_type: sum
+          admin_label: ''
+          label: 'Used in'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: true
+            path: 'admin/content/files/usage/{{ fid }}'
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          set_precision: false
+          precision: 0
+          decimal: .
+          separator: ','
+          format_plural: true
+          format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz
+          prefix: ''
+          suffix: ''
+          plugin_id: numeric
+      filters:
+        filename:
+          id: filename
+          table: file_managed
+          field: filename
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: word
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: filemime_op
+            label: Filename
+            description: ''
+            use_operator: false
+            operator: filename_op
+            identifier: filename
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: file
+          entity_field: filename
+        filemime:
+          id: filemime
+          table: file_managed
+          field: filemime
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: word
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: filemime_op
+            label: 'MIME type'
+            description: ''
+            use_operator: false
+            operator: filemime_op
+            identifier: filemime
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: file
+          entity_field: filemime
+        status:
+          id: status
+          table: file_managed
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: status_op
+            label: Status
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: file_status
+          entity_type: file
+          entity_field: status
+      sorts: {  }
+      title: Files
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          empty: true
+          content: 'No files available.'
+          plugin_id: text_custom
       relationships:
         fid:
           id: fid
@@ -789,26 +715,34 @@ display:
           group_type: group
           admin_label: 'File usage'
           required: true
+      arguments: {  }
       group_by: true
       show_admin_links: true
-      header: {  }
-      footer: {  }
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
   page_1:
+    display_plugin: page
     id: page_1
     display_title: 'Files overview'
-    display_plugin: page
     position: 1
     display_options:
+      path: admin/content/files
+      menu:
+        type: tab
+        title: Files
+        description: ''
+        menu_name: admin
+        weight: 0
+        context: ''
+      display_description: ''
       defaults:
         pager: true
         relationships: false
@@ -821,32 +755,59 @@ display:
           group_type: group
           admin_label: 'File usage'
           required: false
-      display_description: ''
       display_extenders: {  }
-      path: admin/content/files
-      menu:
-        type: tab
-        title: Files
-        description: ''
-        weight: 0
-        menu_name: admin
-        context: ''
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
   page_2:
+    display_plugin: page
     id: page_2
     display_title: 'File usage'
-    display_plugin: page
     position: 2
     display_options:
-      title: 'File usage'
+      display_description: ''
+      path: admin/content/files/usage/%
+      empty: {  }
+      defaults:
+        empty: false
+        pager: false
+        filters: false
+        filter_groups: false
+        fields: false
+        group_by: false
+        title: false
+        arguments: false
+        style: false
+        row: false
+        relationships: false
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+      filters: {  }
+      filter_groups:
+        operator: AND
+        groups: {  }
       fields:
         entity_label:
           id: entity_label
@@ -855,7 +816,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: entity_label
           label: Entity
           exclude: false
           alter:
@@ -898,6 +858,7 @@ display:
           empty_zero: false
           hide_alter_empty: true
           link_to_entity: true
+          plugin_id: entity_label
         type:
           id: type
           table: file_usage
@@ -905,7 +866,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: standard
           label: 'Entity type'
           exclude: false
           alter:
@@ -947,6 +907,7 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: standard
         module:
           id: module
           table: file_usage
@@ -954,7 +915,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: standard
           label: 'Registering module'
           exclude: false
           alter:
@@ -996,6 +956,7 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: standard
         count:
           id: count
           table: file_usage
@@ -1003,7 +964,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: numeric
           label: 'Use count'
           exclude: false
           alter:
@@ -1053,26 +1013,9 @@ display:
           format_plural_string: !!binary MQNAY291bnQ=
           prefix: ''
           suffix: ''
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: 0
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      empty: {  }
+          plugin_id: numeric
+      group_by: false
+      title: 'File usage'
       arguments:
         fid:
           id: fid
@@ -1081,9 +1024,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: file
-          entity_field: fid
-          plugin_id: file_fid
           default_action: 'not found'
           exception:
             value: all
@@ -1094,11 +1034,12 @@ display:
           default_argument_type: fixed
           default_argument_options:
             argument: ''
+          default_argument_skip_url: false
           summary_options:
             base_path: ''
             count: true
-            override: false
             items_per_page: 25
+            override: false
           summary:
             sort_order: asc
             number_of_records: 0
@@ -1110,22 +1051,25 @@ display:
           validate_options: {  }
           break_phrase: false
           not: false
-      filters: {  }
-      filter_groups:
-        operator: AND
-        groups: {  }
+          plugin_id: file_fid
+          entity_type: file
+          entity_field: fid
       style:
         type: table
         options:
           grouping: {  }
           row_class: ''
           default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
           columns:
             entity_label: entity_label
             type: type
             module: module
             count: count
-          default: entity_label
           info:
             entity_label:
               sortable: true
@@ -1155,27 +1099,11 @@ display:
               separator: ''
               empty_column: false
               responsive: ''
-          override: true
-          sticky: false
-          summary: ''
+          default: entity_label
           empty_table: true
-          caption: ''
-          description: ''
       row:
         type: fields
         options: {  }
-      defaults:
-        empty: false
-        title: false
-        pager: false
-        group_by: false
-        style: false
-        row: false
-        relationships: false
-        fields: false
-        arguments: false
-        filters: false
-        filter_groups: false
       relationships:
         fid:
           id: fid
@@ -1185,15 +1113,12 @@ display:
           group_type: group
           admin_label: 'File usage'
           required: true
-      group_by: false
-      display_description: ''
       display_extenders: {  }
-      path: admin/content/files/usage/%
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
diff --git a/config/sync/views.view.frontpage.yml b/config/sync/views.view.frontpage.yml
index ac40ca8..618cfee 100644
--- a/config/sync/views.view.frontpage.yml
+++ b/config/sync/views.view.frontpage.yml
@@ -17,37 +17,52 @@ description: 'All content promoted to the front page.'
 tag: default
 base_table: node_field_data
 base_field: nid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
     display_options:
-      title: ''
-      fields: {  }
-      pager:
-        type: full
+      access:
+        type: perm
         options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: 0
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      empty:
+        area_text_custom:
+          admin_label: ''
+          content: 'No front page content has been created yet.<br/>Follow the <a target="_blank" href="https://www.drupal.org/docs/user_guide/en/index.html">User Guide</a> to start building your site.'
+          empty: true
+          field: area_text_custom
+          group_type: group
+          id: area_text_custom
+          label: ''
+          relationship: none
+          table: views
+          tokenize: false
+          plugin_id: text_custom
+        node_listing_empty:
+          admin_label: ''
+          empty: true
+          field: node_listing_empty
+          group_type: group
+          id: node_listing_empty
+          label: ''
+          relationship: none
+          table: node
+          plugin_id: node_listing_empty
+          entity_type: node
+        title:
+          id: title
+          table: views
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          empty: true
+          title: 'Welcome to [site:name]'
+          plugin_id: title
       exposed_form:
         type: basic
         options:
@@ -58,135 +73,56 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          label: ''
-          empty: true
-          content: 'No front page content has been created yet.<br/>Follow the <a target="_blank" href="https://www.drupal.org/docs/user_guide/en/index.html">User Guide</a> to start building your site.'
-          tokenize: false
-        node_listing_empty:
-          id: node_listing_empty
-          table: node
-          field: node_listing_empty
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: node_listing_empty
-          label: ''
-          empty: true
-        title:
-          id: title
-          table: views
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: title
-          label: ''
-          empty: true
-          title: Welcome!
-      sorts:
-        sticky:
-          id: sticky
-          table: node_field_data
-          field: sticky
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: sticky
-          plugin_id: boolean
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: sticky
-          exposed: false
-        created:
-          id: created
-          table: node_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
-      arguments: {  }
       filters:
         promote:
-          id: promote
-          table: node_field_data
-          field: promote
-          relationship: none
-          group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: promote
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
           expose:
-            operator_id: ''
-            label: ''
             description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
-            required: false
-            remember: false
+            label: ''
             multiple: false
+            operator: ''
+            operator_id: ''
+            remember: false
             remember_roles:
               authenticated: authenticated
-          is_grouped: false
+            required: false
+            use_operator: false
+          exposed: false
+          field: promote
+          group: 1
           group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
             default_group: All
             default_group_multiple: {  }
+            description: ''
             group_items: {  }
-        status:
-          id: status
+            identifier: ''
+            label: ''
+            multiple: false
+            optional: true
+            remember: false
+            widget: select
+          group_type: group
+          id: promote
+          is_grouped: false
+          operator: '='
+          relationship: none
           table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
           value: '1'
-          group: 1
+          plugin_id: boolean
+          entity_type: node
+          entity_field: promote
+        status:
           expose:
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
+          field: status
+          group: 1
+          id: status
+          table: node_field_data
+          value: '1'
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
         langcode:
           id: langcode
           table: node_field_data
@@ -194,9 +130,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
           operator: in
           value:
             '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -208,8 +141,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -229,6 +160,72 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
+      pager:
+        type: full
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+            first: '« First'
+            last: 'Last »'
+          quantity: 9
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      row:
+        type: 'entity:node'
+        options:
+          view_mode: teaser
+      sorts:
+        sticky:
+          admin_label: ''
+          expose:
+            label: ''
+          exposed: false
+          field: sticky
+          group_type: group
+          id: sticky
+          order: DESC
+          relationship: none
+          table: node_field_data
+          plugin_id: boolean
+          entity_type: node
+          entity_field: sticky
+        created:
+          field: created
+          id: created
+          order: DESC
+          table: node_field_data
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          entity_type: node
+          entity_field: created
       style:
         type: default
         options:
@@ -236,79 +233,73 @@ display:
           row_class: ''
           default_row_class: true
           uses_fields: false
-      row:
-        type: 'entity:node'
-        options:
-          view_mode: teaser
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
+      title: ''
       header: {  }
       footer: {  }
+      relationships: {  }
+      fields: {  }
+      arguments: {  }
       display_extenders: {  }
+    display_plugin: default
+    display_title: Master
+    id: default
+    position: 0
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   feed_1:
+    display_plugin: feed
     id: feed_1
     display_title: Feed
-    display_plugin: feed
     position: 2
     display_options:
+      sitename_title: true
+      path: rss.xml
+      displays:
+        page_1: page_1
+        default: ''
       pager:
         type: some
         options:
-          offset: 0
           items_per_page: 10
+          offset: 0
       style:
         type: rss
         options:
+          description: ''
           grouping: {  }
           uses_fields: false
-          description: ''
       row:
         type: node_rss
         options:
           relationship: none
           view_mode: rss
       display_extenders: {  }
-      path: rss.xml
-      sitename_title: true
-      displays:
-        page_1: page_1
-        default: ''
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   page_1:
-    id: page_1
-    display_title: Page
-    display_plugin: page
-    position: 1
     display_options:
-      enabled: false
-      display_extenders: {  }
       path: node
+      display_extenders: {  }
+    display_plugin: page
+    display_title: Page
+    id: page_1
+    position: 1
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/views.view.gleanings_new.yml b/config/sync/views.view.gleanings_new.yml
deleted file mode 100644
index fbd3579..0000000
--- a/config/sync/views.view.gleanings_new.yml
+++ /dev/null
@@ -1,328 +0,0 @@
-uuid: 7d4503b9-43de-41b1-a24c-74015b1f41b6
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.card
-    - node.type.gleaning
-    - system.menu.main
-  module:
-    - node
-    - user
-id: gleanings_new
-label: Gleanings
-module: views
-description: ''
-tag: ''
-base_table: node_field_data
-base_field: nid
-display:
-  default:
-    id: default
-    display_title: Master
-    display_plugin: default
-    position: 0
-    display_options:
-      title: Gleanings
-      fields:
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: field
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-      pager:
-        type: mini
-        options:
-          offset: 0
-          items_per_page: 24
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
-      sorts:
-        created:
-          id: created
-          table: node_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
-      arguments: {  }
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          value:
-            gleaning: gleaning
-          expose:
-            operator_limit_selection: false
-            operator_list: {  }
-      style:
-        type: default
-      row:
-        type: 'entity:node'
-        options:
-          relationship: none
-          view_mode: card
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  block_promoted:
-    id: block_promoted
-    display_title: Block
-    display_plugin: block
-    position: 2
-    display_options:
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 4
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          value:
-            gleaning: gleaning
-          expose:
-            operator_limit_selection: false
-            operator_list: {  }
-        promote:
-          id: promote
-          table: node_field_data
-          field: promote
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: promote
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        pager: false
-        filters: false
-        filter_groups: false
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  page_listing:
-    id: page_listing
-    display_title: Page
-    display_plugin: page
-    position: 1
-    display_options:
-      pager:
-        type: full
-        options:
-          offset: 0
-          items_per_page: 24
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-          pagination_heading_level: h4
-      defaults:
-        pager: false
-      display_extenders: {  }
-      path: gleanings
-      menu:
-        type: normal
-        title: Gleanings
-        description: 'Short content and excerpts from, and links to, other sites.'
-        weight: -47
-        enabled: true
-        expanded: false
-        menu_name: main
-        parent: 'menu_link_content:ca732f05-d1f6-4704-a192-c2aeefa50410'
-        context: '0'
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.glossary.yml b/config/sync/views.view.glossary.yml
index 6c75d63..1c4ec54 100644
--- a/config/sync/views.view.glossary.yml
+++ b/config/sync/views.view.glossary.yml
@@ -16,24 +16,67 @@ description: 'All content, by letter.'
 tag: default
 base_table: node_field_data
 base_field: nid
+core: '8'
 display:
   default:
     id: default
-    display_title: Default
+    display_title: Master
     display_plugin: default
     position: 0
     display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: ''
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_tags: {  }
+      use_ajax: true
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 36
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
       fields:
         title:
           id: title
           table: node_field_data
           field: title
+          plugin_id: field
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: field
           label: Title
           exclude: false
           alter:
@@ -75,17 +118,18 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          entity_type: node
+          entity_field: title
         name:
           id: name
           table: users_field_data
           field: name
+          label: Author
           relationship: uid
+          plugin_id: field
+          type: user_name
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
-          label: Author
           exclude: false
           alter:
             alter_text: false
@@ -126,157 +170,147 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
-          type: user_name
+          entity_type: user
+          entity_field: name
         changed:
           id: changed
           table: node_field_data
           field: changed
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: changed
-          plugin_id: field
           label: 'Last update'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
           type: timestamp
           settings:
             date_format: long
             custom_date_format: ''
             timezone: ''
-            tooltip:
-              date_format: ''
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 36
-          total_pages: 0
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
-      sorts: {  }
+          plugin_id: field
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: 0
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          entity_type: node
+          entity_field: changed
       arguments:
         title:
           id: title
           table: node_field_data
           field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: string
           default_action: default
           exception:
             title_enable: true
-          title_enable: false
-          title: ''
           default_argument_type: fixed
           default_argument_options:
             argument: a
-          summary_options: {  }
           summary:
             format: default_summary
           specify_validation: true
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
           glossary: true
           limit: 1
           case: upper
           path_case: lower
           transform_dash: false
+          plugin_id: string
+          relationship: none
+          group_type: group
+          admin_label: ''
+          title_enable: false
+          title: ''
+          default_argument_skip_url: false
+          summary_options: {  }
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
           break_phrase: false
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
           entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
+          entity_field: title
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          plugin_id: standard
+          relationship: none
+          group_type: group
+          admin_label: author
+          required: false
+      style:
+        type: table
+        options:
+          columns:
+            title: title
+            name: name
+            changed: changed
+          default: title
+          info:
+            title:
+              sortable: true
+              separator: ''
+            name:
+              sortable: true
+              separator: ''
+            changed:
+              sortable: true
+              separator: ''
+          override: true
+          sticky: false
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          uses_fields: false
+          order: asc
+          summary: ''
+          empty_table: false
+      row:
+        type: fields
+        options:
+          inline: {  }
+          separator: ''
+          hide_empty: false
+          default_field_elements: true
+      header: {  }
+      footer: {  }
+      empty: {  }
+      sorts: {  }
+      filters:
         langcode:
           id: langcode
           table: node_field_data
@@ -284,9 +318,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
           operator: in
           value:
             '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -298,8 +329,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -319,64 +348,11 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          uses_fields: false
-          columns:
-            title: title
-            name: name
-            changed: changed
-          default: title
-          info:
-            title:
-              sortable: true
-              separator: ''
-            name:
-              sortable: true
-              separator: ''
-            changed:
-              sortable: true
-              separator: ''
-          override: true
-          sticky: false
-          summary: ''
-          order: asc
-          empty_table: false
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships:
-        uid:
-          id: uid
-          table: node_field_data
-          field: uid
-          relationship: none
-          group_type: group
-          admin_label: author
-          plugin_id: standard
-          required: false
-      use_ajax: true
-      header: {  }
-      footer: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
@@ -384,6 +360,7 @@ display:
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: 0
       tags: {  }
   attachment_1:
     id: attachment_1
@@ -391,59 +368,59 @@ display:
     display_plugin: attachment
     position: 2
     display_options:
+      query:
+        type: views_query
+        options: {  }
       pager:
         type: none
         options:
           offset: 0
           items_per_page: 0
+      defaults:
+        arguments: false
       arguments:
         title:
           id: title
           table: node_field_data
           field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: string
           default_action: summary
           exception:
             title_enable: true
-          title_enable: false
-          title: ''
           default_argument_type: fixed
           default_argument_options:
             argument: a
+          summary:
+            format: unformatted_summary
           summary_options:
             items_per_page: 25
             inline: true
             separator: ' | '
-          summary:
-            format: unformatted_summary
           specify_validation: true
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
           glossary: true
           limit: 1
           case: upper
           path_case: lower
           transform_dash: false
+          plugin_id: string
+          relationship: none
+          group_type: group
+          admin_label: ''
+          title_enable: false
+          title: ''
+          default_argument_skip_url: false
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
           break_phrase: false
-      query:
-        type: views_query
-        options: {  }
-      defaults:
-        arguments: false
-      display_extenders: {  }
+          entity_type: node
+          entity_field: title
       displays:
         default: default
         page_1: page_1
       inherit_arguments: false
+      display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
@@ -451,6 +428,7 @@ display:
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: 0
       tags: {  }
   page_1:
     id: page_1
@@ -461,7 +439,6 @@ display:
       query:
         type: views_query
         options: {  }
-      display_extenders: {  }
       path: glossary
       menu:
         type: normal
@@ -469,8 +446,8 @@ display:
         weight: 0
         menu_name: main
         parent: ''
+      display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
@@ -478,4 +455,5 @@ display:
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: 0
       tags: {  }
diff --git a/config/sync/views.view.home_page_views.yml b/config/sync/views.view.home_page_views.yml
deleted file mode 100644
index fa02685..0000000
--- a/config/sync/views.view.home_page_views.yml
+++ /dev/null
@@ -1,597 +0,0 @@
-uuid: 49170534-5d80-4f6c-b492-03ecb1ebaa26
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.node.card
-    - node.type.article
-    - node.type.blog
-    - node.type.collection
-    - node.type.gleaning
-  module:
-    - node
-    - user
-id: home_page_views
-label: 'Home page views'
-module: views
-description: 'Blocks with rows of cards, four each, for the home page.'
-tag: ''
-base_table: node_field_data
-base_field: nid
-display:
-  default:
-    id: default
-    display_title: Master
-    display_plugin: default
-    position: 0
-    display_options:
-      title: 'Latest articles'
-      fields:
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: field
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-      pager:
-        type: some
-        options:
-          offset: 0
-          items_per_page: 4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
-      sorts:
-        created:
-          id: created
-          table: node_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
-      arguments: {  }
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          value:
-            article: article
-          expose:
-            operator_limit_selection: false
-            operator_list: {  }
-      style:
-        type: default
-        options:
-          row_class: ''
-          default_row_class: false
-          uses_fields: false
-      row:
-        type: 'entity:node'
-        options:
-          relationship: none
-          view_mode: card
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  block_articles:
-    id: block_articles
-    display_title: 'Articles block'
-    display_plugin: block
-    position: 1
-    display_options:
-      defaults:
-        use_more: false
-        use_more_always: false
-        use_more_text: false
-        link_display: false
-        link_url: false
-      display_description: ''
-      use_more: true
-      use_more_always: true
-      use_more_text: 'More articles'
-      link_display: custom_url
-      link_url: articles
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  block_blogs:
-    id: block_blogs
-    display_title: 'Blog block'
-    display_plugin: block
-    position: 1
-    display_options:
-      title: 'Latest blogs'
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value:
-            blog: blog
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        title: false
-        use_more: false
-        use_more_always: false
-        use_more_text: false
-        link_display: false
-        link_url: false
-        filters: false
-        filter_groups: false
-      display_description: ''
-      use_more: true
-      use_more_always: true
-      use_more_text: 'More blog posts'
-      link_display: custom_url
-      link_url: blog
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  block_collections:
-    id: block_collections
-    display_title: 'Collection block'
-    display_plugin: block
-    position: 1
-    display_options:
-      title: 'Latest issues and movement pages'
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value:
-            collection: collection
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        title: false
-        use_more: false
-        use_more_always: false
-        use_more_text: false
-        link_display: false
-        link_url: false
-        filters: false
-        filter_groups: false
-      display_description: ''
-      use_more: true
-      use_more_always: true
-      use_more_text: 'More issues and other collections'
-      link_display: custom_url
-      link_url: collections
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  block_featured:
-    id: block_featured
-    display_title: 'Featured content block'
-    display_plugin: block
-    position: 5
-    display_options:
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value:
-            article: article
-            blog: blog
-            collection: collection
-            gleaning: gleaning
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        sticky:
-          id: sticky
-          table: node_field_data
-          field: sticky
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: sticky
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        filters: false
-        filter_groups: false
-      display_description: ''
-      display_extenders: {  }
-      block_description: 'Featured content block'
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  block_gleanings:
-    id: block_gleanings
-    display_title: 'Gleaning block'
-    display_plugin: block
-    position: 1
-    display_options:
-      title: 'Latest gleanings'
-      filters:
-        status:
-          id: status
-          table: node_field_data
-          field: status
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
-          expose:
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value:
-            gleaning: gleaning
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        title: false
-        use_more: false
-        use_more_always: false
-        use_more_text: false
-        link_display: false
-        link_url: false
-        filters: false
-        filter_groups: false
-      display_description: ''
-      use_more: true
-      use_more_always: true
-      use_more_text: 'More gleanings'
-      link_display: custom_url
-      link_url: gleanings
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.media.yml b/config/sync/views.view.media.yml
deleted file mode 100644
index 4c8b890..0000000
--- a/config/sync/views.view.media.yml
+++ /dev/null
@@ -1,920 +0,0 @@
-uuid: 71e86700-bf49-4e76-81df-522007971b1f
-langcode: en
-status: true
-dependencies:
-  config:
-    - image.style.thumbnail
-  module:
-    - image
-    - media
-    - user
-_core:
-  default_config_hash: 27loqXfECE8tWznkMVYi7qOU8oCYFgn5MEysgZQQOV8
-id: media
-label: Media
-module: views
-description: 'Find and manage media.'
-tag: ''
-base_table: media_field_data
-base_field: mid
-display:
-  default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
-    display_options:
-      title: Media
-      fields:
-        media_bulk_form:
-          id: media_bulk_form
-          table: media
-          field: media_bulk_form
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: bulk_form
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          action_title: Action
-          include_exclude: exclude
-          selected_actions: {  }
-        thumbnail__target_id:
-          id: thumbnail__target_id
-          table: media_field_data
-          field: thumbnail__target_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: thumbnail
-          plugin_id: field
-          label: Thumbnail
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: target_id
-          type: image
-          settings:
-            image_link: ''
-            image_style: thumbnail
-            image_loading:
-              attribute: lazy
-          group_column: ''
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: media
-          plugin_id: field
-          label: 'Media name'
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        bundle:
-          id: bundle
-          table: media_field_data
-          field: bundle
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: bundle
-          plugin_id: field
-          label: Type
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: target_id
-          type: entity_reference_label
-          settings:
-            link: false
-          group_column: target_id
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        uid:
-          id: uid
-          table: media_field_data
-          field: uid
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: uid
-          plugin_id: field
-          label: Author
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: target_id
-          type: entity_reference_label
-          settings:
-            link: true
-          group_column: target_id
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        status:
-          id: status
-          table: media_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: status
-          plugin_id: field
-          label: Status
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: boolean
-          settings:
-            format: custom
-            format_custom_false: Unpublished
-            format_custom_true: Published
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        changed:
-          id: changed
-          table: media_field_data
-          field: changed
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: changed
-          plugin_id: field
-          label: Updated
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: timestamp
-          settings:
-            date_format: short
-            custom_date_format: ''
-            timezone: ''
-            tooltip:
-              date_format: long
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        operations:
-          id: operations
-          table: media
-          field: operations
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: entity_operations
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          destination: true
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: null
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Filter
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access media overview'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'No media available.'
-          tokenize: false
-      sorts:
-        created:
-          id: created
-          table: media_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
-      arguments: {  }
-      filters:
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: name_op
-            label: 'Media name'
-            description: ''
-            use_operator: false
-            operator: name_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: name
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        bundle:
-          id: bundle
-          table: media_field_data
-          field: bundle
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: bundle
-          plugin_id: bundle
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: bundle_op
-            label: Type
-            description: ''
-            use_operator: false
-            operator: bundle_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: type
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        status:
-          id: status
-          table: media_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: status
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: true
-          expose:
-            operator_id: ''
-            label: 'True'
-            description: null
-            use_operator: false
-            operator: status_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: status
-            required: true
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: true
-          group_info:
-            label: 'Published status'
-            description: ''
-            identifier: status
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items:
-              1:
-                title: Published
-                operator: '='
-                value: '1'
-              2:
-                title: Unpublished
-                operator: '='
-                value: '0'
-        status_extra:
-          id: status_extra
-          table: media_field_data
-          field: status_extra
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: media_status
-          operator: '='
-          value: ''
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        langcode:
-          id: langcode
-          table: media_field_data
-          field: langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: langcode
-          plugin_id: language
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: langcode_op
-            label: Language
-            description: ''
-            use_operator: false
-            operator: langcode_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: langcode
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            name: name
-            bundle: bundle
-            changed: changed
-            uid: uid
-            status: status
-            thumbnail__target_id: thumbnail__target_id
-          default: changed
-          info:
-            name:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            bundle:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            changed:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            uid:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            status:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            thumbnail__target_id:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: true
-          caption: ''
-          description: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: 0
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - user
-        - user.permissions
-      tags: {  }
-  media_page_list:
-    id: media_page_list
-    display_title: Media
-    display_plugin: page
-    position: 1
-    display_options:
-      display_description: ''
-      display_extenders: {  }
-      path: admin/content/media
-      menu:
-        type: tab
-        title: Media
-        description: ''
-        weight: 0
-        expanded: false
-        menu_name: main
-        parent: ''
-        context: '0'
-    cache_metadata:
-      max-age: 0
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - user
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.media_library.yml b/config/sync/views.view.media_library.yml
deleted file mode 100644
index 2cdc53c..0000000
--- a/config/sync/views.view.media_library.yml
+++ /dev/null
@@ -1,1402 +0,0 @@
-uuid: b87497b5-3da0-46c8-b315-6f6340ebe131
-langcode: en
-status: true
-dependencies:
-  config:
-    - core.entity_view_mode.media.media_library
-    - image.style.media_library
-  module:
-    - image
-    - media
-    - media_library
-    - user
-  enforced:
-    module:
-      - media_library
-_core:
-  default_config_hash: iFhkNhGoobQ7V0PJEH_Io9Vlli35kiaeQfdqUttfQeU
-id: media_library
-label: 'Media library'
-module: views
-description: 'Find and manage media.'
-tag: ''
-base_table: media_field_data
-base_field: mid
-display:
-  default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
-    display_options:
-      title: Media
-      fields:
-        media_bulk_form:
-          id: media_bulk_form
-          table: media
-          field: media_bulk_form
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: bulk_form
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          action_title: Action
-          include_exclude: exclude
-          selected_actions: {  }
-        rendered_entity:
-          id: rendered_entity
-          table: media
-          field: rendered_entity
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: rendered_entity
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          view_mode: media_library
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 24
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '6, 12, 24, 48'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: 'Apply filters'
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: false
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access media overview'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'No media available.'
-          tokenize: false
-      sorts:
-        created:
-          id: created
-          table: media_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: 'Newest first'
-            field_identifier: created
-          exposed: true
-          granularity: second
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: standard
-          order: ASC
-          expose:
-            label: 'Name (A-Z)'
-            field_identifier: name
-          exposed: true
-        name_1:
-          id: name_1
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: standard
-          order: DESC
-          expose:
-            label: 'Name (Z-A)'
-            field_identifier: name_1
-          exposed: true
-      filters:
-        status:
-          id: status
-          table: media_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: status
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: true
-          expose:
-            operator_id: ''
-            label: 'Publishing status'
-            description: null
-            use_operator: false
-            operator: status_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: status
-            required: true
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: true
-          group_info:
-            label: Published
-            description: ''
-            identifier: status
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items:
-              1:
-                title: Published
-                operator: '='
-                value: '1'
-              2:
-                title: Unpublished
-                operator: '='
-                value: '0'
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: name_op
-            label: Name
-            description: ''
-            use_operator: false
-            operator: name_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: name
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        bundle:
-          id: bundle
-          table: media_field_data
-          field: bundle
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: bundle
-          plugin_id: bundle
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: bundle_op
-            label: 'Media type'
-            description: ''
-            use_operator: false
-            operator: bundle_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: type
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: 'Media type'
-            description: null
-            identifier: bundle
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items:
-              1: {  }
-              2: {  }
-              3: {  }
-        status_extra:
-          id: status_extra
-          table: media_field_data
-          field: status_extra
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: media_status
-          operator: '='
-          value: ''
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        langcode:
-          id: langcode
-          table: media_field_data
-          field: langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: langcode
-          plugin_id: language
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: langcode_op
-            label: Language
-            description: ''
-            use_operator: false
-            operator: langcode_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: langcode
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      style:
-        type: default
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      css_class: ''
-      use_ajax: true
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: 0
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'url.query_args:sort_by'
-        - user
-        - user.permissions
-      tags: {  }
-  page:
-    id: page
-    display_title: Page
-    display_plugin: page
-    position: 1
-    display_options:
-      fields:
-        media_bulk_form:
-          id: media_bulk_form
-          table: media
-          field: media_bulk_form
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: bulk_form
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          action_title: Action
-          include_exclude: exclude
-          selected_actions: {  }
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: field
-          label: ''
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: false
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        edit_media:
-          id: edit_media
-          table: media
-          field: edit_media
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: entity_link_edit
-          label: ''
-          exclude: false
-          alter:
-            alter_text: true
-            text: 'Edit {{ name }}'
-            make_link: true
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: 'Edit {{ name }}'
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: '0'
-          element_wrapper_class: ''
-          element_default_classes: false
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          text: Edit
-          output_url_as_text: false
-          absolute: false
-        delete_media:
-          id: delete_media
-          table: media
-          field: delete_media
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: entity_link_delete
-          label: ''
-          exclude: false
-          alter:
-            alter_text: true
-            text: 'Delete {{ name }}'
-            make_link: true
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: 'Delete {{ name }}'
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: '0'
-          element_wrapper_class: ''
-          element_default_classes: false
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          text: Delete
-          output_url_as_text: false
-          absolute: false
-        rendered_entity:
-          id: rendered_entity
-          table: media
-          field: rendered_entity
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: rendered_entity
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          view_mode: media_library
-      defaults:
-        fields: false
-      display_extenders: {  }
-      path: admin/content/media-grid
-    cache_metadata:
-      max-age: 0
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'url.query_args:sort_by'
-        - user
-        - user.permissions
-      tags: {  }
-  widget:
-    id: widget
-    display_title: Widget
-    display_plugin: page
-    position: 2
-    display_options:
-      fields:
-        media_library_select_form:
-          id: media_library_select_form
-          table: media
-          field: media_library_select_form
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: media_library_select_form
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        rendered_entity:
-          id: rendered_entity
-          table: media
-          field: rendered_entity
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          plugin_id: rendered_entity
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          view_mode: media_library
-      access:
-        type: perm
-        options:
-          perm: 'view media'
-      arguments:
-        bundle:
-          id: bundle
-          table: media_field_data
-          field: bundle
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: bundle
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 24
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      filters:
-        status:
-          id: status
-          table: media_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: status
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: name_op
-            label: Name
-            description: ''
-            use_operator: false
-            operator: name_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: name
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        default_langcode:
-          id: default_langcode
-          table: media_field_data
-          field: default_langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: default_langcode
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        access: false
-        css_class: false
-        fields: false
-        arguments: false
-        filters: false
-        filter_groups: false
-        header: false
-      css_class: ''
-      display_description: ''
-      header:
-        display_link_grid:
-          id: display_link_grid
-          table: views
-          field: display_link
-          plugin_id: display_link
-          label: Grid
-          empty: true
-          display_id: widget
-        display_link_table:
-          id: display_link_table
-          table: views
-          field: display_link
-          plugin_id: display_link
-          label: Table
-          empty: true
-          display_id: widget_table
-      rendering_language: '***LANGUAGE_language_interface***'
-      display_extenders: {  }
-      path: admin/content/media-widget
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'url.query_args:sort_by'
-        - user.permissions
-      tags: {  }
-  widget_table:
-    id: widget_table
-    display_title: 'Widget (table)'
-    display_plugin: page
-    position: 3
-    display_options:
-      fields:
-        media_library_select_form:
-          id: media_library_select_form
-          table: media
-          field: media_library_select_form
-          relationship: none
-          entity_type: media
-          plugin_id: media_library_select_form
-          label: ''
-          element_class: ''
-          element_wrapper_class: ''
-        thumbnail__target_id:
-          id: thumbnail__target_id
-          table: media_field_data
-          field: thumbnail__target_id
-          relationship: none
-          entity_type: media
-          entity_field: thumbnail
-          plugin_id: field
-          label: Thumbnail
-          type: image
-          settings:
-            image_link: ''
-            image_style: media_library
-            image_loading:
-              attribute: eager
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          entity_type: media
-          entity_field: name
-          plugin_id: field
-          label: Name
-          type: string
-          settings:
-            link_to_entity: false
-        uid:
-          id: uid
-          table: media_field_revision
-          field: uid
-          relationship: none
-          entity_type: media
-          entity_field: uid
-          plugin_id: field
-          label: Author
-          type: entity_reference_label
-          settings:
-            link: true
-        changed:
-          id: changed
-          table: media_field_data
-          field: changed
-          relationship: none
-          entity_type: media
-          entity_field: changed
-          plugin_id: field
-          label: Updated
-          type: timestamp
-          settings:
-            date_format: short
-            custom_date_format: ''
-            timezone: ''
-            tooltip:
-              date_format: long
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-      access:
-        type: perm
-        options:
-          perm: 'view media'
-      arguments:
-        bundle:
-          id: bundle
-          table: media_field_data
-          field: bundle
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: bundle
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 24
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      filters:
-        status:
-          id: status
-          table: media_field_data
-          field: status
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: status
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        name:
-          id: name
-          table: media_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: name
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: name_op
-            label: Name
-            description: ''
-            use_operator: false
-            operator: name_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: name
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        default_langcode:
-          id: default_langcode
-          table: media_field_data
-          field: default_langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: media
-          entity_field: default_langcode
-          plugin_id: boolean
-          operator: '='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      style:
-        type: table
-        options:
-          row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select'
-          default_row_class: true
-      row:
-        type: fields
-      defaults:
-        access: false
-        css_class: false
-        style: false
-        row: false
-        fields: false
-        arguments: false
-        filters: false
-        filter_groups: false
-        header: false
-      css_class: ''
-      header:
-        display_link_grid:
-          id: display_link_grid
-          table: views
-          field: display_link
-          plugin_id: display_link
-          label: Grid
-          empty: true
-          display_id: widget
-        display_link_table:
-          id: display_link_table
-          table: views
-          field: display_link
-          plugin_id: display_link
-          label: Table
-          empty: true
-          display_id: widget_table
-      rendering_language: '***LANGUAGE_language_interface***'
-      display_extenders: {  }
-      path: admin/content/media-widget-table
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'url.query_args:sort_by'
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.moderated_content.yml b/config/sync/views.view.moderated_content.yml
deleted file mode 100644
index 64087b5..0000000
--- a/config/sync/views.view.moderated_content.yml
+++ /dev/null
@@ -1,843 +0,0 @@
-uuid: 82109386-a0e8-4a0a-bd0c-eab6e18fd02a
-langcode: en
-status: true
-dependencies:
-  module:
-    - node
-    - user
-  enforced:
-    module:
-      - content_moderation
-_core:
-  default_config_hash: 7olvKOaJNf15B-Bj4eD1wJyaz4BR7CNA9cEjWBssa2Y
-id: moderated_content
-label: 'Moderated content'
-module: views
-description: 'Find and moderate content.'
-tag: ''
-base_table: node_field_revision
-base_field: vid
-display:
-  default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
-    display_options:
-      title: 'Moderated content'
-      fields:
-        title:
-          id: title
-          table: node_field_revision
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: field
-          label: Title
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: false
-            ellipsis: false
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: nid
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: field
-          label: 'Content type'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: target_id
-          type: entity_reference_label
-          settings:
-            link: false
-          group_column: target_id
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        name:
-          id: name
-          table: users_field_data
-          field: name
-          relationship: uid
-          group_type: group
-          admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
-          label: Author
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: user_name
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        moderation_state:
-          id: moderation_state
-          table: node_field_revision
-          field: moderation_state
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: field
-          label: 'Moderation state'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: content_moderation_state
-          settings: {  }
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        changed:
-          id: changed
-          table: node_field_revision
-          field: changed
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: changed
-          plugin_id: field
-          label: Updated
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: false
-            ellipsis: false
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: timestamp
-          settings:
-            date_format: short
-            custom_date_format: ''
-            timezone: ''
-            tooltip:
-              date_format: long
-              custom_date_format: ''
-            time_diff:
-              enabled: false
-              future_format: '@interval hence'
-              past_format: '@interval ago'
-              granularity: 2
-              refresh: 60
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-        operations:
-          id: operations
-          table: node_revision
-          field: operations
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: entity_operations
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          destination: true
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: null
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Filter
-          reset_button: true
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'view any unpublished content'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'No moderated content available. Only pending versions of content, such as drafts, are listed here.'
-          tokenize: false
-      sorts: {  }
-      arguments: {  }
-      filters:
-        latest_translation_affected_revision:
-          id: latest_translation_affected_revision
-          table: node_revision
-          field: latest_translation_affected_revision
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: latest_translation_affected_revision
-          operator: '='
-          value: ''
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        title:
-          id: title
-          table: node_field_revision
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: string
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: title_op
-            label: Title
-            description: ''
-            use_operator: false
-            operator: title_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: title
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        type:
-          id: type
-          table: node_field_data
-          field: type
-          relationship: nid
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: type
-          plugin_id: bundle
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: type_op
-            label: 'Content type'
-            description: ''
-            use_operator: false
-            operator: type_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: type
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        moderation_state:
-          id: moderation_state
-          table: node_field_revision
-          field: moderation_state
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: moderation_state_filter
-          operator: in
-          value:
-            editorial-draft: editorial-draft
-            editorial-archived: editorial-archived
-          group: 1
-          exposed: true
-          expose:
-            operator_id: moderation_state_op
-            label: 'Moderation state'
-            description: ''
-            use_operator: false
-            operator: moderation_state_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: moderation_state
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: true
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        langcode:
-          id: langcode
-          table: node_field_revision
-          field: langcode
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
-          operator: in
-          value: {  }
-          group: 1
-          exposed: true
-          expose:
-            operator_id: langcode_op
-            label: Language
-            description: ''
-            use_operator: false
-            operator: langcode_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: langcode
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        moderation_state_1:
-          id: moderation_state_1
-          table: node_field_revision
-          field: moderation_state
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: moderation_state_filter
-          operator: 'not in'
-          value:
-            editorial-published: editorial-published
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            reduce: false
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            title: title
-            type: type
-            name: name
-            moderation_state: moderation_state
-            changed: changed
-          default: changed
-          info:
-            title:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            type:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            name:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            moderation_state:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            changed:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: true
-          caption: ''
-          description: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships:
-        nid:
-          id: nid
-          table: node_field_revision
-          field: nid
-          relationship: none
-          group_type: group
-          admin_label: 'Get the actual content from a content revision.'
-          entity_type: node
-          entity_field: nid
-          plugin_id: standard
-          required: false
-        uid:
-          id: uid
-          table: node_field_revision
-          field: uid
-          relationship: none
-          group_type: group
-          admin_label: User
-          entity_type: node
-          entity_field: uid
-          plugin_id: standard
-          required: false
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
-  moderated_content:
-    id: moderated_content
-    display_title: 'Moderated content'
-    display_plugin: page
-    position: 1
-    display_options:
-      display_description: ''
-      display_extenders: {  }
-      path: admin/content/moderated
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_content'
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-        - 'user.node_grants:view'
-        - user.permissions
-      tags: {  }
diff --git a/config/sync/views.view.people.yml b/config/sync/views.view.people.yml
index 2e71249..b829e56 100644
--- a/config/sync/views.view.people.yml
+++ b/config/sync/views.view.people.yml
@@ -9,7 +9,6 @@ dependencies:
   module:
     - search_api
     - user
-    - views_plain
 _core:
   default_config_hash: 72LPS7fct6h0DmYlM4FLFPTVPyzvV2TQLMw9I_5eLk4
 id: people
@@ -19,14 +18,57 @@ description: 'Displays for the people content type.'
 tag: ''
 base_table: search_api_index_people
 base_field: search_api_id
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: Contributors
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: none
+        options: {  }
+      query:
+        type: views_query
+        options:
+          bypass_access: false
+          skip_access: false
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: none
+        options:
+          offset: 0
+      style:
+        type: default
+        options:
+          grouping:
+            -
+              field: field_people_type
+              rendered: true
+              rendered_strip: false
+          row_class: ''
+          default_row_class: false
+          uses_fields: true
+      row:
+        type: search_api
+        options:
+          view_modes:
+            'entity:node':
+              people: small_card
       fields:
         field_people_type:
           id: field_people_type
@@ -35,8 +77,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          plugin_id: search_api_field
           label: ''
           exclude: true
           alter:
@@ -116,6 +156,8 @@ display:
                 display_method: label
               topics:
                 display_method: label
+          entity_type: node
+          plugin_id: search_api_field
         title:
           id: title
           table: search_api_datasource_people_entity_node
@@ -123,8 +165,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          plugin_id: search_api_field
           label: ''
           exclude: false
           alter:
@@ -187,28 +227,9 @@ display:
             use_highlighting: false
             multi_type: separator
             multi_separator: ', '
-      pager:
-        type: none
-        options:
-          offset: 0
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access content'
-      cache:
-        type: search_api_none
-        options: {  }
-      empty: {  }
+          entity_type: node
+          plugin_id: search_api_field
+      filters: {  }
       sorts:
         field_people_type:
           id: field_people_type
@@ -217,12 +238,11 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: search_api
           order: ASC
+          exposed: false
           expose:
             label: ''
-            field_identifier: field_people_type
-          exposed: false
+          plugin_id: search_api
         created:
           id: created
           table: search_api_index_people
@@ -230,53 +250,30 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: search_api
           order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
-      arguments: {  }
-      filters: {  }
-      style:
-        type: plain_style
-        options:
-          grouping:
-            -
-              field: field_people_type
-              rendered: true
-              rendered_strip: false
-          uses_fields: true
-      row:
-        type: search_api
-        options:
-          view_modes:
-            'entity:node':
-              people: teaser
-      query:
-        type: search_api_query
-        options:
-          bypass_access: false
-          skip_access: false
-      relationships: {  }
+          plugin_id: search_api
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
+      title: 'Our people'
     cache_metadata:
       max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
-        - 'user.node_grants:view'
         - user.permissions
       tags:
         - 'config:field.storage.node.field_people_type'
-        - 'config:search_api.index.people'
-        - 'search_api_list:people'
   page_listing:
+    display_plugin: page
     id: page_listing
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
       display_extenders: {  }
@@ -285,20 +282,16 @@ display:
         type: normal
         title: People
         description: 'Learn about our team'
-        weight: -47
-        enabled: false
         expanded: false
-        menu_name: main
         parent: 'menu_link_content:33435872-bdbe-4833-9477-c057c2c33359'
+        weight: 0
         context: '0'
+        menu_name: main
     cache_metadata:
       max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
-        - 'user.node_grants:view'
         - user.permissions
       tags:
         - 'config:field.storage.node.field_people_type'
-        - 'config:search_api.index.people'
-        - 'search_api_list:people'
diff --git a/config/sync/views.view.redirect.yml b/config/sync/views.view.redirect.yml
index 09bec09..9cbebe5 100644
--- a/config/sync/views.view.redirect.yml
+++ b/config/sync/views.view.redirect.yml
@@ -15,14 +15,125 @@ description: 'List of redirects'
 tag: ''
 base_table: redirect
 base_field: rid
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
-      title: Redirect
+      access:
+        type: perm
+        options:
+          perm: 'administer redirects'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: null
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+            first: '« first'
+            last: 'last »'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          quantity: 9
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            redirect_source__path: redirect_source__path
+            redirect_redirect__uri: redirect_redirect__uri
+            status_code: status_code
+            language: language
+            created: created
+            operations: operations
+          info:
+            redirect_source__path:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            redirect_redirect__uri:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            status_code:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            language:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            created:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            operations:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: created
+          empty_table: false
+      row:
+        type: fields
       fields:
         redirect_bulk_form:
           id: redirect_bulk_form
@@ -31,8 +142,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          plugin_id: redirect_bulk_form
           label: ''
           exclude: false
           alter:
@@ -77,6 +186,8 @@ display:
           action_title: 'With selection'
           include_exclude: exclude
           selected_actions: {  }
+          entity_type: redirect
+          plugin_id: redirect_bulk_form
         redirect_source__path:
           id: redirect_source__path
           table: redirect
@@ -84,9 +195,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          entity_field: redirect_source
-          plugin_id: field
           label: From
           exclude: false
           alter:
@@ -141,6 +249,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: redirect
+          entity_field: redirect_source
+          plugin_id: field
         redirect_redirect__uri:
           id: redirect_redirect__uri
           table: redirect
@@ -169,9 +280,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          entity_field: created
-          plugin_id: date
           label: Created
           exclude: false
           alter:
@@ -216,65 +324,15 @@ display:
           date_format: fallback
           custom_date_format: ''
           timezone: ''
+          entity_type: redirect
+          entity_field: created
+          plugin_id: date
         operations:
           id: operations
           table: redirect
           field: operations
           entity_type: redirect
           plugin_id: entity_operations
-      pager:
-        type: full
-        options:
-          offset: 0
-          items_per_page: 50
-          total_pages: null
-          id: 0
-          tags:
-            next: 'next ›'
-            previous: '‹ previous'
-            first: '« first'
-            last: 'last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Filter
-          reset_button: true
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'administer redirects'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'There is no redirect yet.'
-          tokenize: false
-      sorts: {  }
-      arguments: {  }
       filters:
         redirect_source__path:
           id: redirect_source__path
@@ -283,9 +341,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          entity_field: redirect_source
-          plugin_id: string
           operator: contains
           value: ''
           group: 1
@@ -296,8 +351,6 @@ display:
             description: ''
             use_operator: false
             operator: redirect_source__path_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: redirect_source__path
             required: false
             remember: false
@@ -318,6 +371,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: redirect
+          entity_field: redirect_source
+          plugin_id: string
         redirect_redirect__uri:
           id: redirect_redirect__uri
           table: redirect
@@ -325,9 +381,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          entity_field: redirect_redirect
-          plugin_id: string
           operator: contains
           value: ''
           group: 1
@@ -338,8 +391,6 @@ display:
             description: ''
             use_operator: false
             operator: redirect_redirect__uri_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: redirect_redirect__uri
             required: false
             remember: false
@@ -360,6 +411,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: redirect
+          entity_field: redirect_redirect
+          plugin_id: string
         status_code:
           id: status_code
           table: redirect
@@ -367,9 +421,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          entity_field: status_code
-          plugin_id: numeric
           operator: '='
           value:
             min: ''
@@ -383,8 +434,6 @@ display:
             description: ''
             use_operator: false
             operator: status_code_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: status_code
             required: false
             remember: false
@@ -409,51 +458,54 @@ display:
                 title: '300 Multiple Choices'
                 operator: '='
                 value:
+                  value: '300'
                   min: ''
                   max: ''
-                  value: '300'
               2:
                 title: '301 Moved Permanently'
                 operator: '='
                 value:
+                  value: '301'
                   min: ''
                   max: ''
-                  value: '301'
               3:
                 title: '302 Found'
                 operator: '='
                 value:
+                  value: '302'
                   min: ''
                   max: ''
-                  value: '302'
               4:
                 title: '303 See Other'
                 operator: '='
                 value:
+                  value: '303'
                   min: ''
                   max: ''
-                  value: '303'
               5:
                 title: '304 Not Modified'
                 operator: '='
                 value:
+                  value: '304'
                   min: ''
                   max: ''
-                  value: '304'
               6:
                 title: '305 Use Proxy'
                 operator: '='
                 value:
+                  value: '305'
                   min: ''
                   max: ''
-                  value: '305'
               7:
                 title: '307 Temporary Redirect'
                 operator: '='
                 value:
+                  value: '307'
                   min: ''
                   max: ''
-                  value: '307'
+          entity_type: redirect
+          entity_field: status_code
+          plugin_id: numeric
         language:
           id: language
           table: redirect
@@ -461,9 +513,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: redirect
-          entity_field: language
-          plugin_id: language
           operator: in
           value: {  }
           group: 1
@@ -474,8 +523,6 @@ display:
             description: ''
             use_operator: false
             operator: language_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: language
             required: false
             remember: false
@@ -497,112 +544,57 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: redirect
+          entity_field: language
+          plugin_id: language
+      sorts: {  }
+      title: Redirect
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'There is no redirect yet.'
+          plugin_id: text_custom
+      relationships: {  }
+      arguments: {  }
+      display_extenders: {  }
       filter_groups:
         operator: AND
         groups:
           1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            redirect_source__path: redirect_source__path
-            redirect_redirect__uri: redirect_redirect__uri
-            status_code: status_code
-            language: language
-            created: created
-            operations: operations
-          default: created
-          info:
-            redirect_source__path:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            redirect_redirect__uri:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            status_code:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            language:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            created:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            operations:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
-      tags: {  }
       cacheable: false
+      max-age: 0
+      tags: {  }
   page_1:
+    display_plugin: page
     id: page_1
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
       display_extenders: {  }
       path: admin/config/search/redirect
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
-      tags: {  }
       cacheable: false
+      max-age: 0
+      tags: {  }
diff --git a/config/sync/views.view.related_content.yml b/config/sync/views.view.related_content.yml
index 1cd68a3..f7cf14a 100644
--- a/config/sync/views.view.related_content.yml
+++ b/config/sync/views.view.related_content.yml
@@ -17,67 +17,29 @@ description: 'Related content based on similar terms.'
 tag: ''
 base_table: node_field_data
 base_field: nid
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
-      title: 'Related content'
-      fields:
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          entity_field: title
-          plugin_id: field
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          click_sort_column: value
-          type: string
-          settings:
-            link_to_entity: true
-          group_column: value
-          group_columns: {  }
-          group_rows: true
-          delta_limit: 0
-          delta_offset: 0
-          delta_reversed: false
-          delta_first_last: false
-          multi_type: separator
-          separator: ', '
-          field_api_classes: false
-      pager:
-        type: some
+      access:
+        type: perm
         options:
-          offset: 0
-          items_per_page: 4
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
       exposed_form:
         type: basic
         options:
@@ -88,73 +50,70 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: some
         options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
-      sorts:
-        similarterms:
-          id: similarterms
-          table: node
-          field: similarterms
+          items_per_page: 4
+          offset: 0
+      style:
+        type: default
+        options:
+          row_class: ''
+          default_row_class: false
+          uses_fields: false
+      row:
+        type: 'entity:node'
+        options:
+          relationship: none
+          view_mode: simple_card
+      fields:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          entity_type: node
+          entity_field: title
+          label: ''
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          settings:
+            link_to_entity: true
+          plugin_id: field
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          plugin_id: similar_terms_sort
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: similarterms
-          exposed: false
-      arguments:
-        similar_nid:
-          id: similar_nid
-          table: node
-          field: similar_nid
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: node
-          plugin_id: similar_terms_arg
-          default_action: default
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: node
-          default_argument_options: {  }
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          break_phrase: false
-          not: false
-          vocabularies:
-            action_type: '0'
-            article_type: '0'
-            event_type: '0'
-            group_type: '0'
-            people_type: '0'
-            resource_type: '0'
-            tags: '0'
-          include_args: false
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          click_sort_column: value
+          type: string
+          group_column: value
+          group_columns: {  }
+          group_rows: true
+          delta_limit: 0
+          delta_offset: 0
+          delta_reversed: false
+          delta_first_last: false
+          multi_type: separator
+          separator: ', '
+          field_api_classes: false
       filters:
         status:
           id: status
@@ -163,9 +122,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: status
-          plugin_id: boolean
           operator: '='
           value: '1'
           group: 1
@@ -176,8 +132,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -196,30 +150,75 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      style:
-        type: default
-        options:
-          row_class: ''
-          default_row_class: false
-          uses_fields: false
-      row:
-        type: 'entity:node'
-        options:
+          plugin_id: boolean
+          entity_type: node
+          entity_field: status
+      sorts:
+        similarterms:
+          id: similarterms
+          table: node
+          field: similarterms
           relationship: none
-          view_mode: simple_card
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      group_by: true
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          entity_type: node
+          plugin_id: similar_terms_sort
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments:
+        similar_nid:
+          id: similar_nid
+          table: node
+          field: similar_nid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          default_action: default
+          exception:
+            value: all
+            title_enable: false
+            title: All
+          title_enable: false
+          title: ''
+          default_argument_type: node
+          default_argument_options: {  }
+          default_argument_skip_url: false
+          summary_options:
+            base_path: ''
+            count: true
+            items_per_page: 25
+            override: false
+          summary:
+            sort_order: asc
+            number_of_records: 0
+            format: default_summary
+          specify_validation: false
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          not: 0
+          vocabularies:
+            action_type: 0
+            article_type: 0
+            event_type: 0
+            group_type: 0
+            people_type: 0
+            resource_type: 0
+            tags: 0
+          include_args: 0
+          entity_type: node
+          plugin_id: similar_terms_arg
       display_extenders: {  }
+      group_by: true
+      title: 'Related content'
     cache_metadata:
       max-age: -1
       contexts:
@@ -230,13 +229,13 @@ display:
         - user.permissions
       tags: {  }
   block_related_content:
+    display_plugin: block
     id: block_related_content
     display_title: 'Block Related'
-    display_plugin: block
     position: 1
     display_options:
-      display_description: ''
       display_extenders: {  }
+      display_description: ''
       block_hide_empty: true
     cache_metadata:
       max-age: -1
diff --git a/config/sync/views.view.search.yml b/config/sync/views.view.search.yml
index 84aa598..1dbff68 100644
--- a/config/sync/views.view.search.yml
+++ b/config/sync/views.view.search.yml
@@ -16,25 +16,83 @@ description: 'Search results page using Search API.'
 tag: ''
 base_table: search_api_index_content
 base_field: search_api_id
+core: 8.x
 display:
   default:
+    display_plugin: default
     id: default
     display_title: Master
-    display_plugin: default
     position: 0
     display_options:
-      title: Search
+      access:
+        type: none
+        options: {  }
+      cache:
+        type: none
+        options: {  }
+      query:
+        type: views_query
+        options:
+          bypass_access: false
+          skip_access: false
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Search
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: null
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      style:
+        type: default
+        options:
+          row_class: ''
+          default_row_class: false
+          uses_fields: false
+      row:
+        type: search_api
+        options:
+          view_modes:
+            'entity:node':
+              action: teaser
+              article: teaser
+              blog: teaser
+              campaign: teaser
+              event: teaser
+              page: teaser
+              people: teaser
+              resource: teaser
       fields:
         title:
-          id: title
           table: search_api_index_content
           field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
+          id: title
           entity_type: null
           entity_field: null
           plugin_id: search_api_field
+          relationship: none
+          group_type: group
+          admin_label: ''
           label: ''
           exclude: false
           alter:
@@ -94,60 +152,6 @@ display:
           fallback_options:
             link_to_item: false
             multi_separator: ', '
-      pager:
-        type: full
-        options:
-          offset: 0
-          items_per_page: 20
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-          pagination_heading_level: h4
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Search
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: none
-        options: {  }
-      cache:
-        type: search_api_none
-        options: {  }
-      empty: {  }
-      sorts:
-        search_api_relevance:
-          id: search_api_relevance
-          table: search_api_index_content
-          field: search_api_relevance
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: search_api
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: search_api_relevance
-          exposed: false
-      arguments: {  }
       filters:
         search_api_fulltext:
           id: search_api_fulltext
@@ -156,7 +160,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: search_api_fulltext
           operator: and
           value: ''
           group: 1
@@ -167,8 +170,6 @@ display:
             description: ''
             use_operator: false
             operator: search_api_fulltext_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: search_api_fulltext
             required: false
             remember: false
@@ -192,31 +193,26 @@ display:
           parse_mode: terms
           min_length: null
           fields: {  }
-      style:
-        type: default
-        options:
-          row_class: ''
-          default_row_class: false
-          uses_fields: false
-      row:
-        type: search_api
-        options:
-          view_modes:
-            'entity:node':
-              article: teaser
-              blog: teaser
-              collection: teaser
-              gleaning: teaser
-              page: teaser
-              people: teaser
-      query:
-        type: search_api_query
-        options:
-          bypass_access: false
-          skip_access: false
-      relationships: {  }
+          plugin_id: search_api_fulltext
+      sorts:
+        search_api_relevance:
+          id: search_api_relevance
+          table: search_api_index_content
+          field: search_api_relevance
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: search_api
+      title: Search
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
     cache_metadata:
       max-age: -1
@@ -227,23 +223,23 @@ display:
         - url.query_args
       tags: {  }
   page_1:
+    display_plugin: page
     id: page_1
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
-      exposed_block: true
       display_extenders: {  }
       path: search
       menu:
         type: normal
         title: Search
         description: 'Search site content'
-        weight: -41
         expanded: false
-        menu_name: main
         parent: ''
+        weight: 50
         context: '0'
+        menu_name: main
+      exposed_block: true
     cache_metadata:
       max-age: -1
       contexts:
diff --git a/config/sync/views.view.taxonomy_term.yml b/config/sync/views.view.taxonomy_term.yml
index ba0d82a..5498150 100644
--- a/config/sync/views.view.taxonomy_term.yml
+++ b/config/sync/views.view.taxonomy_term.yml
@@ -17,33 +17,29 @@ description: 'Content belonging to a certain taxonomy term.'
 tag: default
 base_table: node_field_data
 base_field: nid
+core: '8'
 display:
   default:
     id: default
-    display_title: Default
+    display_title: Master
     display_plugin: default
     position: 0
     display_options:
-      fields: {  }
-      pager:
-        type: mini
+      query:
+        type: views_query
         options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: 0
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
+          query_comment: ''
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_tags: {  }
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
       exposed_form:
         type: basic
         options:
@@ -54,41 +50,49 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: mini
         options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
       sorts:
         sticky:
           id: sticky
           table: taxonomy_index
           field: sticky
+          order: DESC
+          plugin_id: standard
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: standard
-          order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: sticky
-          exposed: false
         created:
           id: created
           table: taxonomy_index
           field: created
+          order: DESC
+          plugin_id: date
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: date
-          order: DESC
+          exposed: false
           expose:
             label: ''
-            field_identifier: created
-          exposed: false
           granularity: second
       arguments:
         tid:
@@ -98,7 +102,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: taxonomy_index_tid
           default_action: 'not found'
           exception:
             value: ''
@@ -109,11 +112,12 @@ display:
           default_argument_type: fixed
           default_argument_options:
             argument: ''
+          default_argument_skip_url: false
           summary_options:
             base_path: ''
             count: true
-            override: false
             items_per_page: 25
+            override: false
           summary:
             sort_order: asc
             number_of_records: 0
@@ -123,14 +127,15 @@ display:
             type: 'entity:taxonomy_term'
             fail: 'not found'
           validate_options:
-            bundles: {  }
             access: true
             operation: view
             multiple: 0
+            bundles: {  }
           break_phrase: false
           add_table: false
           require_value: false
           reduce_duplicates: false
+          plugin_id: taxonomy_index_tid
       filters:
         langcode:
           id: langcode
@@ -139,9 +144,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: node
-          entity_field: langcode
-          plugin_id: language
           operator: in
           value:
             '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
@@ -153,8 +155,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -174,6 +174,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: language
+          entity_type: node
+          entity_field: langcode
         status:
           id: status
           table: taxonomy_index
@@ -181,7 +184,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: boolean
           operator: '='
           value: '1'
           group: 1
@@ -192,8 +194,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -212,6 +212,7 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: boolean
       style:
         type: default
         options:
@@ -223,17 +224,6 @@ display:
         type: 'entity:node'
         options:
           view_mode: teaser
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      link_display: page_1
-      link_url: ''
       header:
         entity_taxonomy_term:
           id: entity_taxonomy_term
@@ -242,22 +232,27 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: entity
           empty: true
+          tokenize: true
           target: '{{ raw_arguments.tid }}'
           view_mode: full
-          tokenize: true
           bypass_access: false
+          plugin_id: entity
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      fields: {  }
       display_extenders: {  }
+      link_url: ''
+      link_display: page_1
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   feed_1:
     id: feed_1
@@ -265,37 +260,37 @@ display:
     display_plugin: feed
     position: 2
     display_options:
+      query:
+        type: views_query
+        options: {  }
       pager:
         type: some
         options:
-          offset: 0
           items_per_page: 10
+          offset: 0
+      path: taxonomy/term/%/feed
+      displays:
+        page_1: page_1
+        default: '0'
       style:
         type: rss
         options:
+          description: ''
           grouping: {  }
           uses_fields: false
-          description: ''
       row:
         type: node_rss
         options:
           relationship: none
           view_mode: default
-      query:
-        type: views_query
-        options: {  }
       display_extenders: {  }
-      path: taxonomy/term/%/feed
-      displays:
-        page_1: page_1
-        default: '0'
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
   page_1:
     id: page_1
@@ -306,14 +301,14 @@ display:
       query:
         type: views_query
         options: {  }
-      display_extenders: {  }
       path: taxonomy/term/%
+      display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_interface'
         - url
         - url.query_args
         - 'user.node_grants:view'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/views.view.user_admin_people.yml b/config/sync/views.view.user_admin_people.yml
index a5134d6..4483e8c 100644
--- a/config/sync/views.view.user_admin_people.yml
+++ b/config/sync/views.view.user_admin_people.yml
@@ -3,7 +3,6 @@ langcode: en
 status: true
 dependencies:
   module:
-    - role_delegation
     - user
 _core:
   default_config_hash: wTJRNzsLVTenCALONNlVfgm_pBOlqucSPuVFLOD56ck
@@ -14,14 +13,134 @@ description: 'Find and manage people interacting with your site.'
 tag: default
 base_table: users_field_data
 base_field: uid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: People
+      access:
+        type: perm
+        options:
+          perm: 'administer users'
+      cache:
+        type: tag
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: true
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ Previous'
+            next: 'Next ›'
+            first: '« First'
+            last: 'Last »'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          quantity: 9
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          override: true
+          sticky: false
+          summary: ''
+          columns:
+            user_bulk_form: user_bulk_form
+            name: name
+            status: status
+            rid: rid
+            created: created
+            access: access
+            edit_node: edit_node
+            dropbutton: dropbutton
+          info:
+            user_bulk_form:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            status:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            rid:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            created:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            access:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            edit_node:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            dropbutton:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: created
+          empty_table: true
+      row:
+        type: fields
       fields:
         user_bulk_form:
           id: user_bulk_form
@@ -30,8 +149,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          plugin_id: user_bulk_form
           label: 'Bulk update'
           exclude: false
           alter:
@@ -73,6 +190,8 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: user_bulk_form
+          entity_type: user
         name:
           id: name
           table: users_field_data
@@ -80,9 +199,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
           label: Username
           exclude: false
           alter:
@@ -124,7 +240,10 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: field
           type: user_name
+          entity_type: user
+          entity_field: name
         status:
           id: status
           table: users_field_data
@@ -132,9 +251,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: status
-          plugin_id: field
           label: Status
           exclude: false
           alter:
@@ -176,11 +292,14 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: field
           type: boolean
           settings:
             format: custom
-            format_custom_false: Blocked
             format_custom_true: Active
+            format_custom_false: Blocked
+          entity_type: user
+          entity_field: status
         roles_target_id:
           id: roles_target_id
           table: user__roles
@@ -188,7 +307,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: user_roles
           label: Roles
           exclude: false
           alter:
@@ -232,6 +350,7 @@ display:
           hide_alter_empty: true
           type: ul
           separator: ', '
+          plugin_id: user_roles
         created:
           id: created
           table: users_field_data
@@ -239,9 +358,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: created
-          plugin_id: field
           label: 'Member for'
           exclude: false
           alter:
@@ -288,6 +404,9 @@ display:
             future_format: '@interval'
             past_format: '@interval'
             granularity: 2
+          plugin_id: field
+          entity_type: user
+          entity_field: created
         access:
           id: access
           table: users_field_data
@@ -295,9 +414,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: access
-          plugin_id: field
           label: 'Last access'
           exclude: false
           alter:
@@ -344,6 +460,9 @@ display:
             future_format: '@interval hence'
             past_format: '@interval ago'
             granularity: 2
+          plugin_id: field
+          entity_type: user
+          entity_field: access
         operations:
           id: operations
           table: users
@@ -351,8 +470,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          plugin_id: entity_operations
           label: Operations
           exclude: false
           alter:
@@ -395,6 +512,8 @@ display:
           empty_zero: false
           hide_alter_empty: true
           destination: true
+          entity_type: user
+          plugin_id: entity_operations
         mail:
           id: mail
           table: users_field_data
@@ -402,9 +521,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: mail
-          plugin_id: field
           label: ''
           exclude: true
           alter:
@@ -459,73 +575,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: 0
-          id: 0
-          tags:
-            next: 'Next ›'
-            previous: '‹ Previous'
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Filter
-          reset_button: true
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'administer users'
-      cache:
-        type: tag
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'No people available.'
-          tokenize: false
-      sorts:
-        created:
-          id: created
-          table: users_field_data
-          field: created
-          relationship: none
-          group_type: group
-          admin_label: ''
+          plugin_id: field
           entity_type: user
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
+          entity_field: mail
       filters:
         combine:
           id: combine
@@ -534,7 +586,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: combine
           operator: contains
           value: ''
           group: 1
@@ -545,8 +596,6 @@ display:
             description: ''
             use_operator: false
             operator: combine_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: user
             required: false
             remember: false
@@ -570,6 +619,7 @@ display:
           fields:
             name: name
             mail: mail
+          plugin_id: combine
         status:
           id: status
           table: users_field_data
@@ -577,9 +627,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: status
-          plugin_id: boolean
           operator: '='
           value: '1'
           group: 1
@@ -590,8 +637,6 @@ display:
             description: ''
             use_operator: false
             operator: status_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: status
             required: false
             remember: false
@@ -620,6 +665,9 @@ display:
                 title: Blocked
                 operator: '='
                 value: '0'
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
         roles_target_id:
           id: roles_target_id
           table: user__roles
@@ -627,7 +675,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: user_roles
           operator: or
           value: {  }
           group: 1
@@ -638,8 +685,6 @@ display:
             description: ''
             use_operator: false
             operator: roles_target_id_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: role
             required: false
             remember: false
@@ -662,6 +707,7 @@ display:
             default_group_multiple: {  }
             group_items: {  }
           reduce_duplicates: false
+          plugin_id: user_roles
         permission:
           id: permission
           table: user__roles
@@ -669,7 +715,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: user_permissions
           operator: or
           value: {  }
           group: 1
@@ -680,8 +725,6 @@ display:
             description: ''
             use_operator: false
             operator: permission_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: permission
             required: false
             remember: false
@@ -704,6 +747,7 @@ display:
             default_group_multiple: {  }
             group_items: {  }
           reduce_duplicates: false
+          plugin_id: user_permissions
         default_langcode:
           id: default_langcode
           table: users_field_data
@@ -711,9 +755,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: default_langcode
-          plugin_id: boolean
           operator: '='
           value: '1'
           group: 1
@@ -724,8 +765,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -744,6 +783,9 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          entity_type: user
+          entity_field: default_langcode
+          plugin_id: boolean
         uid_raw:
           id: uid_raw
           table: users_field_data
@@ -751,8 +793,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          plugin_id: numeric
           operator: '!='
           value:
             min: ''
@@ -766,8 +806,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -786,144 +824,92 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: numeric
+          entity_type: user
+      sorts:
+        created:
+          id: created
+          table: users_field_data
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          entity_type: user
+          entity_field: created
+      title: People
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No people available.'
+          plugin_id: text_custom
+      use_more: false
+      use_more_always: false
+      use_more_text: more
+      display_comment: ''
+      use_ajax: false
+      hide_attachment_summary: false
+      show_admin_links: true
+      group_by: false
+      link_url: ''
+      link_display: page_1
+      css_class: ''
       filter_groups:
         operator: AND
         groups:
           1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            user_bulk_form: user_bulk_form
-            name: name
-            status: status
-            rid: rid
-            created: created
-            access: access
-            edit_node: edit_node
-            dropbutton: dropbutton
-          default: created
-          info:
-            user_bulk_form:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            name:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            status:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            rid:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            created:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            access:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            edit_node:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            dropbutton:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: true
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      css_class: ''
-      use_ajax: false
-      group_by: false
-      show_admin_links: true
-      use_more: false
-      use_more_always: false
-      use_more_text: more
-      link_display: page_1
-      link_url: ''
-      display_comment: ''
-      hide_attachment_summary: false
       display_extenders: {  }
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
   page_1:
+    display_plugin: page
     id: page_1
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
-      defaults:
-        show_admin_links: false
-      show_admin_links: false
-      display_extenders: {  }
       path: admin/people/list
+      show_admin_links: false
       menu:
         type: 'default tab'
         title: List
         description: 'Find and manage people interacting with your site.'
-        weight: -10
         menu_name: admin
+        weight: -10
         context: ''
       tab_options:
         type: normal
         title: People
         description: 'Manage user accounts, roles, and permissions.'
-        weight: 0
         menu_name: admin
+        weight: 0
+      defaults:
+        show_admin_links: false
+      display_extenders: {  }
     cache_metadata:
-      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - url
         - url.query_args
         - user.permissions
+      max-age: 0
       tags: {  }
diff --git a/config/sync/views.view.visitors.yml b/config/sync/views.view.visitors.yml
deleted file mode 100644
index 618ba60..0000000
--- a/config/sync/views.view.visitors.yml
+++ /dev/null
@@ -1,8745 +0,0 @@
-uuid: da9ebb3b-8801-42a1-abe1-0ca150ffdad0
-langcode: en
-status: true
-dependencies:
-  module:
-    - charts
-    - charts_chartjs
-    - visitors
-_core:
-  default_config_hash: bz_czAL179TZlsG0i7NIgro4xD5_VVSavU-mGA5PPNY
-id: visitors
-label: Visitors
-module: views
-description: 'Visitors web analytics reports.'
-tag: ''
-base_table: visitors
-base_field: ''
-display:
-  default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
-    display_options:
-      title: ''
-      fields:
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: none
-        options: {  }
-      cache:
-        type: none
-        options: {  }
-      empty: {  }
-      sorts:
-        visitors_id:
-          id: visitors_id
-          table: visitors
-          field: visitors_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      arguments: {  }
-      filters:
-        bot:
-          id: bot
-          table: visitors
-          field: bot
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: boolean
-          operator: '!='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_date
-          operator: between
-          value:
-            min: to
-            max: from
-            value: ''
-            type: global
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            min_placeholder: ''
-            max_placeholder: ''
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            route: route
-            visitor_id: visitor_id
-          default: visitor_id
-          info:
-            route:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      use_ajax: true
-      group_by: true
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  browser_engine_pie:
-    id: browser_engine_pie
-    display_title: 'Engine Pie'
-    display_plugin: embed
-    position: 8
-    display_options:
-      title: 'Browser Engines'
-      fields:
-        config_browser_engine:
-          id: config_browser_engine
-          table: visitors
-          field: config_browser_engine
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Engine
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: pie
-            fields:
-              label: config_browser_engine
-              stacking: false
-              data_providers:
-                config_browser_engine:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#000000'
-                  weight: 2
-            display:
-              title: 'Browser Engines'
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: bottom
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: '60'
-                width_units: ''
-                height: '60'
-                height_units: '%'
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        style: false
-        row: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: browser_engine_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  browser_engine_table:
-    id: browser_engine_table
-    display_title: 'Engine Table'
-    display_plugin: embed
-    position: 8
-    display_options:
-      title: 'Browser Engines'
-      fields:
-        config_browser_engine:
-          id: config_browser_engine
-          table: visitors
-          field: config_browser_engine
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Engine
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: browser_engine_pie
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  browser_name_table:
-    id: browser_name_table
-    display_title: 'Browser Name'
-    display_plugin: embed
-    position: 6
-    display_options:
-      title: Browser
-      fields:
-        config_browser_name:
-          id: config_browser_name
-          table: visitors
-          field: config_browser_name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_browser
-          label: Browser
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: 'Browser version'
-          empty: false
-          display_id: browser_version_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  browser_version_table:
-    id: browser_version_table
-    display_title: 'Browser Version'
-    display_plugin: embed
-    position: 7
-    display_options:
-      title: 'Browser Version'
-      fields:
-        config_browser_name:
-          id: config_browser_name
-          table: visitors
-          field: config_browser_name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_browser
-          label: 'Browser Name'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-        config_browser_version:
-          id: config_browser_version
-          table: visitors
-          field: config_browser_version
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: 'Browser Version'
-          exclude: false
-          alter:
-            alter_text: true
-            text: '{{ config_browser_name }} {{ config_browser_version }} '
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: Browser
-          empty: false
-          display_id: browser_name_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  continent_pie:
-    id: continent_pie
-    display_title: 'Continent Pie'
-    display_plugin: embed
-    position: 1
-    display_options:
-      title: Continent
-      fields:
-        location_continent:
-          id: location_continent
-          table: visitors
-          field: location_continent
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_continent
-          label: Continent
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: pie
-            fields:
-              label: location_continent
-              stacking: false
-              data_providers:
-                location_continent:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#000000'
-                  weight: 2
-            display:
-              title: Continent
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: bottom
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: '60'
-                width_units: '%'
-                height: '60'
-                height_units: '%'
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        style: false
-        row: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: continent_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  continent_table:
-    id: continent_table
-    display_title: 'Continent Table'
-    display_plugin: embed
-    position: 1
-    display_options:
-      title: Continent
-      fields:
-        location_continent_1:
-          id: location_continent_1
-          table: visitors
-          field: location_continent
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_continent
-          label: Abbreviation
-          exclude: true
-          alter:
-            alter_text: true
-            text: '{{ location_continent_1|lower }}'
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          abbreviation: true
-        location_continent:
-          id: location_continent
-          table: visitors
-          field: location_continent
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_continent
-          label: Continent
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: true
-            path: 'internal:/visitors/location/continent/{{ location_continent_1 }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          abbreviation: false
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: continent_pie
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  country_table:
-    id: country_table
-    display_title: Country
-    display_plugin: embed
-    position: 2
-    display_options:
-      title: Country
-      fields:
-        location_country_1:
-          id: location_country_1
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Abbreviation
-          exclude: true
-          alter:
-            alter_text: true
-            text: '{{ location_country_1|lower }}'
-            make_link: false
-            path: 'internal:/visitors/location/region/{{ location_country_1 }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: true
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-          text: false
-          abbreviation: true
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Country
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: true
-            path: 'internal:/visitors/location/country/{{location_country_1}}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: true
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-          text: true
-          abbreviation: false
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      arguments:
-        location_continent:
-          id: location_continent
-          table: visitors
-          field: location_continent
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      defaults:
-        title: false
-        fields: false
-        arguments: false
-        filters: true
-        filter_groups: true
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-      tags: {  }
-  daily_column:
-    id: daily_column
-    display_title: 'Daily Column'
-    display_plugin: embed
-    position: 26
-    display_options:
-      fields:
-        visitors_day:
-          id: visitors_day
-          table: visitors
-          field: visitors_day
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_day
-          label: Day
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_day:
-          id: visitors_day
-          table: visitors
-          field: visitors_day
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_day
-              stacking: false
-              data_providers:
-                visitors_day:
-                  enabled: false
-                  color: '#006fb0'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 2
-            display:
-              title: Daily
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  day_of_month_column:
-    id: day_of_month_column
-    display_title: 'Day of Month Column'
-    display_plugin: embed
-    position: 28
-    display_options:
-      fields:
-        visitors_day_of_month:
-          id: visitors_day_of_month
-          table: visitors
-          field: visitors_day_of_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_day_of_month
-          label: 'Day of Month'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_day_of_month:
-          id: visitors_day_of_month
-          table: visitors
-          field: visitors_day_of_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_day_of_month
-              stacking: false
-              data_providers:
-                visitors_day_of_month:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 2
-            display:
-              title: 'Day of Month'
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: day_of_month_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  day_of_month_table:
-    id: day_of_month_table
-    display_title: 'Day of Month Table'
-    display_plugin: embed
-    position: 28
-    display_options:
-      title: 'Day of Month'
-      fields:
-        visitors_day_of_month:
-          id: visitors_day_of_month
-          table: visitors
-          field: visitors_day_of_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_day_of_month
-          label: 'Day of Month'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_day_of_month:
-          id: visitors_day_of_month
-          table: visitors
-          field: visitors_day_of_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitors_day_of_month: visitors_day_of_month
-            visitor_id: visitor_id
-          default: '-1'
-          info:
-            visitors_day_of_month:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: views-align-right
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: 'Day of Month'
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: day_of_month_column
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  day_of_week_column:
-    id: day_of_week_column
-    display_title: 'Day of Week Column'
-    display_plugin: embed
-    position: 30
-    display_options:
-      fields:
-        visitors_day_of_week:
-          id: visitors_day_of_week
-          table: visitors
-          field: visitors_day_of_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_day_of_week
-          label: 'Day of Week'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_day_of_week:
-          id: visitors_day_of_week
-          table: visitors
-          field: visitors_day_of_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_day_of_week
-              stacking: false
-              data_providers:
-                visitors_day_of_week:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 2
-            display:
-              title: 'Day of Week'
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: day_of_week_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  day_of_week_table:
-    id: day_of_week_table
-    display_title: 'Day of Week Table'
-    display_plugin: embed
-    position: 30
-    display_options:
-      title: 'Day of Week'
-      fields:
-        visitors_day_of_week:
-          id: visitors_day_of_week
-          table: visitors
-          field: visitors_day_of_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_day_of_week
-          label: 'Day of Week'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_day_of_week:
-          id: visitors_day_of_week
-          table: visitors
-          field: visitors_day_of_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitors_day_of_week: visitors_day_of_week
-            visitor_id: visitor_id
-          default: '-1'
-          info:
-            visitors_day_of_week:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: views-align-right
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: 'Day of Week'
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: day_of_week_column
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  device_brand_table:
-    id: device_brand_table
-    display_title: 'Device Brand'
-    display_plugin: embed
-    position: 10
-    display_options:
-      title: 'Device Brand'
-      fields:
-        config_device_brand:
-          id: config_device_brand
-          table: visitors
-          field: config_device_brand
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_brand
-          label: Brand
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  device_config_table:
-    id: device_config_table
-    display_title: Configuration
-    display_plugin: embed
-    position: 13
-    display_options:
-      title: Configuration
-      fields:
-        config_os:
-          id: config_os
-          table: visitors
-          field: config_os
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_operating_system
-          label: 'Operating System'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-        config_browser_name:
-          id: config_browser_name
-          table: visitors
-          field: config_browser_name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_browser
-          label: 'Browser Name'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-        config_resolution:
-          id: config_resolution
-          table: visitors
-          field: config_resolution
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Configurations
-          exclude: false
-          alter:
-            alter_text: true
-            text: '{{ config_os }} / {{ config_browser_name }} / {{ config_resolution }} '
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: Resolution
-          empty: false
-          display_id: device_resolution_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  device_model_table:
-    id: device_model_table
-    display_title: 'Device Model'
-    display_plugin: embed
-    position: 11
-    display_options:
-      title: Model
-      fields:
-        config_device_brand:
-          id: config_device_brand
-          table: visitors
-          field: config_device_brand
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_brand
-          label: 'Device brand'
-          exclude: true
-          alter:
-            alter_text: true
-            text: '{{ config_device_brand }} - '
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-        config_device_model:
-          id: config_device_model
-          table: visitors
-          field: config_device_model
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: 'Device model'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: Generic
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        config_device_type:
-          id: config_device_type
-          table: visitors
-          field: config_device_type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_device
-          label: 'Device model'
-          exclude: false
-          alter:
-            alter_text: true
-            text: '{{ config_device_brand }}{{ config_device_model }} {{ config_device_type }} '
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  device_resolution_table:
-    id: device_resolution_table
-    display_title: Resolution
-    display_plugin: embed
-    position: 12
-    display_options:
-      title: Resolution
-      fields:
-        config_resolution:
-          id: config_resolution
-          table: visitors
-          field: config_resolution
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Resolution
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: Configurations
-          empty: false
-          display_id: device_config_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  device_type_table:
-    id: device_type_table
-    display_title: 'Device Type'
-    display_plugin: embed
-    position: 9
-    display_options:
-      title: 'Device Type'
-      fields:
-        config_device_type:
-          id: config_device_type
-          table: visitors
-          field: config_device_type
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_device
-          label: Device
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  distinct_countries_list:
-    id: distinct_countries_list
-    display_title: 'Distinct Countries'
-    display_plugin: embed
-    position: 3
-    display_options:
-      title: 'Distinct Countries'
-      fields:
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: visitors_country
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            text: '{{ location_country }} distinct countries'
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: true
-          format_plural_string: !!binary MSBkaXN0aW5jdCBjb3VudHJ5A0Bjb3VudCBkaXN0aW5jdCBjb3VudHJpZXM=
-          prefix: ''
-          suffix: ''
-      sorts: {  }
-      style:
-        type: default
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        filters: true
-        filter_groups: true
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  hour_column:
-    id: hour_column
-    display_title: 'Hour Column'
-    display_plugin: embed
-    position: 24
-    display_options:
-      fields:
-        visitors_hour:
-          id: visitors_hour
-          table: visitors
-          field: visitors_hour
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_hour
-          label: Hour
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_hour:
-          id: visitors_hour
-          table: visitors
-          field: visitors_hour
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_hour
-              stacking: false
-              data_providers:
-                visitors_hour:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 2
-            display:
-              title: 'Your time'
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: false
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: hour_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  hour_table:
-    id: hour_table
-    display_title: 'Hour Table'
-    display_plugin: embed
-    position: 24
-    display_options:
-      title: 'Your time'
-      fields:
-        visitors_hour:
-          id: visitors_hour
-          table: visitors
-          field: visitors_hour
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_hour
-          label: Hour
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_hour:
-          id: visitors_hour
-          table: visitors
-          field: visitors_hour
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitors_hour: visitors_hour
-            visitor_id: visitor_id
-          default: '-1'
-          info:
-            visitors_hour:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: views-align-right
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: 'Your time'
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: hour_column
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  language_code_table:
-    id: language_code_table
-    display_title: 'Language Code'
-    display_plugin: embed
-    position: 5
-    display_options:
-      title: 'Language Code'
-      fields:
-        language:
-          id: language
-          table: visitors
-          field: language
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_language
-          label: Language
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          code: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        filters: true
-        filter_groups: true
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: Language
-          empty: false
-          display_id: language_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  language_table:
-    id: language_table
-    display_title: Language
-    display_plugin: embed
-    position: 4
-    display_options:
-      title: Language
-      fields:
-        language:
-          id: language
-          table: visitors
-          field: language
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Language
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        filters: true
-        filter_groups: true
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: 'Language Code'
-          empty: false
-          display_id: language_code_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  local_hour_column:
-    id: local_hour_column
-    display_title: 'Local Column'
-    display_plugin: embed
-    position: 22
-    display_options:
-      fields:
-        visitor_localtime:
-          id: visitor_localtime
-          table: visitors
-          field: visitor_localtime
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_local_hour
-          label: Hour
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitor_localtime:
-          id: visitor_localtime
-          table: visitors
-          field: visitor_localtime
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitor_localtime
-              stacking: false
-              data_providers:
-                visitor_localtime:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 2
-            display:
-              title: "Visitor's time"
-              title_position: ''
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: '0'
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: local_hour_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  local_hour_table:
-    id: local_hour_table
-    display_title: 'Local Table'
-    display_plugin: embed
-    position: 22
-    display_options:
-      title: "Visitor's time"
-      fields:
-        visitor_localtime:
-          id: visitor_localtime
-          table: visitors
-          field: visitor_localtime
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_local_hour
-          label: Hour
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitor_localtime:
-          id: visitor_localtime
-          table: visitors
-          field: visitor_localtime
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitor_localtime: visitor_localtime
-            visitor_id: visitor_id
-          default: '-1'
-          info:
-            visitor_localtime:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: views-align-right
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: "Visitor's time"
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: local_hour_column
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  monthly_column:
-    id: monthly_column
-    display_title: 'Monthly Column'
-    display_plugin: embed
-    position: 26
-    display_options:
-      fields:
-        visitors_month:
-          id: visitors_month
-          table: visitors
-          field: visitors_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_month
-          label: Month
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_month:
-          id: visitors_month
-          table: visitors
-          field: visitors_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_month
-              stacking: false
-              data_providers:
-                visitors_month:
-                  enabled: false
-                  color: '#000000'
-                  weight: 2
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 2
-            display:
-              title: Monthly
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: table
-          empty: false
-          display_id: monthly_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  monthly_table:
-    id: monthly_table
-    display_title: 'Monthly Table'
-    display_plugin: embed
-    position: 26
-    display_options:
-      title: Monthly
-      fields:
-        visitors_month:
-          id: visitors_month
-          table: visitors
-          field: visitors_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_month
-          label: Month
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_month:
-          id: visitors_month
-          table: visitors
-          field: visitors_month
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitors_month: visitors_month
-            visitor_id: visitor_id
-          default: '-1'
-          info:
-            visitors_month:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: views-align-right
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: Monthly
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        title: false
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: chart
-          empty: false
-          display_id: monthly_column
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  os_family_table:
-    id: os_family_table
-    display_title: 'OS Family'
-    display_plugin: embed
-    position: 14
-    display_options:
-      title: 'OS Family'
-      fields:
-        config_os:
-          id: config_os
-          table: visitors
-          field: config_os
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_operating_system
-          label: 'Operating System families'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: 'Operating System versions'
-          empty: false
-          display_id: os_version_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  os_version_table:
-    id: os_version_table
-    display_title: 'OS Version'
-    display_plugin: embed
-    position: 15
-    display_options:
-      title: 'OS Version'
-      fields:
-        config_os_version:
-          id: config_os_version
-          table: visitors
-          field: config_os_version
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: 'OS version'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: Unknown
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        config_os:
-          id: config_os
-          table: visitors
-          field: config_os
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_operating_system
-          label: 'Operating System'
-          exclude: false
-          alter:
-            alter_text: true
-            text: '{{ config_os }}  {{ config_os_version }}'
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        title: false
-        fields: false
-        footer: false
-      display_description: ''
-      footer:
-        visitors_display_link:
-          id: visitors_display_link
-          table: visitors
-          field: visitors_display_link
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_display_link
-          label: 'Operating System families'
-          empty: false
-          display_id: os_family_table
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  performance_daily_column:
-    id: performance_daily_column
-    display_title: 'Performance Daily'
-    display_plugin: embed
-    position: 21
-    display_options:
-      fields:
-        pf_network:
-          id: pf_network
-          table: visitors
-          field: pf_network
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Network
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_server:
-          id: pf_server
-          table: visitors
-          field: pf_server
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Server
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_transfer:
-          id: pf_transfer
-          table: visitors
-          field: pf_transfer
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Transfer
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_dom_processing:
-          id: pf_dom_processing
-          table: visitors
-          field: pf_dom_processing
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'DOM Processing'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_dom_complete:
-          id: pf_dom_complete
-          table: visitors
-          field: pf_dom_complete
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'DOM Complete'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_on_load:
-          id: pf_on_load
-          table: visitors
-          field: pf_on_load
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'On Load'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        visitors_day:
-          id: visitors_day
-          table: visitors
-          field: visitors_day
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_day
-          label: Day
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_day:
-          id: visitors_day
-          table: visitors
-          field: visitors_day
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_day
-              stacking: true
-              data_providers:
-                pf_network:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 7
-                pf_server:
-                  enabled: true
-                  color: '#ff8f00'
-                  weight: 7
-                pf_transfer:
-                  enabled: true
-                  color: '#ad1457'
-                  weight: 7
-                pf_dom_processing:
-                  enabled: true
-                  color: '#6a1b9a'
-                  weight: 7
-                pf_dom_complete:
-                  enabled: true
-                  color: '#558b2f'
-                  weight: 7
-                pf_on_load:
-                  enabled: true
-                  color: '#00838f'
-                  weight: 7
-                visitors_day:
-                  enabled: false
-                  color: '#7643b6'
-                  weight: 7
-            display:
-              title: ''
-              title_position: ''
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: bottom
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        relationships: false
-        fields: false
-        sorts: false
-      relationships: {  }
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  performance_hourly_column:
-    id: performance_hourly_column
-    display_title: 'Performance Hourly'
-    display_plugin: embed
-    position: 21
-    display_options:
-      fields:
-        pf_network:
-          id: pf_network
-          table: visitors
-          field: pf_network
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Network
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_server:
-          id: pf_server
-          table: visitors
-          field: pf_server
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Server
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_transfer:
-          id: pf_transfer
-          table: visitors
-          field: pf_transfer
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Transfer
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_dom_processing:
-          id: pf_dom_processing
-          table: visitors
-          field: pf_dom_processing
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'DOM Processing'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_dom_complete:
-          id: pf_dom_complete
-          table: visitors
-          field: pf_dom_complete
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'DOM Complete'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_on_load:
-          id: pf_on_load
-          table: visitors
-          field: pf_on_load
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'On Load'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        visitors_hour:
-          id: visitors_hour
-          table: visitors
-          field: visitors_hour
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_hour
-          label: Hour
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_hour:
-          id: visitors_hour
-          table: visitors
-          field: visitors_hour
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_hour
-              stacking: true
-              data_providers:
-                pf_network:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 7
-                pf_server:
-                  enabled: true
-                  color: '#ff8f00'
-                  weight: 7
-                pf_transfer:
-                  enabled: true
-                  color: '#ad1457'
-                  weight: 7
-                pf_dom_processing:
-                  enabled: true
-                  color: '#6a1b9a'
-                  weight: 7
-                pf_dom_complete:
-                  enabled: true
-                  color: '#558b2f'
-                  weight: 7
-                pf_on_load:
-                  enabled: true
-                  color: '#00838f'
-                  weight: 7
-                visitors_hour:
-                  enabled: false
-                  color: '#7643b6'
-                  weight: 7
-            display:
-              title: ''
-              title_position: ''
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: bottom
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        relationships: false
-        fields: false
-        sorts: false
-      relationships: {  }
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  performance_weekly_column:
-    id: performance_weekly_column
-    display_title: 'Performance Weekly'
-    display_plugin: embed
-    position: 21
-    display_options:
-      fields:
-        pf_network:
-          id: pf_network
-          table: visitors
-          field: pf_network
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Network
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_server:
-          id: pf_server
-          table: visitors
-          field: pf_server
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Server
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_transfer:
-          id: pf_transfer
-          table: visitors
-          field: pf_transfer
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: Transfer
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_dom_processing:
-          id: pf_dom_processing
-          table: visitors
-          field: pf_dom_processing
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'DOM Processing'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_dom_complete:
-          id: pf_dom_complete
-          table: visitors
-          field: pf_dom_complete
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'DOM Complete'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        pf_on_load:
-          id: pf_on_load
-          table: visitors
-          field: pf_on_load
-          relationship: none
-          group_type: avg
-          admin_label: ''
-          plugin_id: numeric
-          label: 'On Load'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        visitors_week:
-          id: visitors_week
-          table: visitors
-          field: visitors_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_week
-          label: Week
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_week:
-          id: visitors_week
-          table: visitors
-          field: visitors_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_week
-              stacking: true
-              data_providers:
-                pf_network:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: 7
-                pf_server:
-                  enabled: true
-                  color: '#ff8f00'
-                  weight: 7
-                pf_transfer:
-                  enabled: true
-                  color: '#ad1457'
-                  weight: 7
-                pf_dom_processing:
-                  enabled: true
-                  color: '#6a1b9a'
-                  weight: 7
-                pf_dom_complete:
-                  enabled: true
-                  color: '#558b2f'
-                  weight: 7
-                pf_on_load:
-                  enabled: true
-                  color: '#00838f'
-                  weight: 7
-                visitors_week:
-                  enabled: false
-                  color: '#7643b6'
-                  weight: 7
-            display:
-              title: ''
-              title_position: ''
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: bottom
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        relationships: false
-        fields: false
-        sorts: false
-      relationships: {  }
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  recent_view_table:
-    id: recent_view_table
-    display_title: 'Recent views'
-    display_plugin: embed
-    position: 19
-    display_options:
-      fields:
-        visitors_id:
-          id: visitors_id
-          table: visitors
-          field: visitors_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: numeric
-          label: 'Visitors ID'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: !!binary MQNAY291bnQ=
-          prefix: ''
-          suffix: ''
-        visitors_url:
-          id: visitors_url
-          table: visitors
-          field: visitors_url
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: URL
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: date
-          label: 'Date Time'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          date_format: short
-          custom_date_format: ''
-          timezone: ''
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Visitor
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        nothing:
-          id: nothing
-          table: views
-          field: nothing
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: custom
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: true
-            text: details
-            make_link: true
-            path: 'internal:/visitors/hits/{{ visitors_id }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: false
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      sorts: {  }
-      arguments:
-        route:
-          id: route
-          table: visitors
-          field: route
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-        visitors_ip:
-          id: visitors_ip
-          table: visitors
-          field: visitors_ip
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: upper
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      filters:
-        bot:
-          id: bot
-          table: visitors
-          field: bot
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: boolean
-          operator: '!='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_date
-          operator: between
-          value:
-            min: to
-            max: from
-            value: ''
-            type: global
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            min_placeholder: ''
-            max_placeholder: ''
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_path:
-          id: visitors_path
-          table: visitors
-          field: visitors_path
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          operator: starts
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: visitors_path_op
-            label: Path
-            description: ''
-            use_operator: false
-            operator: visitors_path_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: visitors_path
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              content_editor: '0'
-              administrator: '0'
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitors_id: visitors_id
-            visitors_url: visitors_url
-            visitors_date_time: visitors_date_time
-            visitor_id: visitor_id
-            nothing: nothing
-          default: visitors_date_time
-          info:
-            visitors_id:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitors_url:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitors_date_time:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: false
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            nothing:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        group_by: false
-        style: false
-        row: false
-        relationships: false
-        fields: false
-        sorts: false
-        arguments: false
-        filters: false
-        filter_groups: false
-        header: false
-      relationships: {  }
-      group_by: false
-      display_description: ''
-      header:
-        result:
-          id: result
-          table: views
-          field: result
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: result
-          empty: false
-          content: 'Displaying @start - @end of @total'
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-      tags: {  }
-  referrer_table:
-    id: referrer_table
-    display_title: 'Referrer views'
-    display_plugin: embed
-    position: 19
-    display_options:
-      fields:
-        visitors_id:
-          id: visitors_id
-          table: visitors
-          field: visitors_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: numeric
-          label: 'Visitors ID'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: !!binary MQNAY291bnQ=
-          prefix: ''
-          suffix: ''
-        visitors_referer:
-          id: visitors_referer
-          table: visitors
-          field: visitors_referer
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Referrer
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: '(Direct Entry)'
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: date
-          label: 'Date Time'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          date_format: fallback
-          custom_date_format: ''
-          timezone: ''
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Visitor
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        nothing:
-          id: nothing
-          table: views
-          field: nothing
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: custom
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: true
-            text: details
-            make_link: true
-            path: 'internal:/visitors/hits/{{ visitors_id }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: false
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      sorts:
-        visitors_id:
-          id: visitors_id
-          table: visitors
-          field: visitors_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      arguments:
-        visitors_path:
-          id: visitors_path
-          table: visitors
-          field: visitors_path
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: default
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: visitors_path
-          default_argument_options:
-            pop: 1
-            route: false
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      defaults:
-        pager: false
-        group_by: false
-        relationships: false
-        fields: false
-        sorts: false
-        arguments: false
-        header: false
-      relationships: {  }
-      group_by: false
-      display_description: ''
-      header:
-        result:
-          id: result
-          table: views
-          field: result
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: result
-          empty: false
-          content: 'Displaying @start - @end of @total'
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.path
-        - url.query_args
-      tags: {  }
-  top_host_table:
-    id: top_host_table
-    display_title: 'Top Host'
-    display_plugin: embed
-    position: 18
-    display_options:
-      fields:
-        visitors_ip:
-          id: visitors_ip
-          table: visitors
-          field: visitors_ip
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Host
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: true
-            path: 'internal:/visitors/host/{{ visitors_ip }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      defaults:
-        fields: false
-        header: false
-      display_description: ''
-      header:
-        result:
-          id: result
-          table: views
-          field: result
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: result
-          empty: false
-          content: 'Displaying @start - @end of @total'
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  top_path_table:
-    id: top_path_table
-    display_title: 'Top Path'
-    display_plugin: embed
-    position: 16
-    display_options:
-      title: Path
-      fields:
-        visitors_path:
-          id: visitors_path
-          table: visitors
-          field: visitors_path
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Path
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      sorts: {  }
-      defaults:
-        title: false
-        fields: false
-        sorts: false
-        header: false
-      display_description: ''
-      header:
-        result:
-          id: result
-          table: views
-          field: result
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: result
-          empty: false
-          content: 'Displaying @start - @end of @total'
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  top_route_table:
-    id: top_route_table
-    display_title: 'Top Route'
-    display_plugin: embed
-    position: 17
-    display_options:
-      fields:
-        route:
-          id: route
-          table: visitors
-          field: route
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Route
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: true
-            path: 'internal:/visitors/route/{{ route }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      sorts: {  }
-      filters:
-        bot:
-          id: bot
-          table: visitors
-          field: bot
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: boolean
-          operator: '!='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_date
-          operator: between
-          value:
-            min: to
-            max: from
-            value: ''
-            type: global
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            min_placeholder: ''
-            max_placeholder: ''
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        route:
-          id: route
-          table: visitors
-          field: route
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          operator: starts
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: route_op
-            label: Route
-            description: ''
-            use_operator: false
-            operator: route_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: route
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              content_editor: '0'
-              administrator: '0'
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            route: route
-            visitor_id: visitor_id
-          default: visitor_id
-          info:
-            route:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: true
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        filters: false
-        filter_groups: false
-        header: false
-      display_description: ''
-      header:
-        result:
-          id: result
-          table: views
-          field: result
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: result
-          empty: false
-          content: 'Displaying @start - @end of @total'
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-      tags: {  }
-  weekly_column:
-    id: weekly_column
-    display_title: 'Weekly Column'
-    display_plugin: embed
-    position: 26
-    display_options:
-      fields:
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitors_week:
-          id: visitors_week
-          table: visitors
-          field: visitors_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_week
-          label: Week
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_week:
-          id: visitors_week
-          table: visitors
-          field: visitors_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: chart
-        options:
-          grouping: {  }
-          chart_settings:
-            library: chartjs
-            type: column
-            fields:
-              label: visitors_week
-              stacking: false
-              data_providers:
-                visitor_id:
-                  enabled: true
-                  color: '#0277bd'
-                  weight: -1
-                visitors_week:
-                  enabled: false
-                  color: '#0277bd'
-                  weight: -2
-            display:
-              title: Weekly
-              title_position: top
-              subtitle: ''
-              data_labels: false
-              data_markers: true
-              legend_position: ''
-              background: ''
-              three_dimensional: 0
-              polar: 0
-              tooltips: true
-              dimensions:
-                width: ''
-                width_units: ''
-                height: ''
-                height_units: ''
-              gauge:
-                max: ''
-                min: ''
-                green_from: ''
-                green_to: ''
-                yellow_from: ''
-                yellow_to: ''
-                red_from: ''
-                red_to: ''
-              color_changer: false
-            xaxis:
-              title: ''
-              labels_rotation: '0'
-            yaxis:
-              title: ''
-              min: ''
-              max: ''
-              prefix: ''
-              suffix: ''
-              decimal_count: ''
-              labels_rotation: '0'
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
-  weekly_table:
-    id: weekly_table
-    display_title: 'Weekly Table'
-    display_plugin: embed
-    position: 26
-    display_options:
-      fields:
-        visitors_week:
-          id: visitors_week
-          table: visitors
-          field: visitors_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_week
-          label: Week
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-      pager:
-        type: none
-        options:
-          offset: 0
-      sorts:
-        visitors_week:
-          id: visitors_week
-          table: visitors
-          field: visitors_week
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_timestamp
-          order: ASC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitor_id: visitor_id
-            visitors_week: visitors_week
-          default: '-1'
-          info:
-            visitor_id:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitors_week:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      defaults:
-        pager: false
-        style: false
-        row: false
-        fields: false
-        sorts: false
-        header: false
-        footer: false
-      display_description: ''
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-      tags: {  }
diff --git a/config/sync/views.view.visitors_geoip.yml b/config/sync/views.view.visitors_geoip.yml
deleted file mode 100644
index be100a6..0000000
--- a/config/sync/views.view.visitors_geoip.yml
+++ /dev/null
@@ -1,1691 +0,0 @@
-uuid: d028a187-430a-4e0d-a027-bda06beffc7d
-langcode: en
-status: true
-dependencies:
-  module:
-    - visitors
-  enforced:
-    module:
-      - visitors_geoip
-id: visitors_geoip
-label: 'Visitors GeoIP'
-module: views
-description: 'Region and City location reports.'
-tag: ''
-base_table: visitors
-base_field: ''
-display:
-  default:
-    id: default
-    display_title: Default
-    display_plugin: default
-    position: 0
-    display_options:
-      fields:
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: 0
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Apply
-          reset_button: false
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: true
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: none
-        options: {  }
-      cache:
-        type: none
-        options: {  }
-      empty: {  }
-      sorts: {  }
-      arguments: {  }
-      filters:
-        bot:
-          id: bot
-          table: visitors
-          field: bot
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: boolean
-          operator: '!='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_date
-          operator: between
-          value:
-            min: to
-            max: from
-            value: ''
-            type: global
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            min_placeholder: ''
-            max_placeholder: ''
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          columns:
-            visitors_id: visitors_id
-            visitors_url: visitors_url
-            visitors_date_time: visitors_date_time
-            visitor_id: visitor_id
-            nothing: nothing
-          default: '-1'
-          info:
-            visitors_id:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitors_url:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitors_date_time:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            visitor_id:
-              sortable: false
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            nothing:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-        options:
-          default_field_elements: true
-          inline: {  }
-          separator: ''
-          hide_empty: false
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
-      group_by: true
-      header: {  }
-      footer: {  }
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url.query_args
-      tags: {  }
-  city_table:
-    id: city_table
-    display_title: City
-    display_plugin: embed
-    position: 3
-    display_options:
-      fields:
-        location_country_2:
-          id: location_country_2
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Abbreviation
-          exclude: true
-          alter:
-            alter_text: true
-            text: '{{ location_country_2|lower }}'
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-          text: false
-          abbreviation: true
-        location_region:
-          id: location_region
-          table: visitors
-          field: location_region
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: 'Region url'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: _none
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        location_city_1:
-          id: location_city_1
-          table: visitors
-          field: location_city
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: 'City url'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: _none
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        location_city:
-          id: location_city
-          table: visitors
-          field: location_city
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: City
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: Unknown
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Country
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-          text: false
-        location_country_1:
-          id: location_country_1
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: City
-          exclude: false
-          alter:
-            alter_text: true
-            text: '{{ location_country }} {{ location_city }}, {{ location_country_1 }}'
-            make_link: true
-            path: 'internal:/visitors/location/city/{{ location_country_2 }}/{{ location_region }}/{{ location_city_1 }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-          text: true
-          abbreviation: false
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: 0
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-      arguments:
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-        location_region:
-          id: location_region
-          table: visitors
-          field: location_region
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      defaults:
-        fields: false
-        arguments: false
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-      tags: {  }
-  recent_view_table:
-    id: recent_view_table
-    display_title: 'Recent Views'
-    display_plugin: embed
-    position: 3
-    display_options:
-      fields:
-        visitors_id:
-          id: visitors_id
-          table: visitors
-          field: visitors_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: numeric
-          label: 'Visitors ID'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: false
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-        visitors_url:
-          id: visitors_url
-          table: visitors
-          field: visitors_url
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: URL
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: date
-          label: 'Date Time'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          date_format: short
-          custom_date_format: ''
-          timezone: ''
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Visitor
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        nothing:
-          id: nothing
-          table: views
-          field: nothing
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: custom
-          label: Operations
-          exclude: false
-          alter:
-            alter_text: true
-            text: details
-            make_link: true
-            path: 'internal:/visitors/hits/{{ visitors_id }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: false
-      pager:
-        type: full
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 10
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-            first: '« First'
-            last: 'Last »'
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-          quantity: 9
-      sorts:
-        visitors_id:
-          id: visitors_id
-          table: visitors
-          field: visitors_id
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: ''
-          exposed: false
-      arguments:
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: lower
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-        location_region:
-          id: location_region
-          table: visitors
-          field: location_region
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-        location_city:
-          id: location_city
-          table: visitors
-          field: location_city
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      filters:
-        bot:
-          id: bot
-          table: visitors
-          field: bot
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: boolean
-          operator: '!='
-          value: '1'
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_date_time:
-          id: visitors_date_time
-          table: visitors
-          field: visitors_date_time
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_date
-          operator: between
-          value:
-            min: to
-            max: from
-            value: ''
-            type: global
-          group: 1
-          exposed: false
-          expose:
-            operator_id: ''
-            label: ''
-            description: ''
-            use_operator: false
-            operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: ''
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-            min_placeholder: ''
-            max_placeholder: ''
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-        visitors_path:
-          id: visitors_path
-          table: visitors
-          field: visitors_path
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          operator: starts
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: visitors_path_op
-            label: Path
-            description: ''
-            use_operator: false
-            operator: visitors_path_op
-            operator_limit_selection: false
-            operator_list: {  }
-            identifier: visitors_path
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              content_editor: '0'
-              administrator: '0'
-            placeholder: ''
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      defaults:
-        pager: false
-        group_by: false
-        fields: false
-        sorts: false
-        arguments: false
-        filters: false
-        filter_groups: false
-        header: false
-      group_by: false
-      display_description: ''
-      header:
-        result:
-          id: result
-          table: views
-          field: result
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: result
-          empty: false
-          content: 'Displaying @start - @end of @total'
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-      tags: {  }
-  region_table:
-    id: region_table
-    display_title: Region
-    display_plugin: embed
-    position: 2
-    display_options:
-      fields:
-        location_region_1:
-          id: location_region_1
-          table: visitors
-          field: location_region
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: 'Region link'
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: _none
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        location_country_2:
-          id: location_country_2
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Abbreviation
-          exclude: true
-          alter:
-            alter_text: true
-            text: '{{ location_country_2|lower }}'
-            make_link: false
-            path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-          text: false
-          abbreviation: true
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Flag
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: false
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: true
-          text: false
-        location_region:
-          id: location_region
-          table: visitors
-          field: location_region
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          label: Region
-          exclude: true
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: Unknown
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-        location_country_1:
-          id: location_country_1
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: visitors_country
-          label: Region
-          exclude: false
-          alter:
-            alter_text: true
-            text: '{{location_country }} {{ location_region }}, {{ location_country_1 }} '
-            make_link: true
-            path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region_1 }}'
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: Unknown
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          icon: false
-          text: true
-          abbreviation: false
-        visitor_id:
-          id: visitor_id
-          table: visitors
-          field: visitor_id
-          relationship: none
-          group_type: count_distinct
-          admin_label: ''
-          plugin_id: standard
-          label: 'Unique visitors'
-          exclude: false
-          alter:
-            alter_text: false
-            text: ''
-            make_link: false
-            path: ''
-            absolute: false
-            external: false
-            replace_spaces: false
-            path_case: none
-            trim_whitespace: false
-            alt: ''
-            rel: ''
-            link_class: ''
-            prefix: ''
-            suffix: ''
-            target: ''
-            nl2br: false
-            max_length: 0
-            word_boundary: true
-            ellipsis: true
-            more_link: false
-            more_link_text: ''
-            more_link_path: ''
-            strip_tags: false
-            trim: false
-            preserve_tags: ''
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          set_precision: false
-          precision: 0
-          decimal: .
-          separator: ','
-          format_plural: 0
-          format_plural_string: |-
-            1
-              \x03
-              @count
-          prefix: ''
-          suffix: ''
-      arguments:
-        location_country:
-          id: location_country
-          table: visitors
-          field: location_country
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: string
-          default_action: ignore
-          exception:
-            value: all
-            title_enable: false
-            title: All
-          title_enable: false
-          title: ''
-          default_argument_type: fixed
-          default_argument_options:
-            argument: ''
-          summary_options:
-            base_path: ''
-            count: true
-            override: false
-            items_per_page: 25
-          summary:
-            sort_order: asc
-            number_of_records: 0
-            format: default_summary
-          specify_validation: false
-          validate:
-            type: none
-            fail: 'not found'
-          validate_options: {  }
-          glossary: false
-          limit: 0
-          case: none
-          path_case: none
-          transform_dash: false
-          break_phrase: false
-      defaults:
-        fields: false
-        arguments: false
-      display_description: ''
-      display_extenders: {  }
-    cache_metadata:
-      max-age: -1
-      contexts:
-        - 'languages:language_interface'
-        - url
-        - url.query_args
-      tags: {  }
diff --git a/config/sync/views.view.watchdog.yml b/config/sync/views.view.watchdog.yml
index 9502757..77f2b5b 100644
--- a/config/sync/views.view.watchdog.yml
+++ b/config/sync/views.view.watchdog.yml
@@ -14,14 +14,136 @@ description: 'Recent log messages'
 tag: ''
 base_table: watchdog
 base_field: wid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: 'Recent log messages'
+      access:
+        type: perm
+        options:
+          perm: 'access site reports'
+      cache:
+        type: none
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: true
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: false
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: mini
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: null
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 25, 50'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: '{{ type }} {{ severity }}'
+          default_row_class: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            nothing: nothing
+            wid: wid
+            severity: severity
+            type: type
+            timestamp: timestamp
+            message: message
+            name: name
+            link: link
+          info:
+            nothing:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            wid:
+              sortable: false
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            severity:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            timestamp:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            message:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            link:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+          default: wid
+          empty_table: false
+      row:
+        type: fields
       fields:
         nothing:
           id: nothing
@@ -30,7 +152,6 @@ display:
           relationship: none
           group_type: group
           admin_label: Icon
-          plugin_id: custom
           label: ''
           exclude: false
           alter:
@@ -72,6 +193,7 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: false
+          plugin_id: custom
         wid:
           id: wid
           table: watchdog
@@ -79,7 +201,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: standard
           label: WID
           exclude: true
           alter:
@@ -121,6 +242,7 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: standard
         severity:
           id: severity
           table: watchdog
@@ -128,7 +250,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: machine_name
           label: Severity
           exclude: true
           alter:
@@ -171,6 +292,7 @@ display:
           empty_zero: false
           hide_alter_empty: true
           machine_name: false
+          plugin_id: machine_name
         type:
           id: type
           table: watchdog
@@ -178,7 +300,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: standard
           label: Type
           exclude: false
           alter:
@@ -220,6 +341,7 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
+          plugin_id: standard
         timestamp:
           id: timestamp
           table: watchdog
@@ -227,7 +349,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: date
           label: Date
           exclude: false
           alter:
@@ -272,6 +393,7 @@ display:
           date_format: short
           custom_date_format: ''
           timezone: ''
+          plugin_id: date
         message:
           id: message
           table: watchdog
@@ -279,7 +401,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: dblog_message
           label: Message
           exclude: false
           alter:
@@ -322,6 +443,7 @@ display:
           empty_zero: false
           hide_alter_empty: true
           replace_variables: true
+          plugin_id: dblog_message
         name:
           id: name
           table: users_field_data
@@ -329,9 +451,6 @@ display:
           relationship: uid
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
           label: User
           exclude: false
           alter:
@@ -387,6 +506,9 @@ display:
           multi_type: separator
           separator: ', '
           field_api_classes: false
+          entity_type: user
+          entity_field: name
+          plugin_id: field
         link:
           id: link
           table: watchdog
@@ -394,7 +516,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: dblog_operations
           label: Operations
           exclude: false
           alter:
@@ -436,69 +557,7 @@ display:
           hide_empty: false
           empty_zero: false
           hide_alter_empty: true
-      pager:
-        type: mini
-        options:
-          offset: 0
-          pagination_heading_level: h4
-          items_per_page: 50
-          total_pages: null
-          id: 0
-          tags:
-            next: ››
-            previous: ‹‹
-          expose:
-            items_per_page: false
-            items_per_page_label: 'Items per page'
-            items_per_page_options: '5, 10, 25, 50'
-            items_per_page_options_all: false
-            items_per_page_options_all_label: '- All -'
-            offset: false
-            offset_label: Offset
-      exposed_form:
-        type: basic
-        options:
-          submit_button: Filter
-          reset_button: true
-          reset_button_label: Reset
-          exposed_sorts_label: 'Sort by'
-          expose_sort_order: false
-          sort_asc_label: Asc
-          sort_desc_label: Desc
-      access:
-        type: perm
-        options:
-          perm: 'access site reports'
-      cache:
-        type: none
-        options: {  }
-      empty:
-        area:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: 'No log messages available.'
-          plugin_id: text_custom
-          empty: true
-          content: 'No log messages available.'
-          tokenize: false
-      sorts:
-        wid:
-          id: wid
-          table: watchdog
-          field: wid
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: standard
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: wid
-          exposed: false
-      arguments: {  }
+          plugin_id: dblog_operations
       filters:
         type:
           id: type
@@ -507,7 +566,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: dblog_types
           operator: in
           value: {  }
           group: 1
@@ -518,8 +576,6 @@ display:
             description: ''
             use_operator: false
             operator: type_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: type
             required: false
             remember: false
@@ -541,6 +597,7 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
+          plugin_id: dblog_types
         severity:
           id: severity
           table: watchdog
@@ -548,7 +605,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: in_operator
           operator: in
           value: {  }
           group: 1
@@ -559,8 +615,6 @@ display:
             description: ''
             use_operator: false
             operator: severity_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: severity
             required: false
             remember: false
@@ -582,95 +636,35 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      filter_groups:
-        operator: AND
-        groups:
-          1: AND
-      style:
-        type: table
-        options:
-          grouping: {  }
-          row_class: '{{ type }} {{ severity }}'
-          default_row_class: true
-          columns:
-            nothing: nothing
-            wid: wid
-            severity: severity
-            type: type
-            timestamp: timestamp
-            message: message
-            name: name
-            link: link
-          default: wid
-          info:
-            nothing:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-medium
-            wid:
-              sortable: false
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            severity:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            type:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-medium
-            timestamp:
-              sortable: true
-              default_sort_order: desc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-            message:
-              sortable: false
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: ''
-            name:
-              sortable: true
-              default_sort_order: asc
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-medium
-            link:
-              align: ''
-              separator: ''
-              empty_column: false
-              responsive: priority-low
-          override: true
-          sticky: false
-          summary: ''
-          empty_table: false
-          caption: ''
-          description: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
+          plugin_id: in_operator
+      sorts:
+        wid:
+          id: wid
+          table: watchdog
+          field: wid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: standard
+      title: 'Recent log messages'
+      header: {  }
+      footer: {  }
+      empty:
+        area:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: 'No log messages available.'
+          empty: true
+          tokenize: false
+          content: 'No log messages available.'
+          plugin_id: text_custom
       relationships:
         uid:
           id: uid
@@ -679,14 +673,17 @@ display:
           relationship: none
           group_type: group
           admin_label: User
-          plugin_id: standard
           required: false
-      css_class: admin-dblog
-      header: {  }
-      footer: {  }
+          plugin_id: standard
+      arguments: {  }
       display_extenders: {  }
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
+      css_class: admin-dblog
     cache_metadata:
-      max-age: -1
+      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
@@ -695,15 +692,15 @@ display:
         - user.permissions
       tags: {  }
   page:
+    display_plugin: page
     id: page
     display_title: Page
-    display_plugin: page
     position: 1
     display_options:
       display_extenders: {  }
       path: admin/reports/dblog
     cache_metadata:
-      max-age: -1
+      max-age: 0
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
diff --git a/config/sync/views.view.who_s_new.yml b/config/sync/views.view.who_s_new.yml
index 43d50be..349c274 100644
--- a/config/sync/views.view.who_s_new.yml
+++ b/config/sync/views.view.who_s_new.yml
@@ -7,60 +7,35 @@ dependencies:
 _core:
   default_config_hash: o_8fSWHZOVIbydZACGsSX09DtuJhqkRmNOzcVj-4bQI
 id: who_s_new
-label: "Who's new"
+label: 'Who''s new'
 module: user
 description: 'Shows a list of the newest user accounts on the site.'
 tag: default
 base_table: users_field_data
 base_field: uid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: "Who's new"
-      fields:
-        name:
-          id: name
-          table: users_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: user_name
-      pager:
-        type: some
+      access:
+        type: perm
         options:
-          offset: 0
-          items_per_page: 5
+          perm: 'access content'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
       exposed_form:
         type: basic
         options:
@@ -71,46 +46,62 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: some
         options:
-          perm: 'access content'
-      cache:
-        type: tag
-        options: {  }
-      empty: {  }
-      sorts:
-        created:
-          id: created
+          items_per_page: 5
+          offset: 0
+      style:
+        type: html_list
+      row:
+        type: fields
+      fields:
+        name:
+          id: name
           table: users_field_data
-          field: created
+          field: name
+          label: ''
+          plugin_id: field
+          type: user_name
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
           relationship: none
           group_type: group
           admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
           entity_type: user
-          entity_field: created
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: created
-          exposed: false
-          granularity: second
-      arguments: {  }
+          entity_field: name
       filters:
         status:
-          id: status
+          value: '1'
           table: users_field_data
           field: status
-          entity_type: user
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
+          id: status
           expose:
             operator: '0'
-            operator_limit_selection: false
-            operator_list: {  }
+          group: 1
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
         access:
           id: access
           table: users_field_data
@@ -118,9 +109,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: access
-          plugin_id: date
           operator: '>'
           value:
             min: ''
@@ -135,8 +123,6 @@ display:
             description: ''
             use_operator: false
             operator: ''
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: ''
             required: false
             remember: false
@@ -155,43 +141,53 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      style:
-        type: html_list
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
+          plugin_id: date
+          entity_type: user
+          entity_field: access
+      sorts:
+        created:
+          id: created
+          table: users_field_data
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          entity_type: user
+          entity_field: created
+      title: 'Who''s new'
       header: {  }
       footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user.permissions
+      max-age: -1
       tags: {  }
   block_1:
-    id: block_1
-    display_title: "Who's new"
     display_plugin: block
+    id: block_1
+    display_title: 'Who''s new'
     position: 1
     display_options:
       display_description: 'A list of new users'
-      display_extenders: {  }
-      block_description: "Who's new"
+      block_description: 'Who''s new'
       block_category: User
+      display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/views.view.who_s_online.yml b/config/sync/views.view.who_s_online.yml
index 936336f..7bfe908 100644
--- a/config/sync/views.view.who_s_online.yml
+++ b/config/sync/views.view.who_s_online.yml
@@ -7,60 +7,35 @@ dependencies:
 _core:
   default_config_hash: m0vmYmhrzMR6S_IC0UlK0Cl-q5lEvL8-EbxbbcDtk34
 id: who_s_online
-label: "Who's online block"
+label: 'Who''s online block'
 module: user
 description: 'Shows the user names of the most recently active users, and the total number of active users.'
 tag: default
 base_table: users_field_data
 base_field: uid
+core: 8.x
 display:
   default:
-    id: default
-    display_title: Default
     display_plugin: default
+    id: default
+    display_title: Master
     position: 0
     display_options:
-      title: "Who's online"
-      fields:
-        name:
-          id: name
-          table: users_field_data
-          field: name
-          relationship: none
-          group_type: group
-          admin_label: ''
-          entity_type: user
-          entity_field: name
-          plugin_id: field
-          label: ''
-          exclude: false
-          alter:
-            alter_text: false
-            make_link: false
-            absolute: false
-            word_boundary: false
-            ellipsis: false
-            strip_tags: false
-            trim: false
-            html: false
-          element_type: ''
-          element_class: ''
-          element_label_type: ''
-          element_label_class: ''
-          element_label_colon: true
-          element_wrapper_type: ''
-          element_wrapper_class: ''
-          element_default_classes: true
-          empty: ''
-          hide_empty: false
-          empty_zero: false
-          hide_alter_empty: true
-          type: user_name
-      pager:
-        type: some
+      access:
+        type: perm
         options:
-          offset: 0
-          items_per_page: 10
+          perm: 'access user profiles'
+      cache:
+        type: tag
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          replica: false
+          query_comment: ''
+          query_tags: {  }
       exposed_form:
         type: basic
         options:
@@ -71,57 +46,69 @@ display:
           expose_sort_order: true
           sort_asc_label: Asc
           sort_desc_label: Desc
-      access:
-        type: perm
+      pager:
+        type: some
         options:
-          perm: 'access user profiles'
-      cache:
-        type: tag
-        options: {  }
-      empty:
-        area_text_custom:
-          id: area_text_custom
-          table: views
-          field: area_text_custom
-          relationship: none
-          group_type: group
-          admin_label: ''
-          plugin_id: text_custom
-          empty: true
-          content: 'There are currently 0 users online.'
-          tokenize: false
-      sorts:
-        access:
-          id: access
+          items_per_page: 10
+          offset: 0
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+      row:
+        type: fields
+      fields:
+        name:
+          id: name
           table: users_field_data
-          field: access
+          field: name
+          label: ''
+          plugin_id: field
+          type: user_name
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
           relationship: none
           group_type: group
           admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
           entity_type: user
-          entity_field: access
-          plugin_id: date
-          order: DESC
-          expose:
-            label: ''
-            field_identifier: access
-          exposed: false
-          granularity: second
-      arguments: {  }
+          entity_field: name
       filters:
         status:
-          id: status
+          value: '1'
           table: users_field_data
           field: status
-          entity_type: user
-          entity_field: status
-          plugin_id: boolean
-          value: '1'
-          group: 1
+          id: status
           expose:
             operator: '0'
-            operator_limit_selection: false
-            operator_list: {  }
+          group: 1
+          plugin_id: boolean
+          entity_type: user
+          entity_field: status
         access:
           id: access
           table: users_field_data
@@ -129,9 +116,6 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          entity_type: user
-          entity_field: access
-          plugin_id: date
           operator: '>='
           value:
             min: ''
@@ -146,8 +130,6 @@ display:
             description: 'A user is considered online for this long after they have last viewed a page.'
             use_operator: false
             operator: access_op
-            operator_limit_selection: false
-            operator_list: {  }
             identifier: access
             required: false
             remember: false
@@ -168,26 +150,26 @@ display:
             default_group: All
             default_group_multiple: {  }
             group_items: {  }
-      style:
-        type: html_list
-        options:
-          grouping: {  }
-          row_class: ''
-          default_row_class: true
-          type: ul
-          wrapper_class: item-list
-          class: ''
-      row:
-        type: fields
-      query:
-        type: views_query
-        options:
-          query_comment: ''
-          disable_sql_rewrite: false
-          distinct: false
-          replica: false
-          query_tags: {  }
-      relationships: {  }
+          plugin_id: date
+          entity_type: user
+          entity_field: access
+      sorts:
+        access:
+          id: access
+          table: users_field_data
+          field: access
+          order: DESC
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          entity_type: user
+          entity_field: access
+      title: 'Who''s online'
       header:
         result:
           id: result
@@ -196,31 +178,45 @@ display:
           relationship: none
           group_type: group
           admin_label: ''
-          plugin_id: result
           empty: false
           content: 'There are currently @total users online.'
+          plugin_id: result
       footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'There are currently 0 users online.'
+          plugin_id: text_custom
+      relationships: {  }
+      arguments: {  }
       display_extenders: {  }
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user.permissions
+      max-age: -1
       tags: {  }
   who_s_online_block:
-    id: who_s_online_block
-    display_title: "Who's online"
     display_plugin: block
+    id: who_s_online_block
+    display_title: 'Who''s online'
     position: 1
     display_options:
+      block_description: 'Who''s online'
       display_description: 'A list of users that are currently logged in.'
       display_extenders: {  }
-      block_description: "Who's online"
     cache_metadata:
-      max-age: -1
       contexts:
         - 'languages:language_content'
         - 'languages:language_interface'
         - user.permissions
+      max-age: -1
       tags: {  }
diff --git a/config/sync/visitors.config.yml b/config/sync/visitors.config.yml
deleted file mode 100644
index d341315..0000000
--- a/config/sync/visitors.config.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-_core:
-  default_config_hash: 9EvDriR0owqXpyJGQ9jcg2YlrreIuyI2j4Hxh7Cdx3c
-flush_log_timer: 0
-bot_retention_log: 0
-items_per_page: 10
-theme: admin
-disable_tracking: false
-track:
-  userid: true
-counter:
-  enabled: true
-  entity_types:
-    - node
-  display_max_age: 3600
-visibility:
-  request_path_mode: 0
-  request_path_pages: |-
-    /admin
-    /admin/*
-    /batch
-    /node/add*
-    /node/*/*
-    /user/*/*
-  user_role_mode: 0
-  user_role_roles: {  }
-  user_account_mode: 1
-  exclude_user1: false
-script_type: minified
-domain_mode: 0
diff --git a/config/sync/visitors_geoip.settings.yml b/config/sync/visitors_geoip.settings.yml
deleted file mode 100644
index dd26f91..0000000
--- a/config/sync/visitors_geoip.settings.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-_core:
-  default_config_hash: O9-sVp7oOgWfsRZB65TyOT-R2o4IJBha_ud5Ar9oOtw
-geoip_path: ../
-license: ''
diff --git a/config/sync/workflow_buttons.settings.yml b/config/sync/workflow_buttons.settings.yml
deleted file mode 100644
index 45bda49..0000000
--- a/config/sync/workflow_buttons.settings.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-_core:
-  default_config_hash: MNhJFHOSodAXLNq8PWQ57QuQ9cKrQjTTCLh0hcLiIY8
-display:
-  top_buttons: false
diff --git a/config/sync/workflows.workflow.workflow_buttons_trash_publishing.yml b/config/sync/workflows.workflow.workflow_buttons_trash_publishing.yml
deleted file mode 100644
index 835f900..0000000
--- a/config/sync/workflows.workflow.workflow_buttons_trash_publishing.yml
+++ /dev/null
@@ -1,93 +0,0 @@
-uuid: 725ee6c0-309c-4351-adba-741b6290bcc6
-langcode: en
-status: true
-dependencies:
-  module:
-    - content_moderation
-_core:
-  default_config_hash: C0jZewM2mDrvz1X6CgI-Z0c5suz-odCZu1SKLKhotjo
-id: workflow_buttons_trash_publishing
-label: 'Publishing (with draft and soft delete)'
-type: content_moderation
-type_settings:
-  states:
-    draft:
-      label: Draft
-      weight: -2
-      published: false
-      default_revision: false
-    published:
-      label: Published
-      weight: 0
-      published: true
-      default_revision: true
-    trash:
-      label: Trash
-      weight: 1
-      published: false
-      default_revision: true
-    unpublished:
-      label: Unpublished
-      weight: 2
-      published: false
-      default_revision: true
-  transitions:
-    create_new_draft:
-      label: Save
-      from:
-        - draft
-      to: draft
-      weight: -5
-    delete:
-      label: Delete
-      from:
-        - draft
-        - published
-        - unpublished
-      to: trash
-      weight: 1
-    publish:
-      label: Publish
-      from:
-        - draft
-        - unpublished
-      to: published
-      weight: -1
-    restore_draft:
-      label: 'Restore to Draft'
-      from:
-        - trash
-      to: draft
-      weight: 2
-    restore_publish:
-      label: 'Restore and Publish'
-      from:
-        - trash
-      to: published
-      weight: 3
-    save_draft_leave_current_published:
-      label: 'Create draft (leave current version published)'
-      from:
-        - published
-      to: draft
-      weight: -2
-    save_unpublished:
-      label: Save
-      from:
-        - unpublished
-      to: unpublished
-      weight: -4
-    unpublish:
-      label: Unpublish
-      from:
-        - published
-      to: unpublished
-      weight: 0
-    update:
-      label: Update
-      from:
-        - published
-      to: published
-      weight: -3
-  entity_types: {  }
-  default_moderation_state: draft
diff --git a/drush/.gitignore b/drush/.gitignore
deleted file mode 100644
index cd266db..0000000
--- a/drush/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-#ddev-generated: Automatically generated ddev .gitignore.
-# You can remove the above line if you want to edit and maintain this file yourself.
-
-/drush.yml
diff --git a/drush/sites/live.site.yml b/drush/sites/live.site.yml
new file mode 100644
index 0000000..187d3d8
--- /dev/null
+++ b/drush/sites/live.site.yml
@@ -0,0 +1,8 @@
+live:
+  host: elizabeth.mayfirst.org
+  paths:
+    drush: /home/geo_live/site/vendor/drush/drush
+    drush-script: /home/geo_live/site/vendor/bin/drush
+  root: /home/geo_live/site/web
+  uri: 'https://geo-live.drutopia.org'
+  user: geo_live
diff --git a/drush/sites/self.site.yml b/drush/sites/self.site.yml
deleted file mode 100644
index ca09312..0000000
--- a/drush/sites/self.site.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-live:
-  host: drutopia.org
-  paths:
-    drush-script: /home/geo_live/site/vendor/bin/drush
-  root: /home/geo_live/site/web
-  uri: 'https://geo.coop/'
-  user: geo_live
-test:
-  host: testopia.agaric.com
-  paths:
-    drush-script: /home/geo_test/site/vendor/bin/drush
-  root: /home/geo_test/site/web
-  uri: 'https://geo-test.drutopia.org/'
-  user: geo_test
diff --git a/drush/sites/test.site.yml b/drush/sites/test.site.yml
new file mode 100644
index 0000000..9378220
--- /dev/null
+++ b/drush/sites/test.site.yml
@@ -0,0 +1,8 @@
+test:
+  host: elizabeth.mayfirst.org
+  paths:
+    drush: /home/geo_test/site/vendor/drush/drush
+    drush-script: /home/geo_test/site/vendor/bin/drush
+  root: /home/geo_test/site/web
+  uri: 'https://geo-test.drutopia.org'
+  user: geo_test
diff --git a/geo-coop.code-workspace b/geo-coop.code-workspace
deleted file mode 100644
index 07d3e69..0000000
--- a/geo-coop.code-workspace
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-	"folders": [
-		{
-			"path": "."
-		}
-	],
-	"settings": {
-		"intelephense.environment.phpVersion": "8.1"
-	}
-}
\ No newline at end of file
diff --git a/scripts/pull.sh b/scripts/pull.sh
deleted file mode 100755
index dbe9b90..0000000
--- a/scripts/pull.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-set -e
-# Confirmed with echo `pwd` that as long as we use via composer it's always in
-# /var/www/html (aka the project root).
-proj_dir="$(cd $(dirname ${0})/../ && pwd)" # Parent of this script folder.
-[ "$proj_dir" != "/var/www/html" ] && { echo "Script running from unexpected path - are you running within ddev, as you should?"; exit 1; }
-backup_file="$(date +%Y%m%dT%H%M%S)_pre_pull.sql"
-[ ! -d /var/www/html/backups ] && mkdir /var/www/html/backups || true
-echo "Backing up current db to backups/${backup_file}..."
-drush sql-dump > /var/www/html/backups/${backup_file}
-echo "Dropping local db..."
-drush -y sql-drop
-echo "Pulling db from live into local..."
-drush -y sql-sync @live @self
-echo "Pulling files from live into local..."
-drush -y rsync @live:%files @self:%files
-echo "Done"
diff --git a/scripts/retain-custom-htaccess.sh b/scripts/retain-custom-htaccess.sh
deleted file mode 100755
index 41dd644..0000000
--- a/scripts/retain-custom-htaccess.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-if [ -f ./web/.htaccess.custom ]
-then
-    cd web && mv .htaccess .htaccess.default && cp .htaccess.custom .htaccess
-    git diff -s --exit-code .htaccess.default || echo 'NOTE: .htaccess.default file has changed! Be sure to integrate latest updates into .htaccess and .htaccess.custom, then commit all three files. For example, meld web/.htaccess.custom web/.htaccess.default'
-fi
diff --git a/web/.gitignore b/web/.gitignore
deleted file mode 100644
index 793b5e8..0000000
--- a/web/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-/INSTALL.txt
-/README.txt
-/example.gitignore
-/README.md
\ No newline at end of file
diff --git a/web/.ht.router.php b/web/.ht.router.php
index b5884ef..054f711 100644
--- a/web/.ht.router.php
+++ b/web/.ht.router.php
@@ -24,12 +24,6 @@
  * @see http://php.net/manual/en/features.commandline.webserver.php
  */
 
-if (PHP_SAPI !== 'cli-server') {
-  // Bail out if this is not PHP's Development Server.
-  header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
-  exit;
-}
-
 $url = parse_url($_SERVER['REQUEST_URI']);
 if (file_exists(__DIR__ . $url['path'])) {
   // Serve the requested resource as-is.
@@ -39,7 +33,7 @@ if (file_exists(__DIR__ . $url['path'])) {
 // Work around the PHP bug.
 $path = $url['path'];
 $script = 'index.php';
-if (str_contains($path, '.php')) {
+if (strpos($path, '.php') !== FALSE) {
   // Work backwards through the path to check if a script exists. Otherwise
   // fallback to index.php.
   do {
diff --git a/web/.htaccess b/web/.htaccess
index 4031da4..83cb71a 100644
--- a/web/.htaccess
+++ b/web/.htaccess
@@ -3,7 +3,7 @@
 #
 
 # Protect files and directories from prying eyes.
-<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock)|web\.config|yarn\.lock|package\.json)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
+<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock))$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
   <IfModule mod_authz_core.c>
     Require all denied
   </IfModule>
@@ -26,8 +26,17 @@ AddEncoding gzip svgz
 # sites/default/default.settings.php and
 # Drupal\Core\DrupalKernel::bootEnvironment() for settings that can be
 # changed at runtime.
-<IfModule mod_php.c>
+
+# PHP 5, Apache 1 and 2.
+<IfModule mod_php5.c>
   php_value assert.active                   0
+  php_flag session.auto_start               off
+  php_value mbstring.http_input             pass
+  php_value mbstring.http_output            pass
+  php_flag mbstring.encoding_translation    off
+  # PHP 5.6 has deprecated $HTTP_RAW_POST_DATA and produces warnings if this is
+  # not set.
+  php_value always_populate_raw_post_data   -1
 </IfModule>
 
 # Requires mod_expires to be enabled.
@@ -35,8 +44,8 @@ AddEncoding gzip svgz
   # Enable expirations.
   ExpiresActive On
 
-  # Cache all files for 1 year after access.
-  ExpiresDefault "access plus 1 year"
+  # Cache all files for 2 weeks after access (A).
+  ExpiresDefault A1209600
 
   <FilesMatch \.php$>
     # Do not allow PHP scripts to be cached unless they explicitly send cache
@@ -114,13 +123,13 @@ AddEncoding gzip svgz
   # RewriteBase /
 
   # Redirect common PHP files to their new locations.
-  RewriteCond %{REQUEST_URI} ^(.*)?/(install\.php) [OR]
-  RewriteCond %{REQUEST_URI} ^(.*)?/(rebuild\.php)
+  RewriteCond %{REQUEST_URI} ^(.*)?/(install.php) [OR]
+  RewriteCond %{REQUEST_URI} ^(.*)?/(rebuild.php)
   RewriteCond %{REQUEST_URI} !core
   RewriteRule ^ %1/core/%2 [L,QSA,R=301]
 
   # Rewrite install.php during installation to see if mod_rewrite is working
-  RewriteRule ^core/install\.php core/install.php?rewrite=ok [QSA,L]
+  RewriteRule ^core/install.php core/install.php?rewrite=ok [QSA,L]
 
   # Pass all requests not referring directly to files in the filesystem to
   # index.php.
@@ -136,11 +145,11 @@ AddEncoding gzip svgz
   # Allow access to PHP files in /core (like authorize.php or install.php):
   RewriteCond %{REQUEST_URI} !/core/[^/]*\.php$
   # Allow access to test-specific PHP files:
-  RewriteCond %{REQUEST_URI} !/core/modules/system/tests/https?\.php
+  RewriteCond %{REQUEST_URI} !/core/modules/system/tests/https?.php
   # Allow access to Statistics module's custom front controller.
   # Copy and adapt this rule to directly execute PHP files in contributed or
   # custom modules or to run another PHP application in the same directory.
-  RewriteCond %{REQUEST_URI} !/core/modules/statistics/statistics\.php$
+  RewriteCond %{REQUEST_URI} !/core/modules/statistics/statistics.php$
   # Deny access to any other PHP files that do not match the rules above.
   # Specifically, disallow autoload.php from being served directly.
   RewriteRule "^(.+/.*|autoload)\.php($|/)" - [F]
@@ -151,16 +160,16 @@ AddEncoding gzip svgz
     # Serve gzip compressed CSS files if they exist and the client accepts gzip.
     RewriteCond %{HTTP:Accept-encoding} gzip
     RewriteCond %{REQUEST_FILENAME}\.gz -s
-    RewriteRule ^(.*css_[a-zA-Z0-9-_]+)\.css$ $1\.css\.gz [QSA]
+    RewriteRule ^(.*)\.css $1\.css\.gz [QSA]
 
     # Serve gzip compressed JS files if they exist and the client accepts gzip.
     RewriteCond %{HTTP:Accept-encoding} gzip
     RewriteCond %{REQUEST_FILENAME}\.gz -s
-    RewriteRule ^(.*js_[a-zA-Z0-9-_]+)\.js$ $1\.js\.gz [QSA]
+    RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
 
-    # Serve correct content types, and prevent double compression.
-    RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1,E=no-brotli:1]
-    RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1,E=no-brotli:1]
+    # Serve correct content types, and prevent mod_deflate double gzip.
+    RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1]
+    RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1]
 
     <FilesMatch "(\.js\.gz|\.css\.gz)$">
       # Serve correct encoding type.
@@ -173,13 +182,7 @@ AddEncoding gzip svgz
 
 # Various header fixes.
 <IfModule mod_headers.c>
-  # Disable content sniffing for all responses, since it's an attack vector.
-  # This header is also set in FinishResponseSubscriber, which depending on
-  # Apache configuration might get placed in the 'onsuccess' table. To prevent
-  # header duplication, unset that one prior to setting in the 'always' table.
-  # See "To circumvent this limitation..." in
-  # https://httpd.apache.org/docs/current/mod/mod_headers.html.
-  Header onsuccess unset X-Content-Type-Options
+  # Disable content sniffing, since it's an attack vector.
   Header always set X-Content-Type-Options nosniff
   # Disable Proxy header, since it's an attack vector.
   RequestHeader unset Proxy
diff --git a/web/modules/.gitignore b/web/modules/.gitignore
deleted file mode 100644
index 739a339..0000000
--- a/web/modules/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/README.txt
\ No newline at end of file
diff --git a/web/modules/custom/geo_citation/geo_citation.info.yml b/web/modules/custom/geo_citation/geo_citation.info.yml
deleted file mode 100644
index 3eebf55..0000000
--- a/web/modules/custom/geo_citation/geo_citation.info.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-name: "GEO Citations"
-description: "Formatted credit line for Grassroots Economic Organizing collective's original articles."
-type: module
-core_version_requirement: ^8 || ^9 || ^10
-dependencies:
-  - drutopia_article
-package: Custom
diff --git a/web/modules/custom/geo_citation/geo_citation.module b/web/modules/custom/geo_citation/geo_citation.module
deleted file mode 100644
index 3745a5e..0000000
--- a/web/modules/custom/geo_citation/geo_citation.module
+++ /dev/null
@@ -1,108 +0,0 @@
-<?php
-
-/**
- * Implements hook_ENTITY_TYPE_update() for Drutopia article content.
- */
-function geo_citation_article_update(Drupal\Core\Entity\EntityInterface $entity)
-{
-  $article_type = $entity->field_article_type->getValue();
-  // If it's not a GEO Original article, there's nothing for us to do.
-  if (!$article_type == 6) {
-    return;
-  }
-}
-
-/**
- * Implements hook_entity_extra_field_info().
- */
-function geo_citation_entity_extra_field_info() {
-  $extra = [];
-  $extra['node']['article']['display']['geo_citation'] = [
-    'label' => t('GEO Citation'),
-    'description' => t('Re-presents title, author, date and other information in a standard citeable format.'),
-    'weight' => 90,
-  ];
-  return $extra;
-}
-
-/**
- * Implements hook_ENTITY_TYPE_view() for nodes.
- */
-function geo_citation_node_view(array &$build, \Drupal\Core\Entity\EntityInterface $entity, \Drupal\Core\Entity\Display\EntityViewDisplayInterface $display, $view_mode) {
-  // This will only exist for the Drutopia article content type but don't think we need to check first.
-  if ($display->getComponent('geo_citation')) {
-    $build['geo_citation'] = [
-      '#markup' => geo_citation_pseudo_field($entity),
-//      '#theme' => 'geo_citation_field',
-    ];
-  }
-
-}
-
-/**
- * Implements hook_theme().
- *
- * We intentionally choose to do the citation in one big lump, because our
- * expectation for making this more flexible would be to plug into bibcite or
- * other citation API, rather than making it easy to re-theme this custom data.
- *
-function geo_citation_theme($existing, $type, $theme, $path) {
-  return [
-    'geo_citation_field' => [
-      'variables' => [
-        'citation' => '',
-      ]
-    ]
-  ]
-}
- * ...and it turns out giving theming capability to our pseudofield is optional.
- */
-
-/**
- * Assemble and return our citation as already-marked-up HTML.
- */
-function geo_citation_pseudo_field($entity) {
-  $markup = '';
-
-  // This returns a numerically-indexed array of arrays with little in them
-  // except the taxonomy term 'target_id' as a stringified number.
-  $article_types = $entity->field_article_type->getValue();
-  // This looks for the index matching 'GEO Original' (term ID 303), which will
-  // often be zero when it's the only selected article type, so we must be sure
-  // to test for a false identity and not accidentally reject zero.
-  if (array_search('303', array_column($article_types, 'target_id')) === FALSE) {
-    // If it's not a GEO Original article, we do not add a citation.
-    return $markup;
-  }
-
-  $authors = '';
-  foreach ($entity->field_authors as $i => $author) {
-    // @TODO replace this with https://packagist.org/packages/agaric/oxford-comma
-    $authors .= ($i > 0) ? ', ' : '';
-    $authors .= isset($author->entity) ? $author->entity->title->value : '';
-  }
-  $date = $entity->field_publication_date->value;
-  $year = substr($date, 0, 4);
-  $title = $entity->title->value;
-  $subtitle = $entity->field_subtitle->value;
-  $url = $entity->toUrl()->setAbsolute()->toString();
-
-  $markup .= '<div class="drum geo-citation">';
-
-  $tooltip = t("When citing this article, please use this format.");
-  $markup .= '<h5 class="title is-5"><abbr title="' . $tooltip . '">' . t("Citations") . '</abbr></h5>';
-
-  $markup .= '<p>';
-  $markup .= "$authors ($year).&#8198; $title";
-  if ($subtitle) {
-    $markup .= ":&#8198; $subtitle";
-  }
-  $markup .= ".&#8198; ";
-  $markup .= t("Grassroots Economic Organizing (GEO).");
-  $markup .= "&#8198; $url";
-  $markup .= '</p>';
-
-  $markup .= '</div>';
-
-  return $markup;
-}
diff --git a/web/modules/custom/geo_upgrade/geo_upgrade.deploy.php b/web/modules/custom/geo_upgrade/geo_upgrade.deploy.php
deleted file mode 100644
index 7d398e9..0000000
--- a/web/modules/custom/geo_upgrade/geo_upgrade.deploy.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-/**
- * @file
- * Implements migration helpers in deploy hook to help migrate images to media.
- *
- * Config updates in drutopia utilize media entities for storing images.
- */
-
-use Psr\Log\LogLevel;
-
-/**
- * Move data from image fields to media entity reference fields.
- *
- * Implements hook_deploy_NAME().
- */
-function geo_upgrade_deploy_move_images_to_media() {
-  $transformations = [
-    ['paragraph', ['field_image'], 'field_media_image', ['image', 'slide']],
-    ['node', ['field_image'], 'field_media_image', ['people', 'article', 'blog', 'collection', 'gleaning']],
-    // Leaving out the following for now, unless requested later
-    // ['paragraph', ['field_file'], 'field_media_document', ['file']],
-    // field_media_document would need to be created on file paragraph
-    // ['node', ['field_upload'], 'field_media_document', ['article', 'blog', 'gleaning']],
-    // new field would need to be added for generic file media (field_upload contains variety of file types)
-  ];
-
-  \Drupal::logger('geo_upgrade')->log(LogLevel::INFO, "Transformation started.");
-  foreach ($transformations as $transformation) {
-    [$entity_type, $image_field_names, $media_field_name, $bundles] = $transformation;
-
-    /** @var \Drupal\migration_helpers\MigrationHelperFieldTransformations $field_transformations_service */
-    $field_transformations_service = \Drupal::service('migration_helpers.field_transformations');
-    $field_transformations_service->fieldToMediaEntity($entity_type, $image_field_names, $media_field_name, $bundles);
-
-    $source_fields = implode(', ', $image_field_names);
-    \Drupal::logger('geo_upgrade')->log(LogLevel::INFO, "Data in image field(s) $source_fields of $entity_type entity moved to $media_field_name media reference field.");
-  }
-}
diff --git a/web/modules/custom/geo_upgrade/geo_upgrade.info.yml b/web/modules/custom/geo_upgrade/geo_upgrade.info.yml
index 62268a7..4e223aa 100644
--- a/web/modules/custom/geo_upgrade/geo_upgrade.info.yml
+++ b/web/modules/custom/geo_upgrade/geo_upgrade.info.yml
@@ -1,11 +1,10 @@
 name: Geo Upgrade
 type: module
 description: Customization of Drupal 7 to Drupal 8 upgrade migration.
-core_version_requirement: ^8 || ^9 || ^10
+core: 8.x
 package: Migration
 dependencies:
   - migrate_drupal
   - migrate_plus
   - migrate_source_csv
   - migrate_tools
-  - migration_helpers
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_blog.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_blog.yml
index 9fe5af0..7566df6 100644
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_blog.yml
+++ b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_blog.yml
@@ -119,15 +119,6 @@ process:
 #      source: taxonomy_vocabulary_3
 #      process:
 #        target_id: tid
-  field_topics:
-    - plugin: merge
-      source:
-        - '@field_regions'
-        - '@field_visions_models'
-        - '@field_practices_tools_strategies'
-        - '@field_movements_struggles'
-        - '@field_institutions_structures'
-        - '@field_economic_sectors'
   paragraph_body:
     plugin: migration
     migration: upgrade_d7_node_blog_body_paragraph
@@ -157,17 +148,6 @@ process:
         title: title
         width: width
         height: height
-  field_publication_date:
-    - plugin: publication_date_default
-      source: field_publication_date
-      method: process
-    - plugin: sub_process
-      process:
-        value:
-          plugin: format_date
-          from_format: 'Y-m-d\TH:i:s'
-          to_format: 'Y-m-d'
-          source: value
   path/alias: source_path
   path/pathauto:
     plugin: default_value
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_gleaning.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_gleaning.yml
index 2dea82b..458daab 100644
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_gleaning.yml
+++ b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_gleaning.yml
@@ -98,17 +98,6 @@ process:
         target_id: fid
         display: display
         description: description
-  field_publication_date:
-    - plugin: publication_date_default
-      source: field_publication_date
-      method: process
-    - plugin: sub_process
-      process:
-        value:
-          plugin: format_date
-          from_format: 'Y-m-d\TH:i:s'
-          to_format: 'Y-m-d'
-          source: value
   path/alias: source_path
   path/pathauto:
     plugin: default_value
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_issueindex.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_issueindex.yml
deleted file mode 100644
index 3e19268..0000000
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_issueindex.yml
+++ /dev/null
@@ -1,190 +0,0 @@
-langcode: en
-status: true
-dependencies: {  }
-id: upgrade_d7_node_issueindex
-class: Drupal\migrate\Plugin\Migration
-field_plugin_method: alterFieldInstanceMigration
-cck_plugin_method: null
-migration_tags:
-  - 'Drupal 7'
-  - Content
-migration_group: migrate_drupal_7_geo
-label: 'Nodes (Issue index)'
-source:
-  plugin: d7_node
-  node_type: issue_index
-  constants:
-    collection_type_tid: 299
-process:
-  nid:
-    -
-      plugin: get
-      source: tnid
-  vid:
-    -
-      plugin: get
-      source: vid
-  langcode:
-    -
-      plugin: default_value
-      source: language
-      default_value: und
-  title:
-    -
-      plugin: get
-      source: title
-  uid:
-    -
-      plugin: get
-      source: node_uid
-  status:
-    -
-      plugin: get
-      source: status
-  created:
-    -
-      plugin: get
-      source: created
-  changed:
-    -
-      plugin: get
-      source: changed
-  promote:
-    -
-      plugin: get
-      source: promote
-  sticky:
-    -
-      plugin: get
-      source: sticky
-  revision_uid:
-    -
-      plugin: get
-      source: revision_uid
-  revision_log:
-    -
-      plugin: get
-      source: log
-  revision_timestamp:
-    -
-      plugin: get
-      source: timestamp
-  field_economic_sectors:
-    -
-      plugin: sub_process
-      source: taxonomy_vocabulary_1
-      process:
-        target_id: tid
-  field_institutions_structures:
-    -
-      plugin: sub_process
-      source: taxonomy_vocabulary_7
-      process:
-        target_id: tid
-  field_movements_struggles:
-    -
-      plugin: sub_process
-      source: taxonomy_vocabulary_12
-      process:
-        target_id: tid
-  field_practices_tools_strategies:
-    -
-      plugin: sub_process
-      source: taxonomy_vocabulary_13
-      process:
-        target_id: tid
-#  taxonomy_vocabulary_14:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_14
-#      process:
-#        target_id: tid
-  field_visions_models:
-    -
-      plugin: sub_process
-      source: taxonomy_vocabulary_10
-      process:
-        target_id: tid
-  field_regions:
-    -
-      plugin: sub_process
-      source: taxonomy_vocabulary_2
-      process:
-        target_id: tid
-  field_collection_type/target_id: constants/collection_type_tid
-#  taxonomy_vocabulary_5:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_5
-#      process:
-#        target_id: tid
-#  taxonomy_vocabulary_8:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_8
-#      process:
-#        target_id: tid
-  paragraph_body:
-    plugin: migration
-    migration: upgrade_d7_node_issueindex_body_paragraph
-    source: nid
-  field_body_paragraph:
-    -
-      plugin: iterator
-      source:
-        - '@paragraph_body'
-      process:
-        target_id: '0'
-        target_revision_id: '1'
-  field_upload:
-    -
-      plugin: sub_process
-      source: upload
-      process:
-        target_id: fid
-        display: display
-        description: description
-  field_subtitle:
-    -
-      plugin: get
-      source: field_subtitle
-  field_image:
-    -
-      plugin: sub_process
-      source: field_inserted_image
-      process:
-        target_id: fid
-        alt: alt
-        title: title
-        width: width
-        height: height
-#  field_geo_volume_3:
-#    -
-#      plugin: sub_process
-#      source: field_geo_volume_3
-#      process:
-#        target_id: tid
-  field_publication_date:
-    - plugin: publication_date_default
-      source: field_publication_date
-      method: process
-    -
-      plugin: sub_process
-      process:
-        value:
-          plugin: format_date
-          from_format: 'Y-m-d\TH:i:s'
-          to_format: 'Y-m-d'
-          source: value
-  path/alias: source_path
-  path/pathauto:
-    plugin: default_value
-    default_value: 0
-destination:
-  plugin: 'entity:node'
-  default_bundle: collection
-migration_dependencies:
-  required:
-    - upgrade_d7_user
-    - upgrade_d7_taxonomy_term_custom_terms
-  optional: {  }
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_issueindex_body_paragraph.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_issueindex_body_paragraph.yml
deleted file mode 100644
index ceb943e..0000000
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_issueindex_body_paragraph.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-id: upgrade_d7_node_issueindex_body_paragraph
-migration_group: migrate_drupal_7_geo
-label: Body paragraph
-source:
-  plugin: d7_node
-  node_type: issue_index
-process:
-  uid:
-    - plugin: get
-      source: node_uid
-  status: status
-  created: created
-  parent_type: "node"
-  field_text:
-    -
-      plugin: sub_process
-      source: body
-      process:
-        value: value
-        format:
-          plugin: default_value
-          default_value: 'full_html'
-destination:
-  plugin: 'entity_reference_revisions:paragraph'
-  default_bundle: text
-dependencies:
-  enforced:
-    module:
-      - paragraphs
-migration_dependencies:
-  required:
-    - upgrade_d7_user
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story.yml
index 6bc7a9e..f6ea663 100644
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story.yml
+++ b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story.yml
@@ -1,4 +1,3 @@
-# Temporary comment all the fields that we don't want to update
 langcode: en
 status: true
 dependencies: {  }
@@ -19,179 +18,204 @@ process:
     -
       plugin: get
       source: tnid
-#  vid:
-#    -
-#      plugin: get
-#      source: vid
-#  langcode:
-#    -
-#      plugin: default_value
-#      source: language
-#      default_value: und
-#  title:
-#    -
-#      plugin: get
-#      source: title
-#  uid:
-#    -
-#      plugin: get
-#      source: node_uid
-#  status:
-#    -
-#      plugin: get
-#      source: status
-#  created:
-#    -
-#      plugin: get
-#      source: created
-#  changed:
-#    -
-#      plugin: get
-#      source: changed
-#  promote:
-#    -
-#      plugin: get
-#      source: promote
-#  sticky:
-#    -
-#      plugin: get
-#      source: sticky
-#  revision_uid:
-#    -
-#      plugin: get
-#      source: revision_uid
-#  revision_log:
-#    -
-#      plugin: get
-#      source: log
-#  revision_timestamp:
-#    -
-#      plugin: get
-#      source: timestamp
-#  field_economic_sectors:
+  vid:
+    -
+      plugin: get
+      source: vid
+  langcode:
+    -
+      plugin: default_value
+      source: language
+      default_value: und
+  title:
+    -
+      plugin: get
+      source: title
+  uid:
+    -
+      plugin: get
+      source: node_uid
+  status:
+    -
+      plugin: get
+      source: status
+  created:
+    -
+      plugin: get
+      source: created
+  changed:
+    -
+      plugin: get
+      source: changed
+  promote:
+    -
+      plugin: get
+      source: promote
+  sticky:
+    -
+      plugin: get
+      source: sticky
+  revision_uid:
+    -
+      plugin: get
+      source: revision_uid
+  revision_log:
+    -
+      plugin: get
+      source: log
+  revision_timestamp:
+    -
+      plugin: get
+      source: timestamp
+  field_economic_sectors:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_1
+      process:
+        target_id: tid
+  field_institutions_structures:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_7
+      process:
+        target_id: tid
+  field_movements_struggles:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_12
+      process:
+        target_id: tid
+  field_practices_tools_strategies:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_13
+      process:
+        target_id: tid
+#  taxonomy_vocabulary_14:
 #    -
 #      plugin: sub_process
-#      source: taxonomy_vocabulary_1
+#      source: taxonomy_vocabulary_14
 #      process:
 #        target_id: tid
-#  field_institutions_structures:
+  field_visions_models:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_10
+      process:
+        target_id: tid
+  field_regions:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_2
+      process:
+        target_id: tid
+  field_article_type:
+    -
+      plugin: sub_process
+      source: taxonomy_vocabulary_3
+      process:
+        target_id: tid
+#  taxonomy_vocabulary_5:
 #    -
 #      plugin: sub_process
-#      source: taxonomy_vocabulary_7
+#      source: taxonomy_vocabulary_5
 #      process:
 #        target_id: tid
-#  field_movements_struggles:
+#  taxonomy_vocabulary_8:
 #    -
 #      plugin: sub_process
-#      source: taxonomy_vocabulary_12
+#      source: taxonomy_vocabulary_8
 #      process:
 #        target_id: tid
-#  field_practices_tools_strategies:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_13
-#      process:
-#        target_id: tid
-#  field_visions_models:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_10
-#      process:
-#        target_id: tid
-#  field_regions:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_2
-#      process:
-#        target_id: tid
-#  field_article_type:
-#    -
-#      plugin: sub_process
-#      source: taxonomy_vocabulary_3
-#      process:
-#        target_id: tid
-#  field_topics:
-#    - plugin: merge
-#      source:
-#        - '@field_regions'
-#        - '@field_visions_models'
-#        - '@field_practices_tools_strategies'
-#        - '@field_movements_struggles'
-#        - '@field_institutions_structures'
-#        - '@field_economic_sectors'
-#  paragraph_body:
-#    plugin: migration
-#    migration: upgrade_d7_node_story_body_paragraph
-#    source: nid
-#  field_body_paragraph:
-#    -
-#      plugin: iterator
-#      source:
-#        - '@paragraph_body'
-#      process:
-#        target_id: '0'
-#        target_revision_id: '1'
-#  field_upload:
-#    -
-#      plugin: sub_process
-#      source: upload
-#      process:
-#        target_id: fid
-#        display: display
-#        description: description
-  _field_bio:
-    plugin: geo_story_bio
-    source:
-      - field_author
-      - field_author_bio
-  field_biography:
+  paragraph_body:
+    plugin: migration
+    migration: upgrade_d7_node_story_body_paragraph
+    source: nid
+  field_body_paragraph:
+    -
+      plugin: iterator
+      source:
+        - '@paragraph_body'
+      process:
+        target_id: '0'
+        target_revision_id: '1'
+  field_upload:
+    -
+      plugin: sub_process
+      source: upload
+      process:
+        target_id: fid
+        display: display
+        description: description
+  field_authors:
     plugin: sub_process
-    source: '@_field_bio'
+    source: field_author
     process:
       target_id:
         plugin: migration_lookup
         source: value
         migration: upgrade_d7_node_story_author
-      override: bio
-#  field_authors:
-#    plugin: sub_process
-#    source: field_author
-#    process:
-#      target_id:
-#        plugin: migration_lookup
-#        source: value
-#        migration: upgrade_d7_node_story_author
-#  field_subtitle:
 #    -
 #      plugin: get
-#      source: field_subtitle
-#  field_image:
+#      source: field_author
+#  field_author_picture:
 #    -
 #      plugin: sub_process
-#      source: field_inserted_image
+#      source: field_author_picture
 #      process:
 #        target_id: fid
 #        alt: alt
 #        title: title
 #        width: width
 #        height: height
-#  field_publication_date:
+#  field_author_bio:
 #    -
-#      plugin: publication_date_default
-#      source: field_publication_date
-#      method: process
+#      plugin: get
+#      source: field_author_bio
+#  field_citiations:
+#    -
+#      plugin: get
+#      source: field_citiations
+#  field_issue:
 #    -
 #      plugin: sub_process
+#      source: field_issue
 #      process:
-#        value:
-#          plugin: format_date
-#          from_format: 'Y-m-d\TH:i:s'
-#          to_format: 'Y-m-d'
-#          source: value
-#  path/alias: source_path
-#  path/pathauto:
-#    plugin: default_value
-#    default_value: 0
+#        target_id: tid
+  field_subtitle:
+    -
+      plugin: get
+      source: field_subtitle
+  field_image:
+    -
+      plugin: sub_process
+      source: field_inserted_image
+      process:
+        target_id: fid
+        alt: alt
+        title: title
+        width: width
+        height: height
+#  field_geo_volume_3:
+#    -
+#      plugin: sub_process
+#      source: field_geo_volume_3
+#      process:
+#        target_id: tid
+  field_publication_date:
+    -
+      plugin: sub_process
+      source: field_publication_date
+      process:
+        value:
+          plugin: format_date
+          from_format: 'Y-m-d\TH:i:s'
+          to_format: 'Y-m-d'
+          source: value
+  path/alias: source_path
+  path/pathauto:
+    plugin: default_value
+    default_value: 0
 destination:
   plugin: 'entity:node'
   default_bundle: article
@@ -200,7 +224,6 @@ migration_dependencies:
     - upgrade_d7_user
     - upgrade_d7_taxonomy_term_vocabulary_1
     - upgrade_d7_taxonomy_term_vocabulary_2
-    - upgrade_d7_taxonomy_term_vocabulary_3
     - upgrade_d7_taxonomy_term_vocabulary_7
     - upgrade_d7_taxonomy_term_vocabulary_10
     - upgrade_d7_taxonomy_term_vocabulary_12
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author.yml
index 4be9444..3b18232 100644
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author.yml
+++ b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author.yml
@@ -28,18 +28,6 @@ process:
     - plugin: migration_lookup
       migration: upgrade_d7_taxonomy_term_custom_terms
       source: constants/author_type_source_id
-  field_summary: bio
-  paragraph_bio:
-    plugin: migration
-    migration: upgrade_d7_node_story_bio_paragraph
-    source: field_author_value
-  field_body_paragraph:
-    - plugin: iterator
-      source:
-        - '@paragraph_bio'
-      process:
-        target_id: '0'
-        target_revision_id: '1'
 destination:
   plugin: 'entity:node'
   default_bundle: people
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author_bio_paragraph.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author_bio_paragraph.yml
deleted file mode 100644
index 13a1c7f..0000000
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_node_story_author_bio_paragraph.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-id: upgrade_d7_node_story_bio_paragraph
-migration_group: migrate_drupal_7_geo
-label: Body paragraph
-source:
-  plugin: geod7_author
-  constants:
-    status: 1
-    format: full_html
-process:
-  nid:
-    plugin: migration_lookup
-    source: field_author_value
-    migration: upgrade_d7_node_story_author
-  uid:
-    - plugin: get
-      source: uid
-  status: constants/status
-  parent_type: "node"
-  field_text: bio
-  field_text/format: constants/format
-#    -
-#      plugin: sub_process
-#      source: bio
-#      process:
-#        value: value
-#        format:
-#          plugin: default_value
-#          default_value: 'full_html'
-destination:
-  plugin: 'entity_reference_revisions:paragraph'
-  default_bundle: text
-dependencies:
-  enforced:
-    module:
-      - paragraphs
-migration_dependencies:
-  required:
-    - upgrade_d7_user
diff --git a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_user_role.yml b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_user_role.yml
index 2e816de..a7076f7 100644
--- a/web/modules/custom/geo_upgrade/migrations/upgrade_d7_user_role.yml
+++ b/web/modules/custom/geo_upgrade/migrations/upgrade_d7_user_role.yml
@@ -17,23 +17,32 @@ process:
     -
       plugin: machine_name
       source: name
-    -
-      plugin: static_map
-      map:
-        'administrator': 'manager'
-        'proofreader': 'contributor'
-        'content_administrator': 'editor'
-      bypass: TRUE
     -
       plugin: user_update_8002
   label:
     -
-      plugin: static_map
+      plugin: get
       source: name
+  permissions:
+    -
+      plugin: static_map
+      source: permissions
+      bypass: true
       map:
-        'administrator': 'manager'
-        'proofreader': 'contributor'
-        'content administrator': 'editor'
+        'use PHP for block visibility': 'use PHP for settings'
+        'administer site-wide contact form': 'administer contact forms'
+        'post comments without approval': 'skip comment approval'
+        'edit own blog entries': 'edit own blog content'
+        'edit any blog entry': 'edit any blog content'
+        'delete own blog entries': 'delete own blog content'
+        'delete any blog entry': 'delete any blog content'
+        'create forum topics': 'create forum content'
+        'delete any forum topic': 'delete any forum content'
+        'delete own forum topics': 'delete own forum content'
+        'edit any forum topic': 'edit any forum content'
+        'edit own forum topics': 'edit own forum content'
+    -
+      plugin: flatten
   weight:
     -
       plugin: get
diff --git a/web/modules/custom/geo_upgrade/src/Plugin/migrate/process/PublicationDateDefault.php b/web/modules/custom/geo_upgrade/src/Plugin/migrate/process/PublicationDateDefault.php
deleted file mode 100644
index 63762eb..0000000
--- a/web/modules/custom/geo_upgrade/src/Plugin/migrate/process/PublicationDateDefault.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-
-namespace Drupal\geo_upgrade\Plugin\migrate\process;
-
-use Drupal\migrate\MigrateExecutableInterface;
-use Drupal\migrate\MigrateSkipRowException;
-use Drupal\migrate\ProcessPluginBase;
-use Drupal\migrate\Row;
-
-/**
- * @MigrateProcessPlugin(
- *   id = "publication_date_default",
- *   handle_multiples = TRUE
- * )
- */
-class PublicationDateDefault extends ProcessPluginBase {
-  /**
-   * {@inheritdoc}
-   */
-  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
-    $created_date = $row->getSourceProperty('created');
-    if (!isset($value) || empty($value)) {
-      $value = [0 => ['value' => date('Y-m-d\TH:i:s', $created_date)]];
-    }
-    return $value;
-  }
-}
diff --git a/web/modules/custom/geo_upgrade/src/Plugin/migrate/process/StoryBio.php b/web/modules/custom/geo_upgrade/src/Plugin/migrate/process/StoryBio.php
deleted file mode 100644
index cb939f0..0000000
--- a/web/modules/custom/geo_upgrade/src/Plugin/migrate/process/StoryBio.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-
-namespace Drupal\geo_upgrade\Plugin\migrate\process;
-
-use Drupal\migrate\MigrateExecutableInterface;
-use Drupal\migrate\MigrateSkipRowException;
-use Drupal\migrate\ProcessPluginBase;
-use Drupal\migrate\Row;
-
-/**
- * @MigrateProcessPlugin(
- *   id = "geo_story_bio"
- * )
- */
-class StoryBio extends ProcessPluginBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
-    $result = [];
-    foreach ($value[0] as $key => $item) {
-      $result[$key] = $item;
-      $result[$key]['bio'] = isset($value[1][0]['value']) ? $value[1][0]['value'] : '';
-    }
-    return $result;
-  }
-}
diff --git a/web/modules/custom/geo_upgrade/src/Plugin/migrate/source/Author.php b/web/modules/custom/geo_upgrade/src/Plugin/migrate/source/Author.php
index 6daec12..215d5b6 100644
--- a/web/modules/custom/geo_upgrade/src/Plugin/migrate/source/Author.php
+++ b/web/modules/custom/geo_upgrade/src/Plugin/migrate/source/Author.php
@@ -24,38 +24,6 @@ class Author extends SqlBase {
     // Make sure to all the author names are trimmed.
     $row->setSourceProperty('field_author_value', trim($field_author));
 
-    // The bio value is going to be get from the last contribution of the user
-    // where the bio field is not empty.
-    $query = $this->database->query(
-      'SELECT
-                fdfa.entity_id,
-                fdfa.revision_id,
-                n.nid
-            FROM field_data_field_author fdfa
-            LEFT JOIN node n ON (n.nid = fdfa.entity_id)
-            WHERE field_author_value = :field_author
-            ORDER BY entity_id DESC',
-      ['field_author' => $field_author]
-    );
-    foreach ($query as $record) {
-      $row->setSourceProperty('uid', $record->uid);
-      $bio_query = $this->database->query(
-        "SELECT field_author_bio_value FROM field_data_field_author_bio WHERE entity_id = :entity_id AND revision_id = :revision_id",
-        ['entity_id' => $record->entity_id, 'revision_id' => $record->revision_id]
-      );
-      $bio_result = $bio_query->fetchAssoc();
-
-      // Once we find a bio no need to continue.
-      if (!empty($bio_result)) {
-        break;
-      }
-    }
-
-    $row->setSourceProperty('bio', ["value" => '']);
-    if (!empty($bio_result)) {
-      $row->setSourceProperty('bio', ["value" => $bio_result['field_author_bio_value']]);
-    }
-
     return parent::prepareRow($row);
   }
 
diff --git a/web/profiles/.gitignore b/web/profiles/.gitignore
deleted file mode 100644
index 739a339..0000000
--- a/web/profiles/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/README.txt
\ No newline at end of file
diff --git a/web/robots.txt b/web/robots.txt
index 3ad8e2e..54da162 100644
--- a/web/robots.txt
+++ b/web/robots.txt
@@ -37,15 +37,7 @@ Allow: /profiles/*.svg
 Disallow: /core/
 Disallow: /profiles/
 # Files
-Disallow: /README.md
-Disallow: /composer/Metapackage/README.txt
-Disallow: /composer/Plugin/ProjectMessage/README.md
-Disallow: /composer/Plugin/Scaffold/README.md
-Disallow: /composer/Plugin/VendorHardening/README.txt
-Disallow: /composer/Template/README.txt
-Disallow: /modules/README.txt
-Disallow: /sites/README.txt
-Disallow: /themes/README.txt
+Disallow: /README.txt
 Disallow: /web.config
 # Paths (clean URLs)
 Disallow: /admin/
@@ -53,21 +45,17 @@ Disallow: /comment/reply/
 Disallow: /filter/tips
 Disallow: /node/add/
 Disallow: /search/
-Disallow: /user/register
-Disallow: /user/password
-Disallow: /user/login
-Disallow: /user/logout
-Disallow: /media/oembed
-Disallow: /*/media/oembed
+Disallow: /user/register/
+Disallow: /user/password/
+Disallow: /user/login/
+Disallow: /user/logout/
 # Paths (no clean URLs)
 Disallow: /index.php/admin/
 Disallow: /index.php/comment/reply/
 Disallow: /index.php/filter/tips
 Disallow: /index.php/node/add/
 Disallow: /index.php/search/
-Disallow: /index.php/user/password
-Disallow: /index.php/user/register
-Disallow: /index.php/user/login
-Disallow: /index.php/user/logout
-Disallow: /index.php/media/oembed
-Disallow: /index.php/*/media/oembed
+Disallow: /index.php/user/password/
+Disallow: /index.php/user/register/
+Disallow: /index.php/user/login/
+Disallow: /index.php/user/logout/
diff --git a/web/sites/.gitignore b/web/sites/.gitignore
deleted file mode 100644
index 739a339..0000000
--- a/web/sites/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/README.txt
\ No newline at end of file
diff --git a/web/sites/default/settings.ddev.php b/web/sites/default/settings.ddev.php
index 84ed5dd..29c495b 100644
--- a/web/sites/default/settings.ddev.php
+++ b/web/sites/default/settings.ddev.php
@@ -57,6 +57,11 @@ $config['image.settings']['suppress_itok_output'] = TRUE;
 $config['image.settings']['allow_insecure_derivatives'] = TRUE;
 
 
+// This specifies the default configuration sync directory.
+if (empty($config_directories[CONFIG_SYNC_DIRECTORY])) {
+  $config_directories[CONFIG_SYNC_DIRECTORY] = '../config/sync';
+}
+
 /**
  * Load services definition file.
  */
diff --git a/web/sites/default/settings.php b/web/sites/default/settings.php
index cc6670c..57b9c14 100644
--- a/web/sites/default/settings.php
+++ b/web/sites/default/settings.php
@@ -1,12 +1,5 @@
 <?php
 
-$settings['locale_custom_strings_en'][] = [
-  'Sticky at top of lists'      => 'Feature on front page',
-];
-
-$settings['config_sync_directory'] = '../config/sync';
-
-
 // #ddev-generated: Automatically generated Drupal settings file.
 if (file_exists($app_root . '/' . $site_path . '/settings.ddev.php')) {
   include $app_root . '/' . $site_path . '/settings.ddev.php';
diff --git a/web/themes/.gitignore b/web/themes/.gitignore
deleted file mode 100644
index 739a339..0000000
--- a/web/themes/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/README.txt
\ No newline at end of file
diff --git a/web/themes/custom/geofresco/.nvmrc b/web/themes/custom/geofresco/.nvmrc
index 6f7f377..33edba2 100644
--- a/web/themes/custom/geofresco/.nvmrc
+++ b/web/themes/custom/geofresco/.nvmrc
@@ -1 +1 @@
-v16
+v8.4.0
diff --git a/web/themes/custom/geofresco/README.md b/web/themes/custom/geofresco/README.md
index a202a5c..b23a098 100644
--- a/web/themes/custom/geofresco/README.md
+++ b/web/themes/custom/geofresco/README.md
@@ -45,19 +45,12 @@ Autoprefixer & Babel is set to support:
 
 These can be updated at any time within the `package.json`.
 
-### Run the following command from the theme directory
-
-`ddev npm install`
-
-### Alternat non-DDEV
-
-Run the following command from the theme directory (that's the folder where this README is).
-
-#### Use the right version of node with:
-
+### Run the following commands from the theme directory
 If you haven't yet, install nvm:
 https://github.com/creationix/nvm
 
+#### Use the right version of node with:
+
 `nvm use`
 
 _This command will look at your `.nvmrc` file and use the version node.js specified in it. This ensures all developers use the same version of node for consistency._
@@ -72,8 +65,37 @@ _This command will look at your `.nvmrc` file and use the version node.js specif
 
 _This command looks at `package.json` and installs all the npm dependencies specified in it.  Some of the dependencies include gulp, autoprefixer, gulp-sass and others._
 
-#### Compile CSS
+#### Gulp tasks
 
+Provided by default are seven npm scripts that point to Gulp tasks. We run gulp through npm scripts so the build tools can change without the user ever knowing.
+
+1. Run the default build task (gulp in this instance) and everything in it.
+  This is the equivalent to running `gulp` on the command line with Gulp installed globally.
   ```
-  ./css
+  npm run build
+  ```
+
+2. Compile Sass and JS.
+  ```
+  npm run compile
+  ```
+
+3. Watch files and run tasks when they change.
+  ```
+  npm run watch
+  ```
+
+4. Compress png and svg assets.
+  ```
+  npm run compress
+  ```
+
+5. Lint Sass and JS files.
+  ```
+  npm run lint
+  ```
+
+6. Delete compiled Sass, JS and style guide files from the /dist directory.
+  ```
+  npm run clean
   ```
diff --git a/web/themes/custom/geofresco/css b/web/themes/custom/geofresco/css
index 00edf29..31ce215 100755
--- a/web/themes/custom/geofresco/css
+++ b/web/themes/custom/geofresco/css
@@ -1,5 +1 @@
-#!/bin/bash
-
-sassc src/global/global.scss dist/css/global.css
-sassc src/global/overrides.scss dist/css/overrides.css
-./node_modules/postcss-cli/bin/postcss --no-map --use autoprefixer --replace dist/css/global.css dist/css/overrides.css
+npm run compile
diff --git a/web/themes/custom/geofresco/dist/css/global.css b/web/themes/custom/geofresco/dist/css/global.css
index 996f3c5..bb21cfc 100644
--- a/web/themes/custom/geofresco/dist/css/global.css
+++ b/web/themes/custom/geofresco/dist/css/global.css
@@ -1,43 +1,248 @@
-@charset "UTF-8";
-/* Bulma Utilities */
-:root {
-  --bulma-control-radius: var(--bulma-radius);
-  --bulma-control-radius-small: var(--bulma-radius-small);
-  --bulma-control-border-width: 1px;
-  --bulma-control-height: 2.5em;
-  --bulma-control-line-height: 1.5;
-  --bulma-control-padding-vertical: calc(0.5em - 1px);
-  --bulma-control-padding-horizontal: calc(0.75em - 1px);
-  --bulma-control-size: var(--bulma-size-normal);
-  --bulma-control-focus-shadow-l: 50%;
-}
+@-webkit-keyframes spinAround {
+  from {
+    -webkit-transform: rotate(0deg);
+    transform: rotate(0deg); }
+  to {
+    -webkit-transform: rotate(359deg);
+    transform: rotate(359deg); } }
+
+@keyframes spinAround {
+  from {
+    -webkit-transform: rotate(0deg);
+    transform: rotate(0deg); }
+  to {
+    -webkit-transform: rotate(359deg);
+    transform: rotate(359deg); } }
+
+.delete, .modal-close, .is-unselectable, .button, .file, .breadcrumb, .pagination-previous,
+.pagination-next,
+.pagination-link,
+.pagination-ellipsis, .tabs {
+  -webkit-touch-callout: none;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none; }
+
+.select:not(.is-multiple):not(.is-loading)::after, .navbar-link:not(.is-arrowless)::after {
+  border: 3px solid transparent;
+  border-radius: 2px;
+  border-right: 0;
+  border-top: 0;
+  content: " ";
+  display: block;
+  height: 0.625em;
+  margin-top: -0.4375em;
+  pointer-events: none;
+  position: absolute;
+  top: 50%;
+  -webkit-transform: rotate(-45deg);
+  -ms-transform: rotate(-45deg);
+  transform: rotate(-45deg);
+  -webkit-transform-origin: center;
+  -ms-transform-origin: center;
+  transform-origin: center;
+  width: 0.625em; }
+
+.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child),
+.subtitle:not(:last-child), .block:not(:last-child), .highlight:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .list:not(:last-child), .message:not(:last-child), .tabs:not(:last-child) {
+  margin-bottom: 1.5rem; }
+
+.delete, .modal-close {
+  -moz-appearance: none;
+  -webkit-appearance: none;
+  background-color: rgba(10, 10, 10, 0.2);
+  border: none;
+  border-radius: 290486px;
+  cursor: pointer;
+  pointer-events: auto;
+  display: inline-block;
+  -webkit-box-flex: 0;
+  -ms-flex-positive: 0;
+  flex-grow: 0;
+  -ms-flex-negative: 0;
+  flex-shrink: 0;
+  font-size: 0;
+  height: 20px;
+  max-height: 20px;
+  max-width: 20px;
+  min-height: 20px;
+  min-width: 20px;
+  outline: none;
+  position: relative;
+  vertical-align: top;
+  width: 20px; }
+  .delete::before, .modal-close::before, .delete::after, .modal-close::after {
+    background-color: white;
+    content: "";
+    display: block;
+    left: 50%;
+    position: absolute;
+    top: 50%;
+    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
+    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
+    transform: translateX(-50%) translateY(-50%) rotate(45deg);
+    -webkit-transform-origin: center center;
+    -ms-transform-origin: center center;
+    transform-origin: center center; }
+  .delete::before, .modal-close::before {
+    height: 2px;
+    width: 50%; }
+  .delete::after, .modal-close::after {
+    height: 50%;
+    width: 2px; }
+  .delete:hover, .modal-close:hover, .delete:focus, .modal-close:focus {
+    background-color: rgba(10, 10, 10, 0.3); }
+  .delete:active, .modal-close:active {
+    background-color: rgba(10, 10, 10, 0.4); }
+  .is-small.delete, .is-small.modal-close {
+    height: 16px;
+    max-height: 16px;
+    max-width: 16px;
+    min-height: 16px;
+    min-width: 16px;
+    width: 16px; }
+  .is-medium.delete, .is-medium.modal-close {
+    height: 24px;
+    max-height: 24px;
+    max-width: 24px;
+    min-height: 24px;
+    min-width: 24px;
+    width: 24px; }
+  .is-large.delete, .is-large.modal-close {
+    height: 32px;
+    max-height: 32px;
+    max-width: 32px;
+    min-height: 32px;
+    min-width: 32px;
+    width: 32px; }
+
+.button.is-loading::after, .loader, .select.is-loading::after, .control.is-loading::after {
+  -webkit-animation: spinAround 500ms infinite linear;
+  animation: spinAround 500ms infinite linear;
+  border: 2px solid #dbdbdb;
+  border-radius: 290486px;
+  border-right-color: transparent;
+  border-top-color: transparent;
+  content: "";
+  display: block;
+  height: 1em;
+  position: relative;
+  width: 1em; }
+
+.is-overlay, .image.is-square img,
+.image.is-square .has-ratio, .image.is-1by1 img,
+.image.is-1by1 .has-ratio, .image.is-5by4 img,
+.image.is-5by4 .has-ratio, .image.is-4by3 img,
+.image.is-4by3 .has-ratio, .image.is-3by2 img,
+.image.is-3by2 .has-ratio, .image.is-5by3 img,
+.image.is-5by3 .has-ratio, .image.is-16by9 img,
+.image.is-16by9 .has-ratio, .image.is-2by1 img,
+.image.is-2by1 .has-ratio, .image.is-3by1 img,
+.image.is-3by1 .has-ratio, .image.is-4by5 img,
+.image.is-4by5 .has-ratio, .image.is-3by4 img,
+.image.is-3by4 .has-ratio, .image.is-2by3 img,
+.image.is-2by3 .has-ratio, .image.is-3by5 img,
+.image.is-3by5 .has-ratio, .image.is-9by16 img,
+.image.is-9by16 .has-ratio, .image.is-1by2 img,
+.image.is-1by2 .has-ratio, .image.is-1by3 img,
+.image.is-1by3 .has-ratio, .modal, .modal-background, .hero-video {
+  bottom: 0;
+  left: 0;
+  position: absolute;
+  right: 0;
+  top: 0; }
+
+.button, .input, .textarea, .select select, .file-cta,
+.file-name, .pagination-previous,
+.pagination-next,
+.pagination-link,
+.pagination-ellipsis {
+  -moz-appearance: none;
+  -webkit-appearance: none;
+  -webkit-box-align: center;
+  -ms-flex-align: center;
+  align-items: center;
+  border: 1px solid transparent;
+  border-radius: 4px;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  display: -webkit-inline-box;
+  display: -ms-inline-flexbox;
+  display: inline-flex;
+  font-size: 1rem;
+  height: 2.25em;
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
+  justify-content: flex-start;
+  line-height: 1.5;
+  padding-bottom: calc(0.375em - 1px);
+  padding-left: calc(0.625em - 1px);
+  padding-right: calc(0.625em - 1px);
+  padding-top: calc(0.375em - 1px);
+  position: relative;
+  vertical-align: top; }
+  .button:focus, .input:focus, .textarea:focus, .select select:focus, .file-cta:focus,
+  .file-name:focus, .pagination-previous:focus,
+  .pagination-next:focus,
+  .pagination-link:focus,
+  .pagination-ellipsis:focus, .is-focused.button, .is-focused.input, .is-focused.textarea, .select select.is-focused, .is-focused.file-cta,
+  .is-focused.file-name, .is-focused.pagination-previous,
+  .is-focused.pagination-next,
+  .is-focused.pagination-link,
+  .is-focused.pagination-ellipsis, .button:active, .input:active, .textarea:active, .select select:active, .file-cta:active,
+  .file-name:active, .pagination-previous:active,
+  .pagination-next:active,
+  .pagination-link:active,
+  .pagination-ellipsis:active, .is-active.button, .is-active.input, .is-active.textarea, .select select.is-active, .is-active.file-cta,
+  .is-active.file-name, .is-active.pagination-previous,
+  .is-active.pagination-next,
+  .is-active.pagination-link,
+  .is-active.pagination-ellipsis {
+    outline: none; }
+  .button[disabled], .input[disabled], .textarea[disabled], .select select[disabled], .file-cta[disabled],
+  .file-name[disabled], .pagination-previous[disabled],
+  .pagination-next[disabled],
+  .pagination-link[disabled],
+  .pagination-ellipsis[disabled],
+  fieldset[disabled] .button,
+  fieldset[disabled] .input,
+  fieldset[disabled] .textarea,
+  fieldset[disabled] .select select,
+  .select fieldset[disabled] select,
+  fieldset[disabled] .file-cta,
+  fieldset[disabled] .file-name,
+  fieldset[disabled] .pagination-previous,
+  fieldset[disabled] .pagination-next,
+  fieldset[disabled] .pagination-link,
+  fieldset[disabled] .pagination-ellipsis {
+    cursor: not-allowed; }
 
 @font-face {
-  font-family: "Ocan";
+  font-family: 'Ocan';
   src: url("../../fonts/OcanSansStd-Book.woff") format("woff");
   font-weight: normal;
-  font-style: normal;
-}
+  font-style: normal; }
+
 @font-face {
-  font-family: "Ocan";
+  font-family: 'Ocan';
   src: url("../../fonts/OcanSansStd-Bold.woff") format("woff");
   font-weight: 700;
-  font-style: normal;
-}
+  font-style: normal; }
+
 @font-face {
-  font-family: "Ocan";
+  font-family: 'Ocan';
   src: url("../../fonts/OcanSansStd-BookIta.woff") format("woff");
   font-weight: normal;
-  font-style: italic;
-}
+  font-style: italic; }
+
 @font-face {
-  font-family: "Ocan";
+  font-family: 'Ocan';
   src: url("../../fonts/OcanSansStd-BoldIta.woff") format("woff");
   font-weight: 700;
-  font-style: italic;
-}
-/* Bulma Base */
-/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
+  font-style: italic; }
+
+/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */
 html,
 body,
 p,
@@ -62,8 +267,7 @@ h4,
 h5,
 h6 {
   margin: 0;
-  padding: 0;
-}
+  padding: 0; }
 
 h1,
 h2,
@@ -72,90 +276,63 @@ h4,
 h5,
 h6 {
   font-size: 100%;
-  font-weight: normal;
-}
+  font-weight: normal; }
 
 ul {
-  list-style: none;
-}
+  list-style: none; }
 
 button,
 input,
 select,
 textarea {
-  margin: 0;
-}
+  margin: 0; }
 
 html {
-  box-sizing: border-box;
-}
+  -webkit-box-sizing: border-box;
+  box-sizing: border-box; }
 
 *, *::before, *::after {
-  box-sizing: inherit;
-}
+  -webkit-box-sizing: inherit;
+  box-sizing: inherit; }
 
 img,
+embed,
+iframe,
+object,
 video {
   height: auto;
-  max-width: 100%;
-}
+  max-width: 100%; }
+
+audio {
+  max-width: 100%; }
 
 iframe {
-  border: 0;
-}
+  border: 0; }
 
 table {
   border-collapse: collapse;
-  border-spacing: 0;
-}
+  border-spacing: 0; }
 
 td,
 th {
-  padding: 0;
-}
-td:not([align]),
-th:not([align]) {
-  text-align: inherit;
-}
-
-:root {
-  --bulma-body-background-color: var(--bulma-scheme-main);
-  --bulma-body-size: 1em;
-  --bulma-body-min-width: 300px;
-  --bulma-body-rendering: optimizeLegibility;
-  --bulma-body-family: var(--bulma-family-primary);
-  --bulma-body-overflow-x: hidden;
-  --bulma-body-overflow-y: scroll;
-  --bulma-body-color: var(--bulma-text);
-  --bulma-body-font-size: 1em;
-  --bulma-body-weight: var(--bulma-weight-normal);
-  --bulma-body-line-height: 1.5;
-  --bulma-code-family: var(--bulma-family-code);
-  --bulma-code-padding: 0.25em 0.5em 0.25em;
-  --bulma-code-weight: normal;
-  --bulma-code-size: 0.875em;
-  --bulma-small-font-size: 0.875em;
-  --bulma-hr-background-color: var(--bulma-background);
-  --bulma-hr-height: 2px;
-  --bulma-hr-margin: 1.5rem 0;
-  --bulma-strong-color: var(--bulma-text-strong);
-  --bulma-strong-weight: var(--bulma-weight-semibold);
-  --bulma-pre-font-size: 0.875em;
-  --bulma-pre-padding: 1.25rem 1.5rem;
-  --bulma-pre-code-font-size: 1em;
-}
+  padding: 0; }
+  td:not([align]),
+  th:not([align]) {
+    text-align: left; }
 
 html {
-  background-color: var(--bulma-body-background-color);
-  font-size: var(--bulma-body-size);
+  background-color: white;
+  font-size: 16px;
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
-  min-width: var(--bulma-body-min-width);
-  overflow-x: var(--bulma-body-overflow-x);
-  overflow-y: var(--bulma-body-overflow-y);
-  text-rendering: var(--bulma-body-rendering);
-  text-size-adjust: 100%;
-}
+  min-width: 300px;
+  overflow-x: hidden;
+  overflow-y: scroll;
+  text-rendering: optimizeLegibility;
+  -webkit-text-size-adjust: 100%;
+  -moz-text-size-adjust: 100%;
+  -ms-text-size-adjust: 100%;
+  text-size-adjust: 100%; }
 
 article,
 aside,
@@ -164,168 +341,909 @@ footer,
 header,
 hgroup,
 section {
-  display: block;
-}
+  display: block; }
 
 body,
 button,
 input,
-optgroup,
 select,
 textarea {
-  font-family: var(--bulma-body-family);
-}
+  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
 
 code,
 pre {
   -moz-osx-font-smoothing: auto;
   -webkit-font-smoothing: auto;
-  font-family: var(--bulma-code-family);
-}
+  font-family: monospace; }
 
 body {
-  color: var(--bulma-body-color);
-  font-size: var(--bulma-body-font-size);
-  font-weight: var(--bulma-body-weight);
-  line-height: var(--bulma-body-line-height);
-}
-
-a,
-button {
-  cursor: pointer;
-}
-a:focus-visible,
-button:focus-visible {
-  outline-color: hsl(var(--bulma-focus-h), var(--bulma-focus-s), var(--bulma-focus-l));
-  outline-offset: var(--bulma-focus-offset);
-  outline-style: var(--bulma-focus-style);
-  outline-width: var(--bulma-focus-width);
-}
-a:focus-visible:active,
-button:focus-visible:active {
-  outline-width: 1px;
-}
-a:active,
-button:active {
-  outline-width: 1px;
-}
+  color: #4a4a4a;
+  font-size: 1em;
+  font-weight: 400;
+  line-height: 1.5; }
 
 a {
-  color: var(--bulma-link-text);
+  color: #4391E0;
   cursor: pointer;
-  text-decoration: none;
-  transition-duration: var(--bulma-duration);
-  transition-property: background-color, border-color, color;
-}
-a strong {
-  color: currentColor;
-}
-
-button {
-  appearance: none;
-  background: none;
-  border: none;
-  color: inherit;
-  font-family: inherit;
-  font-size: 1em;
-  margin: 0;
-  padding: 0;
-  transition-duration: var(--bulma-duration);
-  transition-property: background-color, border-color, color;
-}
+  text-decoration: none; }
+  a strong {
+    color: currentColor; }
+  a:hover {
+    color: #363636; }
 
 code {
-  background-color: var(--bulma-code-background);
-  border-radius: 0.5em;
-  color: var(--bulma-code);
-  font-size: var(--bulma-code-size);
-  font-weight: var(--bulma-code-weight);
-  padding: var(--bulma-code-padding);
-}
+  background-color: whitesmoke;
+  color: #a70c20;
+  font-size: 0.875em;
+  font-weight: normal;
+  padding: 0.25em 0.5em 0.25em; }
 
 hr {
-  background-color: var(--bulma-hr-background-color);
+  background-color: whitesmoke;
   border: none;
   display: block;
-  height: var(--bulma-hr-height);
-  margin: var(--bulma-hr-margin);
-}
+  height: 2px;
+  margin: 1.5rem 0; }
 
 img {
   height: auto;
-  max-width: 100%;
-}
+  max-width: 100%; }
 
-input[type=checkbox],
-input[type=radio] {
-  vertical-align: baseline;
-}
+input[type="checkbox"],
+input[type="radio"] {
+  vertical-align: baseline; }
 
 small {
-  font-size: var(--bulma-small-font-size);
-}
+  font-size: 0.875em; }
 
 span {
   font-style: inherit;
-  font-weight: inherit;
-}
+  font-weight: inherit; }
 
 strong {
-  color: var(--bulma-strong-color);
-  font-weight: var(--bulma-strong-weight);
-}
-
-svg {
-  height: auto;
-  width: auto;
-}
+  color: #363636;
+  font-weight: 700; }
 
 fieldset {
-  border: none;
-}
+  border: none; }
 
 pre {
   -webkit-overflow-scrolling: touch;
-  background-color: var(--bulma-pre-background);
-  color: var(--bulma-pre);
-  font-size: var(--bulma-pre-font-size);
+  background-color: whitesmoke;
+  color: #4a4a4a;
+  font-size: 0.875em;
   overflow-x: auto;
-  padding: var(--bulma-pre-padding);
+  padding: 1.25rem 1.5rem;
   white-space: pre;
-  word-wrap: normal;
-}
-pre code {
-  background-color: transparent;
-  color: currentColor;
-  font-size: var(--bulma-pre-code-font-size);
-  padding: 0;
-}
+  word-wrap: normal; }
+  pre code {
+    background-color: transparent;
+    color: currentColor;
+    font-size: 1em;
+    padding: 0; }
 
 table td,
 table th {
-  vertical-align: top;
-}
-table td:not([align]),
-table th:not([align]) {
-  text-align: inherit;
-}
-table th {
-  color: var(--bulma-text-strong);
-}
+  vertical-align: top; }
+  table td:not([align]),
+  table th:not([align]) {
+    text-align: left; }
+
+table th {
+  color: #363636; }
+
+.is-clearfix::after {
+  clear: both;
+  content: " ";
+  display: table; }
+
+.is-pulled-left {
+  float: left !important; }
+
+.is-pulled-right {
+  float: right !important; }
+
+.is-clipped {
+  overflow: hidden !important; }
+
+.is-size-1 {
+  font-size: 3rem !important; }
+
+.is-size-2 {
+  font-size: 2.5rem !important; }
+
+.is-size-3 {
+  font-size: 2rem !important; }
+
+.is-size-4 {
+  font-size: 1.5rem !important; }
+
+.is-size-5 {
+  font-size: 1.25rem !important; }
+
+.is-size-6 {
+  font-size: 1rem !important; }
+
+.is-size-7 {
+  font-size: 0.75rem !important; }
+
+@media screen and (max-width: 768px) {
+  .is-size-1-mobile {
+    font-size: 3rem !important; }
+  .is-size-2-mobile {
+    font-size: 2.5rem !important; }
+  .is-size-3-mobile {
+    font-size: 2rem !important; }
+  .is-size-4-mobile {
+    font-size: 1.5rem !important; }
+  .is-size-5-mobile {
+    font-size: 1.25rem !important; }
+  .is-size-6-mobile {
+    font-size: 1rem !important; }
+  .is-size-7-mobile {
+    font-size: 0.75rem !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-size-1-tablet {
+    font-size: 3rem !important; }
+  .is-size-2-tablet {
+    font-size: 2.5rem !important; }
+  .is-size-3-tablet {
+    font-size: 2rem !important; }
+  .is-size-4-tablet {
+    font-size: 1.5rem !important; }
+  .is-size-5-tablet {
+    font-size: 1.25rem !important; }
+  .is-size-6-tablet {
+    font-size: 1rem !important; }
+  .is-size-7-tablet {
+    font-size: 0.75rem !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-size-1-touch {
+    font-size: 3rem !important; }
+  .is-size-2-touch {
+    font-size: 2.5rem !important; }
+  .is-size-3-touch {
+    font-size: 2rem !important; }
+  .is-size-4-touch {
+    font-size: 1.5rem !important; }
+  .is-size-5-touch {
+    font-size: 1.25rem !important; }
+  .is-size-6-touch {
+    font-size: 1rem !important; }
+  .is-size-7-touch {
+    font-size: 0.75rem !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-size-1-desktop {
+    font-size: 3rem !important; }
+  .is-size-2-desktop {
+    font-size: 2.5rem !important; }
+  .is-size-3-desktop {
+    font-size: 2rem !important; }
+  .is-size-4-desktop {
+    font-size: 1.5rem !important; }
+  .is-size-5-desktop {
+    font-size: 1.25rem !important; }
+  .is-size-6-desktop {
+    font-size: 1rem !important; }
+  .is-size-7-desktop {
+    font-size: 0.75rem !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-size-1-widescreen {
+    font-size: 3rem !important; }
+  .is-size-2-widescreen {
+    font-size: 2.5rem !important; }
+  .is-size-3-widescreen {
+    font-size: 2rem !important; }
+  .is-size-4-widescreen {
+    font-size: 1.5rem !important; }
+  .is-size-5-widescreen {
+    font-size: 1.25rem !important; }
+  .is-size-6-widescreen {
+    font-size: 1rem !important; }
+  .is-size-7-widescreen {
+    font-size: 0.75rem !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-size-1-fullhd {
+    font-size: 3rem !important; }
+  .is-size-2-fullhd {
+    font-size: 2.5rem !important; }
+  .is-size-3-fullhd {
+    font-size: 2rem !important; }
+  .is-size-4-fullhd {
+    font-size: 1.5rem !important; }
+  .is-size-5-fullhd {
+    font-size: 1.25rem !important; }
+  .is-size-6-fullhd {
+    font-size: 1rem !important; }
+  .is-size-7-fullhd {
+    font-size: 0.75rem !important; } }
+
+.has-text-centered {
+  text-align: center !important; }
+
+.has-text-justified {
+  text-align: justify !important; }
+
+.has-text-left {
+  text-align: left !important; }
+
+.has-text-right {
+  text-align: right !important; }
+
+@media screen and (max-width: 768px) {
+  .has-text-centered-mobile {
+    text-align: center !important; } }
+
+@media screen and (min-width: 769px), print {
+  .has-text-centered-tablet {
+    text-align: center !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .has-text-centered-tablet-only {
+    text-align: center !important; } }
+
+@media screen and (max-width: 1023px) {
+  .has-text-centered-touch {
+    text-align: center !important; } }
+
+@media screen and (min-width: 1024px) {
+  .has-text-centered-desktop {
+    text-align: center !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .has-text-centered-desktop-only {
+    text-align: center !important; } }
+
+@media screen and (min-width: 1216px) {
+  .has-text-centered-widescreen {
+    text-align: center !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .has-text-centered-widescreen-only {
+    text-align: center !important; } }
+
+@media screen and (min-width: 1408px) {
+  .has-text-centered-fullhd {
+    text-align: center !important; } }
+
+@media screen and (max-width: 768px) {
+  .has-text-justified-mobile {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 769px), print {
+  .has-text-justified-tablet {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .has-text-justified-tablet-only {
+    text-align: justify !important; } }
+
+@media screen and (max-width: 1023px) {
+  .has-text-justified-touch {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 1024px) {
+  .has-text-justified-desktop {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .has-text-justified-desktop-only {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 1216px) {
+  .has-text-justified-widescreen {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .has-text-justified-widescreen-only {
+    text-align: justify !important; } }
+
+@media screen and (min-width: 1408px) {
+  .has-text-justified-fullhd {
+    text-align: justify !important; } }
+
+@media screen and (max-width: 768px) {
+  .has-text-left-mobile {
+    text-align: left !important; } }
+
+@media screen and (min-width: 769px), print {
+  .has-text-left-tablet {
+    text-align: left !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .has-text-left-tablet-only {
+    text-align: left !important; } }
+
+@media screen and (max-width: 1023px) {
+  .has-text-left-touch {
+    text-align: left !important; } }
+
+@media screen and (min-width: 1024px) {
+  .has-text-left-desktop {
+    text-align: left !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .has-text-left-desktop-only {
+    text-align: left !important; } }
+
+@media screen and (min-width: 1216px) {
+  .has-text-left-widescreen {
+    text-align: left !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .has-text-left-widescreen-only {
+    text-align: left !important; } }
+
+@media screen and (min-width: 1408px) {
+  .has-text-left-fullhd {
+    text-align: left !important; } }
+
+@media screen and (max-width: 768px) {
+  .has-text-right-mobile {
+    text-align: right !important; } }
+
+@media screen and (min-width: 769px), print {
+  .has-text-right-tablet {
+    text-align: right !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .has-text-right-tablet-only {
+    text-align: right !important; } }
+
+@media screen and (max-width: 1023px) {
+  .has-text-right-touch {
+    text-align: right !important; } }
+
+@media screen and (min-width: 1024px) {
+  .has-text-right-desktop {
+    text-align: right !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .has-text-right-desktop-only {
+    text-align: right !important; } }
+
+@media screen and (min-width: 1216px) {
+  .has-text-right-widescreen {
+    text-align: right !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .has-text-right-widescreen-only {
+    text-align: right !important; } }
+
+@media screen and (min-width: 1408px) {
+  .has-text-right-fullhd {
+    text-align: right !important; } }
+
+.is-capitalized {
+  text-transform: capitalize !important; }
+
+.is-lowercase {
+  text-transform: lowercase !important; }
+
+.is-uppercase {
+  text-transform: uppercase !important; }
+
+.is-italic {
+  font-style: italic !important; }
+
+.has-text-white {
+  color: white !important; }
+
+a.has-text-white:hover, a.has-text-white:focus {
+  color: #e6e6e6 !important; }
+
+.has-background-white {
+  background-color: white !important; }
+
+.has-text-black {
+  color: #0a0a0a !important; }
+
+a.has-text-black:hover, a.has-text-black:focus {
+  color: black !important; }
+
+.has-background-black {
+  background-color: #0a0a0a !important; }
+
+.has-text-light {
+  color: whitesmoke !important; }
+
+a.has-text-light:hover, a.has-text-light:focus {
+  color: #dbdbdb !important; }
+
+.has-background-light {
+  background-color: whitesmoke !important; }
+
+.has-text-dark {
+  color: #363636 !important; }
+
+a.has-text-dark:hover, a.has-text-dark:focus {
+  color: #1c1c1c !important; }
+
+.has-background-dark {
+  background-color: #363636 !important; }
+
+.has-text-primary {
+  color: #478D00 !important; }
+
+a.has-text-primary:hover, a.has-text-primary:focus {
+  color: #2d5a00 !important; }
+
+.has-background-primary {
+  background-color: #478D00 !important; }
+
+.has-text-link {
+  color: #4391E0 !important; }
+
+a.has-text-link:hover, a.has-text-link:focus {
+  color: #2277ce !important; }
+
+.has-background-link {
+  background-color: #4391E0 !important; }
+
+.has-text-info {
+  color: #209cee !important; }
+
+a.has-text-info:hover, a.has-text-info:focus {
+  color: #0f81cc !important; }
+
+.has-background-info {
+  background-color: #209cee !important; }
+
+.has-text-success {
+  color: #478D00 !important; }
+
+a.has-text-success:hover, a.has-text-success:focus {
+  color: #2d5a00 !important; }
+
+.has-background-success {
+  background-color: #478D00 !important; }
+
+.has-text-warning {
+  color: #ffdd57 !important; }
+
+a.has-text-warning:hover, a.has-text-warning:focus {
+  color: #ffd324 !important; }
+
+.has-background-warning {
+  background-color: #ffdd57 !important; }
+
+.has-text-danger {
+  color: #a70c20 !important; }
+
+a.has-text-danger:hover, a.has-text-danger:focus {
+  color: #770917 !important; }
+
+.has-background-danger {
+  background-color: #a70c20 !important; }
+
+.has-text-black-bis {
+  color: #121212 !important; }
+
+.has-background-black-bis {
+  background-color: #121212 !important; }
+
+.has-text-black-ter {
+  color: #242424 !important; }
+
+.has-background-black-ter {
+  background-color: #242424 !important; }
+
+.has-text-grey-darker {
+  color: #363636 !important; }
+
+.has-background-grey-darker {
+  background-color: #363636 !important; }
+
+.has-text-grey-dark {
+  color: #4a4a4a !important; }
+
+.has-background-grey-dark {
+  background-color: #4a4a4a !important; }
+
+.has-text-grey {
+  color: #7a7a7a !important; }
+
+.has-background-grey {
+  background-color: #7a7a7a !important; }
+
+.has-text-grey-light {
+  color: #b5b5b5 !important; }
+
+.has-background-grey-light {
+  background-color: #b5b5b5 !important; }
+
+.has-text-grey-lighter {
+  color: #dbdbdb !important; }
+
+.has-background-grey-lighter {
+  background-color: #dbdbdb !important; }
+
+.has-text-white-ter {
+  color: whitesmoke !important; }
+
+.has-background-white-ter {
+  background-color: whitesmoke !important; }
+
+.has-text-white-bis {
+  color: #fafafa !important; }
+
+.has-background-white-bis {
+  background-color: #fafafa !important; }
+
+.has-text-weight-light {
+  font-weight: 300 !important; }
+
+.has-text-weight-normal {
+  font-weight: 400 !important; }
+
+.has-text-weight-medium {
+  font-weight: 500 !important; }
+
+.has-text-weight-semibold {
+  font-weight: 600 !important; }
+
+.has-text-weight-bold {
+  font-weight: 700 !important; }
+
+.is-family-primary {
+  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
+
+.is-family-secondary {
+  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
+
+.is-family-sans-serif {
+  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
+
+.is-family-monospace {
+  font-family: monospace !important; }
+
+.is-family-code {
+  font-family: monospace !important; }
+
+.is-block {
+  display: block !important; }
+
+@media screen and (max-width: 768px) {
+  .is-block-mobile {
+    display: block !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-block-tablet {
+    display: block !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-block-tablet-only {
+    display: block !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-block-touch {
+    display: block !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-block-desktop {
+    display: block !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-block-desktop-only {
+    display: block !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-block-widescreen {
+    display: block !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-block-widescreen-only {
+    display: block !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-block-fullhd {
+    display: block !important; } }
+
+.is-flex {
+  display: -webkit-box !important;
+  display: -ms-flexbox !important;
+  display: flex !important; }
+
+@media screen and (max-width: 768px) {
+  .is-flex-mobile {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-flex-tablet {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-flex-tablet-only {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-flex-touch {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-flex-desktop {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-flex-desktop-only {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-flex-widescreen {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-flex-widescreen-only {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-flex-fullhd {
+    display: -webkit-box !important;
+    display: -ms-flexbox !important;
+    display: flex !important; } }
+
+.is-inline {
+  display: inline !important; }
+
+@media screen and (max-width: 768px) {
+  .is-inline-mobile {
+    display: inline !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-inline-tablet {
+    display: inline !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-inline-tablet-only {
+    display: inline !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-inline-touch {
+    display: inline !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-inline-desktop {
+    display: inline !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-inline-desktop-only {
+    display: inline !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-inline-widescreen {
+    display: inline !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-inline-widescreen-only {
+    display: inline !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-inline-fullhd {
+    display: inline !important; } }
+
+.is-inline-block {
+  display: inline-block !important; }
+
+@media screen and (max-width: 768px) {
+  .is-inline-block-mobile {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-inline-block-tablet {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-inline-block-tablet-only {
+    display: inline-block !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-inline-block-touch {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-inline-block-desktop {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-inline-block-desktop-only {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-inline-block-widescreen {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-inline-block-widescreen-only {
+    display: inline-block !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-inline-block-fullhd {
+    display: inline-block !important; } }
+
+.is-inline-flex {
+  display: -webkit-inline-box !important;
+  display: -ms-inline-flexbox !important;
+  display: inline-flex !important; }
+
+@media screen and (max-width: 768px) {
+  .is-inline-flex-mobile {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-inline-flex-tablet {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-inline-flex-tablet-only {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-inline-flex-touch {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-inline-flex-desktop {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-inline-flex-desktop-only {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-inline-flex-widescreen {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-inline-flex-widescreen-only {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-inline-flex-fullhd {
+    display: -webkit-inline-box !important;
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important; } }
+
+.is-hidden {
+  display: none !important; }
+
+.is-sr-only {
+  border: none !important;
+  clip: rect(0, 0, 0, 0) !important;
+  height: 0.01em !important;
+  overflow: hidden !important;
+  padding: 0 !important;
+  position: absolute !important;
+  white-space: nowrap !important;
+  width: 0.01em !important; }
+
+@media screen and (max-width: 768px) {
+  .is-hidden-mobile {
+    display: none !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-hidden-tablet {
+    display: none !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-hidden-tablet-only {
+    display: none !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-hidden-touch {
+    display: none !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-hidden-desktop {
+    display: none !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-hidden-desktop-only {
+    display: none !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-hidden-widescreen {
+    display: none !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-hidden-widescreen-only {
+    display: none !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-hidden-fullhd {
+    display: none !important; } }
+
+.is-invisible {
+  visibility: hidden !important; }
+
+@media screen and (max-width: 768px) {
+  .is-invisible-mobile {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 769px), print {
+  .is-invisible-tablet {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 769px) and (max-width: 1023px) {
+  .is-invisible-tablet-only {
+    visibility: hidden !important; } }
+
+@media screen and (max-width: 1023px) {
+  .is-invisible-touch {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 1024px) {
+  .is-invisible-desktop {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 1024px) and (max-width: 1215px) {
+  .is-invisible-desktop-only {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 1216px) {
+  .is-invisible-widescreen {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 1216px) and (max-width: 1407px) {
+  .is-invisible-widescreen-only {
+    visibility: hidden !important; } }
+
+@media screen and (min-width: 1408px) {
+  .is-invisible-fullhd {
+    visibility: hidden !important; } }
+
+.is-marginless {
+  margin: 0 !important; }
+
+.is-paddingless {
+  padding: 0 !important; }
+
+.is-radiusless {
+  border-radius: 0 !important; }
+
+.is-shadowless {
+  -webkit-box-shadow: none !important;
+  box-shadow: none !important; }
+
+.is-relative {
+  position: relative !important; }
 
-@keyframes spinAround {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(359deg);
-  }
-}
-@keyframes pulsate {
-  50% {
-    opacity: 0.5;
-  }
-}
 .title,
 .subtitle,
 .content h1,
@@ -335,886 +1253,961 @@ table th {
 .content h5,
 .content h6,
 .menu {
-  font-family: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif;
-}
+  font-family: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif; }
 
 .image.no-upscale img {
-  width: intrinsic; /* Safari/WebKit uses a non-standard name */
-  width: -moz-max-content; /* Firefox/Gecko */
-  width: -webkit-max-content; /* Chrome */
-}
+  width: intrinsic;
+  /* Safari/WebKit uses a non-standard name */
+  width: -moz-max-content;
+  /* Firefox/Gecko */
+  width: -webkit-max-content;
+  /* Chrome */ }
 
 .green {
-  color: #478D00;
-}
+  color: #478D00; }
 
 .yellow {
-  color: #ffdd57;
-}
-
-/* Bulma Elements */
-.navbar-link:not(.is-arrowless)::after, .select:not(.is-multiple):not(.is-loading)::after {
-  border: 0.125em solid var(--bulma-arrow-color);
-  border-right: 0;
-  border-top: 0;
-  content: " ";
-  display: block;
-  height: 0.625em;
-  margin-top: -0.4375em;
-  pointer-events: none;
-  position: absolute;
-  top: 50%;
-  transform: rotate(-45deg);
-  transform-origin: center;
-  transition-duration: var(--bulma-duration);
-  transition-property: border-color;
-  width: 0.625em;
-}
-
-.media:not(:last-child), .level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .tabs:not(:last-child), .pagination:not(:last-child), .message:not(:last-child), .card:not(:last-child), .breadcrumb:not(:last-child), .field:not(:last-child), .file:not(:last-child), .title:not(:last-child),
-.subtitle:not(:last-child), .tags:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .buttons:not(:last-child), .box:not(:last-child), .block:not(:last-child) {
-  margin-bottom: var(--bulma-block-spacing);
-}
-
-.pagination-previous,
-.pagination-next,
-.pagination-link,
-.pagination-ellipsis, .file-cta,
-.file-name, .select select, .input, .textarea, .button {
-  align-items: center;
-  appearance: none;
-  border-color: transparent;
-  border-style: solid;
-  border-width: var(--bulma-control-border-width);
-  border-radius: var(--bulma-control-radius);
-  box-shadow: none;
-  display: inline-flex;
-  font-size: var(--bulma-control-size);
-  height: var(--bulma-control-height);
-  justify-content: flex-start;
-  line-height: var(--bulma-control-line-height);
-  padding-bottom: var(--bulma-control-padding-vertical);
-  padding-left: var(--bulma-control-padding-horizontal);
-  padding-right: var(--bulma-control-padding-horizontal);
-  padding-top: var(--bulma-control-padding-vertical);
-  position: relative;
-  transition-duration: var(--bulma-duration);
-  transition-property: background-color, border-color, box-shadow, color;
-  vertical-align: top;
-}
-.pagination-previous:focus,
-.pagination-next:focus,
-.pagination-link:focus,
-.pagination-ellipsis:focus, .file-cta:focus,
-.file-name:focus, .select select:focus, .input:focus, .textarea:focus, .button:focus, .pagination-previous:focus-visible,
-.pagination-next:focus-visible,
-.pagination-link:focus-visible,
-.pagination-ellipsis:focus-visible, .file-cta:focus-visible,
-.file-name:focus-visible, .select select:focus-visible, .input:focus-visible, .textarea:focus-visible, .button:focus-visible, .pagination-previous:focus-within,
-.pagination-next:focus-within,
-.pagination-link:focus-within,
-.pagination-ellipsis:focus-within, .file-cta:focus-within,
-.file-name:focus-within, .select select:focus-within, .input:focus-within, .textarea:focus-within, .button:focus-within, .is-focused.pagination-previous,
-.is-focused.pagination-next,
-.is-focused.pagination-link,
-.is-focused.pagination-ellipsis, .is-focused.file-cta,
-.is-focused.file-name, .select select.is-focused, .is-focused.input, .is-focused.textarea, .is-focused.button, .pagination-previous:active,
-.pagination-next:active,
-.pagination-link:active,
-.pagination-ellipsis:active, .file-cta:active,
-.file-name:active, .select select:active, .input:active, .textarea:active, .button:active, .is-active.pagination-previous,
-.is-active.pagination-next,
-.is-active.pagination-link,
-.is-active.pagination-ellipsis, .is-active.file-cta,
-.is-active.file-name, .select select.is-active, .is-active.input, .is-active.textarea, .is-active.button {
-  outline: none;
-}
-[disabled].pagination-previous,
-[disabled].pagination-next,
-[disabled].pagination-link,
-[disabled].pagination-ellipsis, [disabled].file-cta,
-[disabled].file-name, .select select[disabled], [disabled].input, [disabled].textarea, [disabled].button, fieldset[disabled] .pagination-previous,
-fieldset[disabled] .pagination-next,
-fieldset[disabled] .pagination-link,
-fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .file-cta,
-fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .input, fieldset[disabled] .textarea, fieldset[disabled] .button {
-  cursor: not-allowed;
-}
-
-.modal-close {
-  --bulma-delete-dimensions: 1.25rem;
-  --bulma-delete-background-l: 0%;
-  --bulma-delete-background-alpha: 0.5;
-  --bulma-delete-color: var(--bulma-white);
-  appearance: none;
-  background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-delete-background-l), var(--bulma-delete-background-alpha));
-  border: none;
-  border-radius: var(--bulma-radius-rounded);
-  cursor: pointer;
-  pointer-events: auto;
-  display: inline-flex;
-  flex-grow: 0;
-  flex-shrink: 0;
-  font-size: 1em;
-  height: var(--bulma-delete-dimensions);
-  max-height: var(--bulma-delete-dimensions);
-  max-width: var(--bulma-delete-dimensions);
-  min-height: var(--bulma-delete-dimensions);
-  min-width: var(--bulma-delete-dimensions);
-  outline: none;
-  position: relative;
-  vertical-align: top;
-  width: var(--bulma-delete-dimensions);
-}
-.modal-close::before, .modal-close::after {
-  background-color: var(--bulma-delete-color);
-  content: "";
-  display: block;
-  left: 50%;
-  position: absolute;
-  top: 50%;
-  transform: translateX(-50%) translateY(-50%) rotate(45deg);
-  transform-origin: center center;
-}
-.modal-close::before {
-  height: 2px;
-  width: 50%;
-}
-.modal-close::after {
-  height: 50%;
-  width: 2px;
-}
-.modal-close:hover, .modal-close:focus {
-  --bulma-delete-background-alpha: 0.4;
-}
-.modal-close:active {
-  --bulma-delete-background-alpha: 0.5;
-}
-.is-small.modal-close {
-  --bulma-delete-dimensions: 1rem;
-}
-.is-medium.modal-close {
-  --bulma-delete-dimensions: 1.5rem;
-}
-.is-large.modal-close {
-  --bulma-delete-dimensions: 2rem;
-}
-
-.control.is-loading::after, .select.is-loading::after, .button.is-loading::after {
-  animation: spinAround 500ms infinite linear;
-  border: 2px solid var(--bulma-loading-color);
-  border-radius: var(--bulma-radius-rounded);
-  border-right-color: transparent;
-  border-top-color: transparent;
-  content: "";
-  display: block;
-  height: 1em;
-  position: relative;
-  width: 1em;
-}
-
-.hero-video, .modal, .modal-background {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-
-.navbar-burger, .menu-list a,
-.menu-list button,
-.menu-list .menu-item {
-  appearance: none;
-  background: none;
-  border: none;
-  color: inherit;
-  font-family: inherit;
-  font-size: 1em;
-  margin: 0;
-  padding: 0;
-}
-
-.tabs, .pagination-previous,
-.pagination-next,
-.pagination-link,
-.pagination-ellipsis, .breadcrumb, .file, .button {
-  -webkit-touch-callout: none;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
+  color: #ffdd57; }
 
 .box {
-  --bulma-box-background-color: var(--bulma-scheme-main);
-  --bulma-box-color: var(--bulma-text);
-  --bulma-box-radius: var(--bulma-radius-large);
-  --bulma-box-shadow: var(--bulma-shadow);
-  --bulma-box-padding: 1.25rem;
-  --bulma-box-link-hover-shadow: 0 0.5em 1em -0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1), 0 0 0 1px var(--bulma-link);
-  --bulma-box-link-active-shadow: inset 0 1px 2px hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.2), 0 0 0 1px var(--bulma-link);
-}
-
-.box {
-  background-color: var(--bulma-box-background-color);
-  border-radius: var(--bulma-box-radius);
-  box-shadow: var(--bulma-box-shadow);
-  color: var(--bulma-box-color);
+  background-color: white;
+  border-radius: 6px;
+  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  color: #4a4a4a;
   display: block;
-  padding: var(--bulma-box-padding);
-}
+  padding: 1.25rem; }
 
 a.box:hover, a.box:focus {
-  box-shadow: var(--bulma-box-link-hover-shadow);
-}
+  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #4391E0;
+  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #4391E0; }
+
 a.box:active {
-  box-shadow: var(--bulma-box-link-active-shadow);
-}
+  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #4391E0;
+  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #4391E0; }
 
 .button {
-  --bulma-button-family: false;
-  --bulma-button-weight: var(--bulma-weight-medium);
-  --bulma-button-border-color: var(--bulma-border);
-  --bulma-button-border-style: solid;
-  --bulma-button-border-width: var(--bulma-control-border-width);
-  --bulma-button-padding-vertical: 0.5em;
-  --bulma-button-padding-horizontal: 1em;
-  --bulma-button-focus-border-color: var(--bulma-link-focus-border);
-  --bulma-button-focus-box-shadow-size: 0 0 0 0.125em;
-  --bulma-button-focus-box-shadow-color: hsla(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-link-on-scheme-l), 0.25);
-  --bulma-button-active-color: var(--bulma-link-active);
-  --bulma-button-active-border-color: var(--bulma-link-active-border);
-  --bulma-button-text-color: var(--bulma-text);
-  --bulma-button-text-decoration: underline;
-  --bulma-button-text-hover-background-color: var(--bulma-background);
-  --bulma-button-text-hover-color: var(--bulma-text-strong);
-  --bulma-button-ghost-background: none;
-  --bulma-button-ghost-border-color: transparent;
-  --bulma-button-ghost-color: var(--bulma-link-text);
-  --bulma-button-ghost-decoration: none;
-  --bulma-button-ghost-hover-color: var(--bulma-link);
-  --bulma-button-ghost-hover-decoration: underline;
-  --bulma-button-disabled-background-color: var(--bulma-scheme-main);
-  --bulma-button-disabled-border-color: var(--bulma-border);
-  --bulma-button-disabled-shadow: none;
-  --bulma-button-disabled-opacity: 0.5;
-  --bulma-button-static-color: var(--bulma-text-weak);
-  --bulma-button-static-background-color: var(--bulma-scheme-main-ter);
-  --bulma-button-static-border-color: var(--bulma-border);
-}
-
-.button {
-  --bulma-button-h: var(--bulma-scheme-h);
-  --bulma-button-s: var(--bulma-scheme-s);
-  --bulma-button-l: var(--bulma-scheme-main-l);
-  --bulma-button-background-l: var(--bulma-scheme-main-l);
-  --bulma-button-background-l-delta: 0%;
-  --bulma-button-hover-background-l-delta: var(--bulma-hover-background-l-delta);
-  --bulma-button-active-background-l-delta: var(--bulma-active-background-l-delta);
-  --bulma-button-color-l: var(--bulma-text-strong-l);
-  --bulma-button-border-l: var(--bulma-border-l);
-  --bulma-button-border-l-delta: 0%;
-  --bulma-button-hover-border-l-delta: var(--bulma-hover-border-l-delta);
-  --bulma-button-active-border-l-delta: var(--bulma-active-border-l-delta);
-  --bulma-button-focus-border-l-delta: var(--bulma-focus-border-l-delta);
-  --bulma-button-outer-shadow-h: 0;
-  --bulma-button-outer-shadow-s: 0%;
-  --bulma-button-outer-shadow-l: 20%;
-  --bulma-button-outer-shadow-a: 0.05;
-  --bulma-loading-color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-color-l));
-  background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-background-l) + var(--bulma-button-background-l-delta)));
-  border-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-border-l) + var(--bulma-button-border-l-delta)));
-  border-style: var(--bulma-button-border-style);
-  border-width: var(--bulma-button-border-width);
-  box-shadow: 0px 0.0625em 0.125em hsla(var(--bulma-button-outer-shadow-h), var(--bulma-button-outer-shadow-s), var(--bulma-button-outer-shadow-l), var(--bulma-button-outer-shadow-a)), 0px 0.125em 0.25em hsla(var(--bulma-button-outer-shadow-h), var(--bulma-button-outer-shadow-s), var(--bulma-button-outer-shadow-l), var(--bulma-button-outer-shadow-a));
-  color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-color-l));
+  background-color: white;
+  border-color: #dbdbdb;
+  border-width: 1px;
+  color: #363636;
   cursor: pointer;
-  font-weight: var(--bulma-button-weight);
-  height: auto;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  padding-bottom: calc(var(--bulma-button-padding-vertical) - var(--bulma-button-border-width));
-  padding-left: calc(var(--bulma-button-padding-horizontal) - var(--bulma-button-border-width));
-  padding-right: calc(var(--bulma-button-padding-horizontal) - var(--bulma-button-border-width));
-  padding-top: calc(var(--bulma-button-padding-vertical) - var(--bulma-button-border-width));
+  padding-bottom: calc(0.375em - 1px);
+  padding-left: 0.75em;
+  padding-right: 0.75em;
+  padding-top: calc(0.375em - 1px);
   text-align: center;
-  white-space: nowrap;
-}
-.button strong {
-  color: inherit;
-}
-.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large {
-  height: 1.5em;
-  width: 1.5em;
-}
-.button .icon:first-child:not(:last-child) {
-  margin-inline-start: calc(-0.5 * var(--bulma-button-padding-horizontal));
-  margin-inline-end: calc(var(--bulma-button-padding-horizontal) * 0.25);
-}
-.button .icon:last-child:not(:first-child) {
-  margin-inline-start: calc(var(--bulma-button-padding-horizontal) * 0.25);
-  margin-inline-end: calc(-0.5 * var(--bulma-button-padding-horizontal));
-}
-.button .icon:first-child:last-child {
-  margin-inline-start: calc(-0.5 * var(--bulma-button-padding-horizontal));
-  margin-inline-end: calc(-0.5 * var(--bulma-button-padding-horizontal));
-}
-.button:hover, .button.is-hovered {
-  --bulma-button-background-l-delta: var(--bulma-button-hover-background-l-delta);
-  --bulma-button-border-l-delta: var(--bulma-button-hover-border-l-delta);
-}
-.button:focus-visible, .button.is-focused {
-  --bulma-button-border-width: 1px;
-  border-color: hsl(var(--bulma-focus-h), var(--bulma-focus-s), var(--bulma-focus-l));
-  box-shadow: var(--bulma-focus-shadow-size) hsla(var(--bulma-focus-h), var(--bulma-focus-s), var(--bulma-focus-l), var(--bulma-focus-shadow-alpha));
-}
-.button:active, .button.is-active {
-  --bulma-button-background-l-delta: var(--bulma-button-active-background-l-delta);
-  --bulma-button-border-l-delta: var(--bulma-button-active-border-l-delta);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button[disabled], fieldset[disabled] .button {
-  background-color: var(--bulma-button-disabled-background-color);
-  border-color: var(--bulma-button-disabled-border-color);
-  box-shadow: var(--bulma-button-disabled-shadow);
-  opacity: var(--bulma-button-disabled-opacity);
-}
-.button.is-white {
-  --bulma-button-h: var(--bulma-white-h);
-  --bulma-button-s: var(--bulma-white-s);
-  --bulma-button-l: var(--bulma-white-l);
-  --bulma-button-background-l: var(--bulma-white-l);
-  --bulma-button-border-l: var(--bulma-white-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-white-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-white:focus-visible, .button.is-white.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-white.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-white.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-white[disabled], fieldset[disabled] .button.is-white {
-  background-color: var(--bulma-white);
-  border-color: var(--bulma-white);
-  box-shadow: none;
-}
-.button.is-black {
-  --bulma-button-h: var(--bulma-black-h);
-  --bulma-button-s: var(--bulma-black-s);
-  --bulma-button-l: var(--bulma-black-l);
-  --bulma-button-background-l: var(--bulma-black-l);
-  --bulma-button-border-l: var(--bulma-black-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-black-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-black:focus-visible, .button.is-black.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-black.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-black.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-black[disabled], fieldset[disabled] .button.is-black {
-  background-color: var(--bulma-black);
-  border-color: var(--bulma-black);
-  box-shadow: none;
-}
-.button.is-light {
-  --bulma-button-h: var(--bulma-light-h);
-  --bulma-button-s: var(--bulma-light-s);
-  --bulma-button-l: var(--bulma-light-l);
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-border-l: var(--bulma-light-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-light-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-light:focus-visible, .button.is-light.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-light.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-light.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-light[disabled], fieldset[disabled] .button.is-light {
-  background-color: var(--bulma-light);
-  border-color: var(--bulma-light);
-  box-shadow: none;
-}
-.button.is-dark {
-  --bulma-button-h: var(--bulma-dark-h);
-  --bulma-button-s: var(--bulma-dark-s);
-  --bulma-button-l: var(--bulma-dark-l);
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-border-l: var(--bulma-dark-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-dark-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-dark:focus-visible, .button.is-dark.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-dark.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-dark.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-dark[disabled], fieldset[disabled] .button.is-dark {
-  background-color: var(--bulma-dark);
-  border-color: var(--bulma-dark);
-  box-shadow: none;
-}
-.button.is-text {
-  --bulma-button-h: var(--bulma-text-h);
-  --bulma-button-s: var(--bulma-text-s);
-  --bulma-button-l: var(--bulma-text-l);
-  --bulma-button-background-l: var(--bulma-text-l);
-  --bulma-button-border-l: var(--bulma-text-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-text-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-text:focus-visible, .button.is-text.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-text.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-text-light-invert-l);
-}
-.button.is-text.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-text-dark-invert-l);
-}
-.button.is-text.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-text.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-text[disabled], fieldset[disabled] .button.is-text {
-  background-color: var(--bulma-text);
-  border-color: var(--bulma-text);
-  box-shadow: none;
-}
-.button.is-primary {
-  --bulma-button-h: var(--bulma-primary-h);
-  --bulma-button-s: var(--bulma-primary-s);
-  --bulma-button-l: var(--bulma-primary-l);
-  --bulma-button-background-l: var(--bulma-primary-l);
-  --bulma-button-border-l: var(--bulma-primary-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-primary-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-primary:focus-visible, .button.is-primary.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-primary.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-primary-light-invert-l);
-}
-.button.is-primary.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-primary-dark-invert-l);
-}
-.button.is-primary.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-primary.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-primary[disabled], fieldset[disabled] .button.is-primary {
-  background-color: var(--bulma-primary);
-  border-color: var(--bulma-primary);
-  box-shadow: none;
-}
-.button.is-link {
-  --bulma-button-h: var(--bulma-link-h);
-  --bulma-button-s: var(--bulma-link-s);
-  --bulma-button-l: var(--bulma-link-l);
-  --bulma-button-background-l: var(--bulma-link-l);
-  --bulma-button-border-l: var(--bulma-link-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-link-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-link:focus-visible, .button.is-link.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-link.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-link-light-invert-l);
-}
-.button.is-link.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-link-dark-invert-l);
-}
-.button.is-link.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-link.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-link[disabled], fieldset[disabled] .button.is-link {
-  background-color: var(--bulma-link);
-  border-color: var(--bulma-link);
-  box-shadow: none;
-}
-.button.is-info {
-  --bulma-button-h: var(--bulma-info-h);
-  --bulma-button-s: var(--bulma-info-s);
-  --bulma-button-l: var(--bulma-info-l);
-  --bulma-button-background-l: var(--bulma-info-l);
-  --bulma-button-border-l: var(--bulma-info-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-info-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-info:focus-visible, .button.is-info.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-info.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-info-light-invert-l);
-}
-.button.is-info.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-info-dark-invert-l);
-}
-.button.is-info.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-info.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-info[disabled], fieldset[disabled] .button.is-info {
-  background-color: var(--bulma-info);
-  border-color: var(--bulma-info);
-  box-shadow: none;
-}
-.button.is-success {
-  --bulma-button-h: var(--bulma-success-h);
-  --bulma-button-s: var(--bulma-success-s);
-  --bulma-button-l: var(--bulma-success-l);
-  --bulma-button-background-l: var(--bulma-success-l);
-  --bulma-button-border-l: var(--bulma-success-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-success-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-success:focus-visible, .button.is-success.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-success.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-success-light-invert-l);
-}
-.button.is-success.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-success-dark-invert-l);
-}
-.button.is-success.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-success.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-success[disabled], fieldset[disabled] .button.is-success {
-  background-color: var(--bulma-success);
-  border-color: var(--bulma-success);
-  box-shadow: none;
-}
-.button.is-warning {
-  --bulma-button-h: var(--bulma-warning-h);
-  --bulma-button-s: var(--bulma-warning-s);
-  --bulma-button-l: var(--bulma-warning-l);
-  --bulma-button-background-l: var(--bulma-warning-l);
-  --bulma-button-border-l: var(--bulma-warning-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-warning-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-warning:focus-visible, .button.is-warning.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-warning.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-warning-light-invert-l);
-}
-.button.is-warning.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-warning-dark-invert-l);
-}
-.button.is-warning.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-warning.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-warning[disabled], fieldset[disabled] .button.is-warning {
-  background-color: var(--bulma-warning);
-  border-color: var(--bulma-warning);
-  box-shadow: none;
-}
-.button.is-danger {
-  --bulma-button-h: var(--bulma-danger-h);
-  --bulma-button-s: var(--bulma-danger-s);
-  --bulma-button-l: var(--bulma-danger-l);
-  --bulma-button-background-l: var(--bulma-danger-l);
-  --bulma-button-border-l: var(--bulma-danger-l);
-  --bulma-button-border-width: 0px;
-  --bulma-button-color-l: var(--bulma-danger-invert-l);
-  --bulma-button-outer-shadow-a: 0;
-}
-.button.is-danger:focus-visible, .button.is-danger.is-focused {
-  --bulma-button-border-width: 1px;
-}
-.button.is-danger.is-light {
-  --bulma-button-background-l: var(--bulma-light-l);
-  --bulma-button-color-l: var(--bulma-danger-light-invert-l);
-}
-.button.is-danger.is-dark {
-  --bulma-button-background-l: var(--bulma-dark-l);
-  --bulma-button-color-l: var(--bulma-danger-dark-invert-l);
-}
-.button.is-danger.is-soft {
-  --bulma-button-background-l: var(--bulma-soft-l);
-  --bulma-button-color-l: var(--bulma-soft-invert-l);
-}
-.button.is-danger.is-bold {
-  --bulma-button-background-l: var(--bulma-bold-l);
-  --bulma-button-color-l: var(--bulma-bold-invert-l);
-}
-.button.is-danger[disabled], fieldset[disabled] .button.is-danger {
-  background-color: var(--bulma-danger);
-  border-color: var(--bulma-danger);
-  box-shadow: none;
-}
-.button.is-outlined {
-  --bulma-button-border-width: max(1px, 0.0625em);
-  background-color: transparent;
-  border-color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-l));
-  color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-l));
-}
-.button.is-outlined:hover {
-  --bulma-button-border-width: max(2px, 0.125em);
-  --bulma-button-outer-shadow-alpha: 1;
-}
-.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined {
-  background-color: transparent;
-  box-shadow: none;
-}
-.button.is-inverted {
-  background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta)));
-  color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l));
-}
-.button.is-text {
-  background-color: transparent;
-  border-color: transparent;
-  color: var(--bulma-button-text-color);
-  text-decoration: var(--bulma-button-text-decoration);
-}
-.button.is-text:hover, .button.is-text.is-hovered {
-  background-color: var(--bulma-button-text-hover-background-color);
-  color: var(--bulma-button-text-hover-color);
-}
-.button.is-text:active, .button.is-text.is-active {
-  color: var(--bulma-button-text-hover-color);
-}
-.button.is-text[disabled], fieldset[disabled] .button.is-text {
-  background-color: transparent;
-  border-color: transparent;
-  box-shadow: none;
-}
-.button.is-ghost {
-  background: var(--bulma-button-ghost-background);
-  border-color: var(--bulma-button-ghost-border-color);
-  box-shadow: none;
-  color: var(--bulma-button-ghost-color);
-  text-decoration: var(--bulma-button-ghost-decoration);
-}
-.button.is-ghost:hover, .button.is-ghost.is-hovered {
-  color: var(--bulma-button-ghost-hover-color);
-  text-decoration: var(--bulma-button-ghost-hover-decoration);
-}
-.button.is-small {
-  --bulma-control-size: var(--bulma-size-small);
-  --bulma-control-radius: var(--bulma-radius-small);
-}
-.button.is-normal {
-  --bulma-control-size: var(--bulma-size-normal);
-  --bulma-control-radius: var(--bulma-radius);
-}
-.button.is-medium {
-  --bulma-control-size: var(--bulma-size-medium);
-  --bulma-control-radius: var(--bulma-radius-medium);
-}
-.button.is-large {
-  --bulma-control-size: var(--bulma-size-large);
-  --bulma-control-radius: var(--bulma-radius-medium);
-}
-.button.is-fullwidth {
-  display: flex;
-  width: 100%;
-}
-.button.is-loading {
-  box-shadow: none;
-  color: transparent !important;
-  pointer-events: none;
-}
-.button.is-loading::after {
-  position: absolute;
-  left: calc(50% - 1em * 0.5);
-  top: calc(50% - 1em * 0.5);
-  position: absolute !important;
-}
-.button.is-static {
-  background-color: var(--bulma-button-static-background-color);
-  border-color: var(--bulma-button-static-border-color);
-  color: var(--bulma-button-static-color);
-  box-shadow: none;
-  pointer-events: none;
-}
-.button.is-rounded {
-  border-radius: var(--bulma-radius-rounded);
-  padding-left: calc(var(--bulma-button-padding-horizontal) + 0.25em - var(--bulma-button-border-width));
-  padding-right: calc(var(--bulma-button-padding-horizontal) + 0.25em - var(--bulma-button-border-width));
-}
+  white-space: nowrap; }
+  .button strong {
+    color: inherit; }
+  .button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large {
+    height: 1.5em;
+    width: 1.5em; }
+  .button .icon:first-child:not(:last-child) {
+    margin-left: calc(-0.375em - 1px);
+    margin-right: 0.1875em; }
+  .button .icon:last-child:not(:first-child) {
+    margin-left: 0.1875em;
+    margin-right: calc(-0.375em - 1px); }
+  .button .icon:first-child:last-child {
+    margin-left: calc(-0.375em - 1px);
+    margin-right: calc(-0.375em - 1px); }
+  .button:hover, .button.is-hovered {
+    border-color: #b5b5b5;
+    color: #363636; }
+  .button:focus, .button.is-focused {
+    border-color: #4391E0;
+    color: #363636; }
+    .button:focus:not(:active), .button.is-focused:not(:active) {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); }
+  .button:active, .button.is-active {
+    border-color: #4a4a4a;
+    color: #363636; }
+  .button.is-text {
+    background-color: transparent;
+    border-color: transparent;
+    color: #4a4a4a;
+    text-decoration: underline; }
+    .button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused {
+      background-color: whitesmoke;
+      color: #363636; }
+    .button.is-text:active, .button.is-text.is-active {
+      background-color: #e8e8e8;
+      color: #363636; }
+    .button.is-text[disabled],
+    fieldset[disabled] .button.is-text {
+      background-color: transparent;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+  .button.is-white {
+    background-color: white;
+    border-color: transparent;
+    color: #0a0a0a; }
+    .button.is-white:hover, .button.is-white.is-hovered {
+      background-color: #f9f9f9;
+      border-color: transparent;
+      color: #0a0a0a; }
+    .button.is-white:focus, .button.is-white.is-focused {
+      border-color: transparent;
+      color: #0a0a0a; }
+      .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); }
+    .button.is-white:active, .button.is-white.is-active {
+      background-color: #f2f2f2;
+      border-color: transparent;
+      color: #0a0a0a; }
+    .button.is-white[disabled],
+    fieldset[disabled] .button.is-white {
+      background-color: white;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-white.is-inverted {
+      background-color: #0a0a0a;
+      color: white; }
+      .button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered {
+        background-color: black; }
+      .button.is-white.is-inverted[disabled],
+      fieldset[disabled] .button.is-white.is-inverted {
+        background-color: #0a0a0a;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: white; }
+    .button.is-white.is-loading::after {
+      border-color: transparent transparent #0a0a0a #0a0a0a !important; }
+    .button.is-white.is-outlined {
+      background-color: transparent;
+      border-color: white;
+      color: white; }
+      .button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused {
+        background-color: white;
+        border-color: white;
+        color: #0a0a0a; }
+      .button.is-white.is-outlined.is-loading::after {
+        border-color: transparent transparent white white !important; }
+      .button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #0a0a0a #0a0a0a !important; }
+      .button.is-white.is-outlined[disabled],
+      fieldset[disabled] .button.is-white.is-outlined {
+        background-color: transparent;
+        border-color: white;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: white; }
+    .button.is-white.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #0a0a0a;
+      color: #0a0a0a; }
+      .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused {
+        background-color: #0a0a0a;
+        color: white; }
+      .button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent white white !important; }
+      .button.is-white.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-white.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #0a0a0a;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #0a0a0a; }
+  .button.is-black {
+    background-color: #0a0a0a;
+    border-color: transparent;
+    color: white; }
+    .button.is-black:hover, .button.is-black.is-hovered {
+      background-color: #040404;
+      border-color: transparent;
+      color: white; }
+    .button.is-black:focus, .button.is-black.is-focused {
+      border-color: transparent;
+      color: white; }
+      .button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); }
+    .button.is-black:active, .button.is-black.is-active {
+      background-color: black;
+      border-color: transparent;
+      color: white; }
+    .button.is-black[disabled],
+    fieldset[disabled] .button.is-black {
+      background-color: #0a0a0a;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-black.is-inverted {
+      background-color: white;
+      color: #0a0a0a; }
+      .button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered {
+        background-color: #f2f2f2; }
+      .button.is-black.is-inverted[disabled],
+      fieldset[disabled] .button.is-black.is-inverted {
+        background-color: white;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #0a0a0a; }
+    .button.is-black.is-loading::after {
+      border-color: transparent transparent white white !important; }
+    .button.is-black.is-outlined {
+      background-color: transparent;
+      border-color: #0a0a0a;
+      color: #0a0a0a; }
+      .button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused {
+        background-color: #0a0a0a;
+        border-color: #0a0a0a;
+        color: white; }
+      .button.is-black.is-outlined.is-loading::after {
+        border-color: transparent transparent #0a0a0a #0a0a0a !important; }
+      .button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent white white !important; }
+      .button.is-black.is-outlined[disabled],
+      fieldset[disabled] .button.is-black.is-outlined {
+        background-color: transparent;
+        border-color: #0a0a0a;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #0a0a0a; }
+    .button.is-black.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: white;
+      color: white; }
+      .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused {
+        background-color: white;
+        color: #0a0a0a; }
+      .button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #0a0a0a #0a0a0a !important; }
+      .button.is-black.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-black.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: white;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: white; }
+  .button.is-light {
+    background-color: whitesmoke;
+    border-color: transparent;
+    color: #363636; }
+    .button.is-light:hover, .button.is-light.is-hovered {
+      background-color: #eeeeee;
+      border-color: transparent;
+      color: #363636; }
+    .button.is-light:focus, .button.is-light.is-focused {
+      border-color: transparent;
+      color: #363636; }
+      .button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); }
+    .button.is-light:active, .button.is-light.is-active {
+      background-color: #e8e8e8;
+      border-color: transparent;
+      color: #363636; }
+    .button.is-light[disabled],
+    fieldset[disabled] .button.is-light {
+      background-color: whitesmoke;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-light.is-inverted {
+      background-color: #363636;
+      color: whitesmoke; }
+      .button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered {
+        background-color: #292929; }
+      .button.is-light.is-inverted[disabled],
+      fieldset[disabled] .button.is-light.is-inverted {
+        background-color: #363636;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: whitesmoke; }
+    .button.is-light.is-loading::after {
+      border-color: transparent transparent #363636 #363636 !important; }
+    .button.is-light.is-outlined {
+      background-color: transparent;
+      border-color: whitesmoke;
+      color: whitesmoke; }
+      .button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused {
+        background-color: whitesmoke;
+        border-color: whitesmoke;
+        color: #363636; }
+      .button.is-light.is-outlined.is-loading::after {
+        border-color: transparent transparent whitesmoke whitesmoke !important; }
+      .button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #363636 #363636 !important; }
+      .button.is-light.is-outlined[disabled],
+      fieldset[disabled] .button.is-light.is-outlined {
+        background-color: transparent;
+        border-color: whitesmoke;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: whitesmoke; }
+    .button.is-light.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #363636;
+      color: #363636; }
+      .button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused {
+        background-color: #363636;
+        color: whitesmoke; }
+      .button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent whitesmoke whitesmoke !important; }
+      .button.is-light.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-light.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #363636;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #363636; }
+  .button.is-dark {
+    background-color: #363636;
+    border-color: transparent;
+    color: whitesmoke; }
+    .button.is-dark:hover, .button.is-dark.is-hovered {
+      background-color: #2f2f2f;
+      border-color: transparent;
+      color: whitesmoke; }
+    .button.is-dark:focus, .button.is-dark.is-focused {
+      border-color: transparent;
+      color: whitesmoke; }
+      .button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); }
+    .button.is-dark:active, .button.is-dark.is-active {
+      background-color: #292929;
+      border-color: transparent;
+      color: whitesmoke; }
+    .button.is-dark[disabled],
+    fieldset[disabled] .button.is-dark {
+      background-color: #363636;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-dark.is-inverted {
+      background-color: whitesmoke;
+      color: #363636; }
+      .button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered {
+        background-color: #e8e8e8; }
+      .button.is-dark.is-inverted[disabled],
+      fieldset[disabled] .button.is-dark.is-inverted {
+        background-color: whitesmoke;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #363636; }
+    .button.is-dark.is-loading::after {
+      border-color: transparent transparent whitesmoke whitesmoke !important; }
+    .button.is-dark.is-outlined {
+      background-color: transparent;
+      border-color: #363636;
+      color: #363636; }
+      .button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused {
+        background-color: #363636;
+        border-color: #363636;
+        color: whitesmoke; }
+      .button.is-dark.is-outlined.is-loading::after {
+        border-color: transparent transparent #363636 #363636 !important; }
+      .button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent whitesmoke whitesmoke !important; }
+      .button.is-dark.is-outlined[disabled],
+      fieldset[disabled] .button.is-dark.is-outlined {
+        background-color: transparent;
+        border-color: #363636;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #363636; }
+    .button.is-dark.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: whitesmoke;
+      color: whitesmoke; }
+      .button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused {
+        background-color: whitesmoke;
+        color: #363636; }
+      .button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #363636 #363636 !important; }
+      .button.is-dark.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-dark.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: whitesmoke;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: whitesmoke; }
+  .button.is-primary {
+    background-color: #478D00;
+    border-color: transparent;
+    color: #fff; }
+    .button.is-primary:hover, .button.is-primary.is-hovered {
+      background-color: #418000;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-primary:focus, .button.is-primary.is-focused {
+      border-color: transparent;
+      color: #fff; }
+      .button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); }
+    .button.is-primary:active, .button.is-primary.is-active {
+      background-color: #3a7400;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-primary[disabled],
+    fieldset[disabled] .button.is-primary {
+      background-color: #478D00;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-primary.is-inverted {
+      background-color: #fff;
+      color: #478D00; }
+      .button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered {
+        background-color: #f2f2f2; }
+      .button.is-primary.is-inverted[disabled],
+      fieldset[disabled] .button.is-primary.is-inverted {
+        background-color: #fff;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #478D00; }
+    .button.is-primary.is-loading::after {
+      border-color: transparent transparent #fff #fff !important; }
+    .button.is-primary.is-outlined {
+      background-color: transparent;
+      border-color: #478D00;
+      color: #478D00; }
+      .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused {
+        background-color: #478D00;
+        border-color: #478D00;
+        color: #fff; }
+      .button.is-primary.is-outlined.is-loading::after {
+        border-color: transparent transparent #478D00 #478D00 !important; }
+      .button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #fff #fff !important; }
+      .button.is-primary.is-outlined[disabled],
+      fieldset[disabled] .button.is-primary.is-outlined {
+        background-color: transparent;
+        border-color: #478D00;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #478D00; }
+    .button.is-primary.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #fff;
+      color: #fff; }
+      .button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused {
+        background-color: #fff;
+        color: #478D00; }
+      .button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #478D00 #478D00 !important; }
+      .button.is-primary.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-primary.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #fff;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #fff; }
+  .button.is-link {
+    background-color: #4391E0;
+    border-color: transparent;
+    color: #fff; }
+    .button.is-link:hover, .button.is-link.is-hovered {
+      background-color: #388bde;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-link:focus, .button.is-link.is-focused {
+      border-color: transparent;
+      color: #fff; }
+      .button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); }
+    .button.is-link:active, .button.is-link.is-active {
+      background-color: #2d84dc;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-link[disabled],
+    fieldset[disabled] .button.is-link {
+      background-color: #4391E0;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-link.is-inverted {
+      background-color: #fff;
+      color: #4391E0; }
+      .button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered {
+        background-color: #f2f2f2; }
+      .button.is-link.is-inverted[disabled],
+      fieldset[disabled] .button.is-link.is-inverted {
+        background-color: #fff;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #4391E0; }
+    .button.is-link.is-loading::after {
+      border-color: transparent transparent #fff #fff !important; }
+    .button.is-link.is-outlined {
+      background-color: transparent;
+      border-color: #4391E0;
+      color: #4391E0; }
+      .button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused {
+        background-color: #4391E0;
+        border-color: #4391E0;
+        color: #fff; }
+      .button.is-link.is-outlined.is-loading::after {
+        border-color: transparent transparent #4391E0 #4391E0 !important; }
+      .button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #fff #fff !important; }
+      .button.is-link.is-outlined[disabled],
+      fieldset[disabled] .button.is-link.is-outlined {
+        background-color: transparent;
+        border-color: #4391E0;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #4391E0; }
+    .button.is-link.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #fff;
+      color: #fff; }
+      .button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused {
+        background-color: #fff;
+        color: #4391E0; }
+      .button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #4391E0 #4391E0 !important; }
+      .button.is-link.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-link.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #fff;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #fff; }
+  .button.is-info {
+    background-color: #209cee;
+    border-color: transparent;
+    color: #fff; }
+    .button.is-info:hover, .button.is-info.is-hovered {
+      background-color: #1496ed;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-info:focus, .button.is-info.is-focused {
+      border-color: transparent;
+      color: #fff; }
+      .button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); }
+    .button.is-info:active, .button.is-info.is-active {
+      background-color: #118fe4;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-info[disabled],
+    fieldset[disabled] .button.is-info {
+      background-color: #209cee;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-info.is-inverted {
+      background-color: #fff;
+      color: #209cee; }
+      .button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered {
+        background-color: #f2f2f2; }
+      .button.is-info.is-inverted[disabled],
+      fieldset[disabled] .button.is-info.is-inverted {
+        background-color: #fff;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #209cee; }
+    .button.is-info.is-loading::after {
+      border-color: transparent transparent #fff #fff !important; }
+    .button.is-info.is-outlined {
+      background-color: transparent;
+      border-color: #209cee;
+      color: #209cee; }
+      .button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused {
+        background-color: #209cee;
+        border-color: #209cee;
+        color: #fff; }
+      .button.is-info.is-outlined.is-loading::after {
+        border-color: transparent transparent #209cee #209cee !important; }
+      .button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #fff #fff !important; }
+      .button.is-info.is-outlined[disabled],
+      fieldset[disabled] .button.is-info.is-outlined {
+        background-color: transparent;
+        border-color: #209cee;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #209cee; }
+    .button.is-info.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #fff;
+      color: #fff; }
+      .button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused {
+        background-color: #fff;
+        color: #209cee; }
+      .button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #209cee #209cee !important; }
+      .button.is-info.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-info.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #fff;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #fff; }
+  .button.is-success {
+    background-color: #478D00;
+    border-color: transparent;
+    color: #fff; }
+    .button.is-success:hover, .button.is-success.is-hovered {
+      background-color: #418000;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-success:focus, .button.is-success.is-focused {
+      border-color: transparent;
+      color: #fff; }
+      .button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); }
+    .button.is-success:active, .button.is-success.is-active {
+      background-color: #3a7400;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-success[disabled],
+    fieldset[disabled] .button.is-success {
+      background-color: #478D00;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-success.is-inverted {
+      background-color: #fff;
+      color: #478D00; }
+      .button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered {
+        background-color: #f2f2f2; }
+      .button.is-success.is-inverted[disabled],
+      fieldset[disabled] .button.is-success.is-inverted {
+        background-color: #fff;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #478D00; }
+    .button.is-success.is-loading::after {
+      border-color: transparent transparent #fff #fff !important; }
+    .button.is-success.is-outlined {
+      background-color: transparent;
+      border-color: #478D00;
+      color: #478D00; }
+      .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused {
+        background-color: #478D00;
+        border-color: #478D00;
+        color: #fff; }
+      .button.is-success.is-outlined.is-loading::after {
+        border-color: transparent transparent #478D00 #478D00 !important; }
+      .button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #fff #fff !important; }
+      .button.is-success.is-outlined[disabled],
+      fieldset[disabled] .button.is-success.is-outlined {
+        background-color: transparent;
+        border-color: #478D00;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #478D00; }
+    .button.is-success.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #fff;
+      color: #fff; }
+      .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused {
+        background-color: #fff;
+        color: #478D00; }
+      .button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #478D00 #478D00 !important; }
+      .button.is-success.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-success.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #fff;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #fff; }
+  .button.is-warning {
+    background-color: #ffdd57;
+    border-color: transparent;
+    color: rgba(0, 0, 0, 0.7); }
+    .button.is-warning:hover, .button.is-warning.is-hovered {
+      background-color: #ffdb4a;
+      border-color: transparent;
+      color: rgba(0, 0, 0, 0.7); }
+    .button.is-warning:focus, .button.is-warning.is-focused {
+      border-color: transparent;
+      color: rgba(0, 0, 0, 0.7); }
+      .button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); }
+    .button.is-warning:active, .button.is-warning.is-active {
+      background-color: #ffd83d;
+      border-color: transparent;
+      color: rgba(0, 0, 0, 0.7); }
+    .button.is-warning[disabled],
+    fieldset[disabled] .button.is-warning {
+      background-color: #ffdd57;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-warning.is-inverted {
+      background-color: rgba(0, 0, 0, 0.7);
+      color: #ffdd57; }
+      .button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered {
+        background-color: rgba(0, 0, 0, 0.7); }
+      .button.is-warning.is-inverted[disabled],
+      fieldset[disabled] .button.is-warning.is-inverted {
+        background-color: rgba(0, 0, 0, 0.7);
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #ffdd57; }
+    .button.is-warning.is-loading::after {
+      border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; }
+    .button.is-warning.is-outlined {
+      background-color: transparent;
+      border-color: #ffdd57;
+      color: #ffdd57; }
+      .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused {
+        background-color: #ffdd57;
+        border-color: #ffdd57;
+        color: rgba(0, 0, 0, 0.7); }
+      .button.is-warning.is-outlined.is-loading::after {
+        border-color: transparent transparent #ffdd57 #ffdd57 !important; }
+      .button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; }
+      .button.is-warning.is-outlined[disabled],
+      fieldset[disabled] .button.is-warning.is-outlined {
+        background-color: transparent;
+        border-color: #ffdd57;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #ffdd57; }
+    .button.is-warning.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: rgba(0, 0, 0, 0.7);
+      color: rgba(0, 0, 0, 0.7); }
+      .button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused {
+        background-color: rgba(0, 0, 0, 0.7);
+        color: #ffdd57; }
+      .button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #ffdd57 #ffdd57 !important; }
+      .button.is-warning.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-warning.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: rgba(0, 0, 0, 0.7);
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: rgba(0, 0, 0, 0.7); }
+  .button.is-danger {
+    background-color: #a70c20;
+    border-color: transparent;
+    color: #fff; }
+    .button.is-danger:hover, .button.is-danger.is-hovered {
+      background-color: #9b0b1e;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-danger:focus, .button.is-danger.is-focused {
+      border-color: transparent;
+      color: #fff; }
+      .button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) {
+        -webkit-box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25);
+        box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25); }
+    .button.is-danger:active, .button.is-danger.is-active {
+      background-color: #8f0a1b;
+      border-color: transparent;
+      color: #fff; }
+    .button.is-danger[disabled],
+    fieldset[disabled] .button.is-danger {
+      background-color: #a70c20;
+      border-color: transparent;
+      -webkit-box-shadow: none;
+      box-shadow: none; }
+    .button.is-danger.is-inverted {
+      background-color: #fff;
+      color: #a70c20; }
+      .button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered {
+        background-color: #f2f2f2; }
+      .button.is-danger.is-inverted[disabled],
+      fieldset[disabled] .button.is-danger.is-inverted {
+        background-color: #fff;
+        border-color: transparent;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #a70c20; }
+    .button.is-danger.is-loading::after {
+      border-color: transparent transparent #fff #fff !important; }
+    .button.is-danger.is-outlined {
+      background-color: transparent;
+      border-color: #a70c20;
+      color: #a70c20; }
+      .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused {
+        background-color: #a70c20;
+        border-color: #a70c20;
+        color: #fff; }
+      .button.is-danger.is-outlined.is-loading::after {
+        border-color: transparent transparent #a70c20 #a70c20 !important; }
+      .button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #fff #fff !important; }
+      .button.is-danger.is-outlined[disabled],
+      fieldset[disabled] .button.is-danger.is-outlined {
+        background-color: transparent;
+        border-color: #a70c20;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #a70c20; }
+    .button.is-danger.is-inverted.is-outlined {
+      background-color: transparent;
+      border-color: #fff;
+      color: #fff; }
+      .button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused {
+        background-color: #fff;
+        color: #a70c20; }
+      .button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after {
+        border-color: transparent transparent #a70c20 #a70c20 !important; }
+      .button.is-danger.is-inverted.is-outlined[disabled],
+      fieldset[disabled] .button.is-danger.is-inverted.is-outlined {
+        background-color: transparent;
+        border-color: #fff;
+        -webkit-box-shadow: none;
+        box-shadow: none;
+        color: #fff; }
+  .button.is-small {
+    border-radius: 2px;
+    font-size: 0.75rem; }
+  .button.is-normal {
+    font-size: 1rem; }
+  .button.is-medium {
+    font-size: 1.25rem; }
+  .button.is-large {
+    font-size: 1.5rem; }
+  .button[disabled],
+  fieldset[disabled] .button {
+    background-color: white;
+    border-color: #dbdbdb;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    opacity: 0.5; }
+  .button.is-fullwidth {
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    width: 100%; }
+  .button.is-loading {
+    color: transparent !important;
+    pointer-events: none; }
+    .button.is-loading::after {
+      position: absolute;
+      left: calc(50% - (1em / 2));
+      top: calc(50% - (1em / 2));
+      position: absolute !important; }
+  .button.is-static {
+    background-color: whitesmoke;
+    border-color: #dbdbdb;
+    color: #7a7a7a;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    pointer-events: none; }
+  .button.is-rounded {
+    border-radius: 290486px;
+    padding-left: 1em;
+    padding-right: 1em; }
 
 .buttons {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -ms-flex-wrap: wrap;
   flex-wrap: wrap;
-  gap: 0.75rem;
-  justify-content: flex-start;
-}
-.buttons.are-small {
-  --bulma-control-size: var(--bulma-size-small);
-  --bulma-control-radius: var(--bulma-radius-small);
-}
-.buttons.are-medium {
-  --bulma-control-size: var(--bulma-size-medium);
-  --bulma-control-radius: var(--bulma-radius-medium);
-}
-.buttons.are-large {
-  --bulma-control-size: var(--bulma-size-large);
-  --bulma-control-radius: var(--bulma-radius-large);
-}
-.buttons.has-addons {
-  gap: 0;
-}
-.buttons.has-addons .button:not(:first-child) {
-  border-end-start-radius: 0;
-  border-start-start-radius: 0;
-}
-.buttons.has-addons .button:not(:last-child) {
-  border-end-end-radius: 0;
-  border-start-end-radius: 0;
-  margin-inline-end: -1px;
-}
-.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
-  z-index: 2;
-}
-.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
-  z-index: 3;
-}
-.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
-  z-index: 4;
-}
-.buttons.has-addons .button.is-expanded {
-  flex-grow: 1;
-  flex-shrink: 1;
-}
-.buttons.is-centered {
-  justify-content: center;
-}
-.buttons.is-right {
-  justify-content: flex-end;
-}
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
+  justify-content: flex-start; }
+  .buttons .button {
+    margin-bottom: 0.5rem; }
+    .buttons .button:not(:last-child):not(.is-fullwidth) {
+      margin-right: 0.5rem; }
+  .buttons:last-child {
+    margin-bottom: -0.5rem; }
+  .buttons:not(:last-child) {
+    margin-bottom: 1rem; }
+  .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
+    border-radius: 2px;
+    font-size: 0.75rem; }
+  .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) {
+    font-size: 1.25rem; }
+  .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) {
+    font-size: 1.5rem; }
+  .buttons.has-addons .button:not(:first-child) {
+    border-bottom-left-radius: 0;
+    border-top-left-radius: 0; }
+  .buttons.has-addons .button:not(:last-child) {
+    border-bottom-right-radius: 0;
+    border-top-right-radius: 0;
+    margin-right: -1px; }
+  .buttons.has-addons .button:last-child {
+    margin-right: 0; }
+  .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
+    z-index: 2; }
+  .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
+    z-index: 3; }
+    .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
+      z-index: 4; }
+  .buttons.has-addons .button.is-expanded {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 1;
+    flex-shrink: 1; }
+  .buttons.is-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+    .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) {
+      margin-left: 0.25rem;
+      margin-right: 0.25rem; }
+  .buttons.is-right {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+    .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) {
+      margin-left: 0.25rem;
+      margin-right: 0.25rem; }
 
-@media screen and (max-width: 768px) {
-  .button.is-responsive.is-small {
-    font-size: calc(var(--bulma-size-small) * 0.75);
-  }
-  .button.is-responsive,
-  .button.is-responsive.is-normal {
-    font-size: calc(var(--bulma-size-small) * 0.875);
-  }
-  .button.is-responsive.is-medium {
-    font-size: var(--bulma-size-small);
-  }
-  .button.is-responsive.is-large {
-    font-size: var(--bulma-size-normal);
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .button.is-responsive.is-small {
-    font-size: calc(var(--bulma-size-small) * 0.875);
-  }
-  .button.is-responsive,
-  .button.is-responsive.is-normal {
-    font-size: var(--bulma-size-small);
-  }
-  .button.is-responsive.is-medium {
-    font-size: var(--bulma-size-normal);
-  }
-  .button.is-responsive.is-large {
-    font-size: var(--bulma-size-medium);
-  }
-}
-.content {
-  --bulma-content-heading-color: var(--bulma-text-strong);
-  --bulma-content-heading-weight: var(--bulma-weight-extrabold);
-  --bulma-content-heading-line-height: 1.125;
-  --bulma-content-block-margin-bottom: 1em;
-  --bulma-content-blockquote-background-color: var(--bulma-background);
-  --bulma-content-blockquote-border-left: 5px solid var(--bulma-border);
-  --bulma-content-blockquote-padding: 1.25em 1.5em;
-  --bulma-content-pre-padding: 1.25em 1.5em;
-  --bulma-content-table-cell-border: 1px solid var(--bulma-border);
-  --bulma-content-table-cell-border-width: 0 0 1px;
-  --bulma-content-table-cell-padding: 0.5em 0.75em;
-  --bulma-content-table-cell-heading-color: var(--bulma-text-strong);
-  --bulma-content-table-head-cell-border-width: 0 0 2px;
-  --bulma-content-table-head-cell-color: var(--bulma-text-strong);
-  --bulma-content-table-body-last-row-cell-border-bottom-width: 0;
-  --bulma-content-table-foot-cell-border-width: 2px 0 0;
-  --bulma-content-table-foot-cell-color: var(--bulma-text-strong);
-}
+.container {
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
+  flex-grow: 1;
+  margin: 0 auto;
+  position: relative;
+  width: auto; }
+  @media screen and (min-width: 1024px) {
+    .container {
+      max-width: 960px; }
+      .container.is-fluid {
+        margin-left: 32px;
+        margin-right: 32px;
+        max-width: none; } }
+  @media screen and (max-width: 1215px) {
+    .container.is-widescreen {
+      max-width: 1152px; } }
+  @media screen and (max-width: 1407px) {
+    .container.is-fullhd {
+      max-width: 1344px; } }
+  @media screen and (min-width: 1216px) {
+    .container {
+      max-width: 1152px; } }
+  @media screen and (min-width: 1408px) {
+    .container {
+      max-width: 1344px; } }
 
 .content li + li {
-  margin-top: 0.25em;
-}
+  margin-top: 0.25em; }
+
 .content p:not(:last-child),
 .content dl:not(:last-child),
 .content ol:not(:last-child),
@@ -1222,2212 +2215,1478 @@ a.box:active {
 .content blockquote:not(:last-child),
 .content pre:not(:last-child),
 .content table:not(:last-child) {
-  margin-bottom: var(--bulma-content-block-margin-bottom);
-}
+  margin-bottom: 1em; }
+
 .content h1,
 .content h2,
 .content h3,
 .content h4,
 .content h5,
 .content h6 {
-  color: var(--bulma-content-heading-color);
-  font-weight: var(--bulma-content-heading-weight);
-  line-height: var(--bulma-content-heading-line-height);
-}
+  color: #363636;
+  font-weight: 600;
+  line-height: 1.125; }
+
 .content h1 {
   font-size: 2em;
-  margin-bottom: 0.5em;
-}
-.content h1:not(:first-child) {
-  margin-top: 1em;
-}
+  margin-bottom: 0.5em; }
+  .content h1:not(:first-child) {
+    margin-top: 1em; }
+
 .content h2 {
   font-size: 1.75em;
-  margin-bottom: 0.5714em;
-}
-.content h2:not(:first-child) {
-  margin-top: 1.1428em;
-}
+  margin-bottom: 0.5714em; }
+  .content h2:not(:first-child) {
+    margin-top: 1.1428em; }
+
 .content h3 {
   font-size: 1.5em;
-  margin-bottom: 0.6666em;
-}
-.content h3:not(:first-child) {
-  margin-top: 1.3333em;
-}
+  margin-bottom: 0.6666em; }
+  .content h3:not(:first-child) {
+    margin-top: 1.3333em; }
+
 .content h4 {
   font-size: 1.25em;
-  margin-bottom: 0.8em;
-}
+  margin-bottom: 0.8em; }
+
 .content h5 {
   font-size: 1.125em;
-  margin-bottom: 0.8888em;
-}
+  margin-bottom: 0.8888em; }
+
 .content h6 {
   font-size: 1em;
-  margin-bottom: 1em;
-}
+  margin-bottom: 1em; }
+
 .content blockquote {
-  background-color: var(--bulma-content-blockquote-background-color);
-  border-inline-start: var(--bulma-content-blockquote-border-left);
-  padding: var(--bulma-content-blockquote-padding);
-}
+  background-color: whitesmoke;
+  border-left: 5px solid #dbdbdb;
+  padding: 1.25em 1.5em; }
+
 .content ol {
   list-style-position: outside;
-  margin-inline-start: 2em;
-}
-.content ol:not(:first-child) {
-  margin-top: 1em;
-}
-.content ol:not([type]) {
-  list-style-type: decimal;
-}
-.content ol:not([type]).is-lower-alpha {
-  list-style-type: lower-alpha;
-}
-.content ol:not([type]).is-lower-roman {
-  list-style-type: lower-roman;
-}
-.content ol:not([type]).is-upper-alpha {
-  list-style-type: upper-alpha;
-}
-.content ol:not([type]).is-upper-roman {
-  list-style-type: upper-roman;
-}
+  margin-left: 2em;
+  margin-top: 1em; }
+  .content ol:not([type]) {
+    list-style-type: decimal; }
+    .content ol:not([type]).is-lower-alpha {
+      list-style-type: lower-alpha; }
+    .content ol:not([type]).is-lower-roman {
+      list-style-type: lower-roman; }
+    .content ol:not([type]).is-upper-alpha {
+      list-style-type: upper-alpha; }
+    .content ol:not([type]).is-upper-roman {
+      list-style-type: upper-roman; }
+
 .content ul {
   list-style: disc outside;
-  margin-inline-start: 2em;
-}
-.content ul:not(:first-child) {
-  margin-top: 1em;
-}
-.content ul ul {
-  list-style-type: circle;
-  margin-bottom: 0.25em;
-  margin-top: 0.25em;
-}
-.content ul ul ul {
-  list-style-type: square;
-}
+  margin-left: 2em;
+  margin-top: 1em; }
+  .content ul ul {
+    list-style-type: circle;
+    margin-top: 0.5em; }
+    .content ul ul ul {
+      list-style-type: square; }
+
 .content dd {
-  margin-inline-start: 2em;
-}
-.content figure:not([class]) {
+  margin-left: 2em; }
+
+.content figure {
   margin-left: 2em;
   margin-right: 2em;
-  text-align: center;
-}
-.content figure:not([class]):not(:first-child) {
-  margin-top: 2em;
-}
-.content figure:not([class]):not(:last-child) {
-  margin-bottom: 2em;
-}
-.content figure:not([class]) img {
-  display: inline-block;
-}
-.content figure:not([class]) figcaption {
-  font-style: italic;
-}
+  text-align: center; }
+  .content figure:not(:first-child) {
+    margin-top: 2em; }
+  .content figure:not(:last-child) {
+    margin-bottom: 2em; }
+  .content figure img {
+    display: inline-block; }
+  .content figure figcaption {
+    font-style: italic; }
+
 .content pre {
   -webkit-overflow-scrolling: touch;
   overflow-x: auto;
-  padding: var(--bulma-content-pre-padding);
+  padding: 1.25em 1.5em;
   white-space: pre;
-  word-wrap: normal;
-}
+  word-wrap: normal; }
+
 .content sup,
 .content sub {
-  font-size: 75%;
-}
-.content table td,
-.content table th {
-  border: var(--bulma-content-table-cell-border);
-  border-width: var(--bulma-content-table-cell-border-width);
-  padding: var(--bulma-content-table-cell-padding);
-  vertical-align: top;
-}
-.content table th {
-  color: var(--bulma-content-table-cell-heading-color);
-}
-.content table th:not([align]) {
-  text-align: inherit;
-}
-.content table thead td,
-.content table thead th {
-  border-width: var(--bulma-content-table-head-cell-border-width);
-  color: var(--bulma-content-table-head-cell-color);
-}
-.content table tfoot td,
-.content table tfoot th {
-  border-width: var(--bulma-content-table-foot-cell-border-width);
-  color: var(--bulma-content-table-foot-cell-color);
-}
-.content table tbody tr:last-child td,
-.content table tbody tr:last-child th {
-  border-bottom-width: var(--bulma-content-table-body-last-row-cell-border-bottom-width);
-}
+  font-size: 75%; }
+
+.content table {
+  width: 100%; }
+  .content table td,
+  .content table th {
+    border: 1px solid #dbdbdb;
+    border-width: 0 0 1px;
+    padding: 0.5em 0.75em;
+    vertical-align: top; }
+  .content table th {
+    color: #363636; }
+    .content table th:not([align]) {
+      text-align: left; }
+  .content table thead td,
+  .content table thead th {
+    border-width: 0 0 2px;
+    color: #363636; }
+  .content table tfoot td,
+  .content table tfoot th {
+    border-width: 2px 0 0;
+    color: #363636; }
+  .content table tbody tr:last-child td,
+  .content table tbody tr:last-child th {
+    border-bottom-width: 0; }
+
 .content .tabs li + li {
-  margin-top: 0;
-}
+  margin-top: 0; }
+
 .content.is-small {
-  font-size: var(--bulma-size-small);
-}
-.content.is-normal {
-  font-size: var(--bulma-size-normal);
-}
+  font-size: 0.75rem; }
+
 .content.is-medium {
-  font-size: var(--bulma-size-medium);
-}
+  font-size: 1.25rem; }
+
 .content.is-large {
-  font-size: var(--bulma-size-large);
-}
-
-.delete {
-  --bulma-delete-dimensions: 1.25rem;
-  --bulma-delete-background-l: 0%;
-  --bulma-delete-background-alpha: 0.5;
-  --bulma-delete-color: var(--bulma-white);
-  appearance: none;
-  background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-delete-background-l), var(--bulma-delete-background-alpha));
-  border: none;
-  border-radius: var(--bulma-radius-rounded);
-  cursor: pointer;
-  pointer-events: auto;
-  display: inline-flex;
-  flex-grow: 0;
-  flex-shrink: 0;
-  font-size: 1em;
-  height: var(--bulma-delete-dimensions);
-  max-height: var(--bulma-delete-dimensions);
-  max-width: var(--bulma-delete-dimensions);
-  min-height: var(--bulma-delete-dimensions);
-  min-width: var(--bulma-delete-dimensions);
-  outline: none;
-  position: relative;
-  vertical-align: top;
-  width: var(--bulma-delete-dimensions);
-}
-.delete::before, .delete::after {
-  background-color: var(--bulma-delete-color);
-  content: "";
-  display: block;
-  left: 50%;
-  position: absolute;
-  top: 50%;
-  transform: translateX(-50%) translateY(-50%) rotate(45deg);
-  transform-origin: center center;
-}
-.delete::before {
-  height: 2px;
-  width: 50%;
-}
-.delete::after {
-  height: 50%;
-  width: 2px;
-}
-.delete:hover, .delete:focus {
-  --bulma-delete-background-alpha: 0.4;
-}
-.delete:active {
-  --bulma-delete-background-alpha: 0.5;
-}
-.delete.is-small {
-  --bulma-delete-dimensions: 1rem;
-}
-.delete.is-medium {
-  --bulma-delete-dimensions: 1.5rem;
-}
-.delete.is-large {
-  --bulma-delete-dimensions: 2rem;
-}
-
-.icon,
-.icon-text {
-  --bulma-icon-dimensions: 1.5rem;
-  --bulma-icon-dimensions-small: 1rem;
-  --bulma-icon-dimensions-medium: 2rem;
-  --bulma-icon-dimensions-large: 3rem;
-  --bulma-icon-text-spacing: 0.25em;
-}
+  font-size: 1.5rem; }
 
 .icon {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
+  display: -webkit-inline-box;
+  display: -ms-inline-flexbox;
   display: inline-flex;
-  flex-shrink: 0;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  height: var(--bulma-icon-dimensions);
-  transition-duration: var(--bulma-duration);
-  transition-property: color;
-  width: var(--bulma-icon-dimensions);
-}
-.icon.is-small {
-  height: var(--bulma-icon-dimensions-small);
-  width: var(--bulma-icon-dimensions-small);
-}
-.icon.is-medium {
-  height: var(--bulma-icon-dimensions-medium);
-  width: var(--bulma-icon-dimensions-medium);
-}
-.icon.is-large {
-  height: var(--bulma-icon-dimensions-large);
-  width: var(--bulma-icon-dimensions-large);
-}
-
-.icon-text {
-  align-items: flex-start;
-  color: inherit;
-  display: inline-flex;
-  flex-wrap: wrap;
-  gap: var(--bulma-icon-text-spacing);
-  line-height: var(--bulma-icon-dimensions);
-  vertical-align: top;
-}
-.icon-text .icon {
-  flex-grow: 0;
-  flex-shrink: 0;
-}
-
-div.icon-text {
-  display: flex;
-}
+  height: 1.5rem;
+  width: 1.5rem; }
+  .icon.is-small {
+    height: 1rem;
+    width: 1rem; }
+  .icon.is-medium {
+    height: 2rem;
+    width: 2rem; }
+  .icon.is-large {
+    height: 3rem;
+    width: 3rem; }
 
 .image {
   display: block;
-  position: relative;
-}
-.image img {
-  display: block;
-  height: auto;
-  width: 100%;
-}
-.image img.is-rounded {
-  border-radius: var(--bulma-radius-rounded);
-}
-.image.is-fullwidth {
-  width: 100%;
-}
-.image.is-square img,
-.image.is-square .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-square {
-  aspect-ratio: 1;
-}
-.image.is-1by1 {
-  aspect-ratio: 1/1;
-}
-.image.is-1by1 img,
-.image.is-1by1 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-5by4 {
-  aspect-ratio: 5/4;
-}
-.image.is-5by4 img,
-.image.is-5by4 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-4by3 {
-  aspect-ratio: 4/3;
-}
-.image.is-4by3 img,
-.image.is-4by3 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-3by2 {
-  aspect-ratio: 3/2;
-}
-.image.is-3by2 img,
-.image.is-3by2 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-5by3 {
-  aspect-ratio: 5/3;
-}
-.image.is-5by3 img,
-.image.is-5by3 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-16by9 {
-  aspect-ratio: 16/9;
-}
-.image.is-16by9 img,
-.image.is-16by9 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-2by1 {
-  aspect-ratio: 2/1;
-}
-.image.is-2by1 img,
-.image.is-2by1 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-3by1 {
-  aspect-ratio: 3/1;
-}
-.image.is-3by1 img,
-.image.is-3by1 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-4by5 {
-  aspect-ratio: 4/5;
-}
-.image.is-4by5 img,
-.image.is-4by5 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-3by4 {
-  aspect-ratio: 3/4;
-}
-.image.is-3by4 img,
-.image.is-3by4 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-2by3 {
-  aspect-ratio: 2/3;
-}
-.image.is-2by3 img,
-.image.is-2by3 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-3by5 {
-  aspect-ratio: 3/5;
-}
-.image.is-3by5 img,
-.image.is-3by5 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-9by16 {
-  aspect-ratio: 9/16;
-}
-.image.is-9by16 img,
-.image.is-9by16 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-1by2 {
-  aspect-ratio: 1/2;
-}
-.image.is-1by2 img,
-.image.is-1by2 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-1by3 {
-  aspect-ratio: 1/3;
-}
-.image.is-1by3 img,
-.image.is-1by3 .has-ratio {
-  bottom: 0;
-  left: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  height: 100%;
-  width: 100%;
-}
-.image.is-16x16 {
-  height: 16px;
-  width: 16px;
-}
-.image.is-24x24 {
-  height: 24px;
-  width: 24px;
-}
-.image.is-32x32 {
-  height: 32px;
-  width: 32px;
-}
-.image.is-48x48 {
-  height: 48px;
-  width: 48px;
-}
-.image.is-64x64 {
-  height: 64px;
-  width: 64px;
-}
-.image.is-96x96 {
-  height: 96px;
-  width: 96px;
-}
-.image.is-128x128 {
-  height: 128px;
-  width: 128px;
-}
-
-.loader {
-  animation: spinAround 500ms infinite linear;
-  border: 2px solid var(--bulma-border);
-  border-radius: var(--bulma-radius-rounded);
-  border-right-color: transparent;
-  border-top-color: transparent;
-  content: "";
-  display: block;
-  height: 1em;
-  position: relative;
-  width: 1em;
-}
+  position: relative; }
+  .image img {
+    display: block;
+    height: auto;
+    width: 100%; }
+    .image img.is-rounded {
+      border-radius: 290486px; }
+  .image.is-square img,
+  .image.is-square .has-ratio, .image.is-1by1 img,
+  .image.is-1by1 .has-ratio, .image.is-5by4 img,
+  .image.is-5by4 .has-ratio, .image.is-4by3 img,
+  .image.is-4by3 .has-ratio, .image.is-3by2 img,
+  .image.is-3by2 .has-ratio, .image.is-5by3 img,
+  .image.is-5by3 .has-ratio, .image.is-16by9 img,
+  .image.is-16by9 .has-ratio, .image.is-2by1 img,
+  .image.is-2by1 .has-ratio, .image.is-3by1 img,
+  .image.is-3by1 .has-ratio, .image.is-4by5 img,
+  .image.is-4by5 .has-ratio, .image.is-3by4 img,
+  .image.is-3by4 .has-ratio, .image.is-2by3 img,
+  .image.is-2by3 .has-ratio, .image.is-3by5 img,
+  .image.is-3by5 .has-ratio, .image.is-9by16 img,
+  .image.is-9by16 .has-ratio, .image.is-1by2 img,
+  .image.is-1by2 .has-ratio, .image.is-1by3 img,
+  .image.is-1by3 .has-ratio {
+    height: 100%;
+    width: 100%; }
+  .image.is-square, .image.is-1by1 {
+    padding-top: 100%; }
+  .image.is-5by4 {
+    padding-top: 80%; }
+  .image.is-4by3 {
+    padding-top: 75%; }
+  .image.is-3by2 {
+    padding-top: 66.6666%; }
+  .image.is-5by3 {
+    padding-top: 60%; }
+  .image.is-16by9 {
+    padding-top: 56.25%; }
+  .image.is-2by1 {
+    padding-top: 50%; }
+  .image.is-3by1 {
+    padding-top: 33.3333%; }
+  .image.is-4by5 {
+    padding-top: 125%; }
+  .image.is-3by4 {
+    padding-top: 133.3333%; }
+  .image.is-2by3 {
+    padding-top: 150%; }
+  .image.is-3by5 {
+    padding-top: 166.6666%; }
+  .image.is-9by16 {
+    padding-top: 177.7777%; }
+  .image.is-1by2 {
+    padding-top: 200%; }
+  .image.is-1by3 {
+    padding-top: 300%; }
+  .image.is-16x16 {
+    height: 16px;
+    width: 16px; }
+  .image.is-24x24 {
+    height: 24px;
+    width: 24px; }
+  .image.is-32x32 {
+    height: 32px;
+    width: 32px; }
+  .image.is-48x48 {
+    height: 48px;
+    width: 48px; }
+  .image.is-64x64 {
+    height: 64px;
+    width: 64px; }
+  .image.is-96x96 {
+    height: 96px;
+    width: 96px; }
+  .image.is-128x128 {
+    height: 128px;
+    width: 128px; }
 
 .notification {
-  --bulma-notification-h: var(--bulma-scheme-h);
-  --bulma-notification-s: var(--bulma-scheme-s);
-  --bulma-notification-background-l: var(--bulma-background-l);
-  --bulma-notification-color-l: var(--bulma-text-strong-l);
-  --bulma-notification-code-background-color: var(--bulma-scheme-main);
-  --bulma-notification-radius: var(--bulma-radius);
-  --bulma-notification-padding: 1.375em 1.5em;
-}
-
-.notification {
-  background-color: hsl(var(--bulma-notification-h), var(--bulma-notification-s), var(--bulma-notification-background-l));
-  border-radius: var(--bulma-notification-radius);
-  color: hsl(var(--bulma-notification-h), var(--bulma-notification-s), var(--bulma-notification-color-l));
-  padding: var(--bulma-notification-padding);
-  position: relative;
-}
-.notification a:not(.button):not(.dropdown-item) {
-  color: currentColor;
-  text-decoration: underline;
-}
-.notification strong {
-  color: currentColor;
-}
-.notification code,
-.notification pre {
-  background: var(--bulma-notification-code-background-color);
-}
-.notification pre code {
-  background: transparent;
-}
-.notification > .delete {
-  position: absolute;
-  inset-inline-end: 1rem;
-  top: 1rem;
-}
-.notification .title,
-.notification .subtitle,
-.notification .content {
-  color: currentColor;
-}
-.notification.is-white {
-  --bulma-notification-h: var(--bulma-white-h);
-  --bulma-notification-s: var(--bulma-white-s);
-  --bulma-notification-background-l: var(--bulma-white-l);
-  --bulma-notification-color-l: var(--bulma-white-invert-l);
-}
-.notification.is-white.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-white-light-invert-l);
-}
-.notification.is-white.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-white-dark-invert-l);
-}
-.notification.is-black {
-  --bulma-notification-h: var(--bulma-black-h);
-  --bulma-notification-s: var(--bulma-black-s);
-  --bulma-notification-background-l: var(--bulma-black-l);
-  --bulma-notification-color-l: var(--bulma-black-invert-l);
-}
-.notification.is-black.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-black-light-invert-l);
-}
-.notification.is-black.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-black-dark-invert-l);
-}
-.notification.is-light {
-  --bulma-notification-h: var(--bulma-light-h);
-  --bulma-notification-s: var(--bulma-light-s);
-  --bulma-notification-background-l: var(--bulma-light-l);
-  --bulma-notification-color-l: var(--bulma-light-invert-l);
-}
-.notification.is-light.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-light-light-invert-l);
-}
-.notification.is-light.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-light-dark-invert-l);
-}
-.notification.is-dark {
-  --bulma-notification-h: var(--bulma-dark-h);
-  --bulma-notification-s: var(--bulma-dark-s);
-  --bulma-notification-background-l: var(--bulma-dark-l);
-  --bulma-notification-color-l: var(--bulma-dark-invert-l);
-}
-.notification.is-dark.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-dark-light-invert-l);
-}
-.notification.is-dark.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-dark-dark-invert-l);
-}
-.notification.is-text {
-  --bulma-notification-h: var(--bulma-text-h);
-  --bulma-notification-s: var(--bulma-text-s);
-  --bulma-notification-background-l: var(--bulma-text-l);
-  --bulma-notification-color-l: var(--bulma-text-invert-l);
-}
-.notification.is-text.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-text-light-invert-l);
-}
-.notification.is-text.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-text-dark-invert-l);
-}
-.notification.is-primary {
-  --bulma-notification-h: var(--bulma-primary-h);
-  --bulma-notification-s: var(--bulma-primary-s);
-  --bulma-notification-background-l: var(--bulma-primary-l);
-  --bulma-notification-color-l: var(--bulma-primary-invert-l);
-}
-.notification.is-primary.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-primary-light-invert-l);
-}
-.notification.is-primary.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-primary-dark-invert-l);
-}
-.notification.is-link {
-  --bulma-notification-h: var(--bulma-link-h);
-  --bulma-notification-s: var(--bulma-link-s);
-  --bulma-notification-background-l: var(--bulma-link-l);
-  --bulma-notification-color-l: var(--bulma-link-invert-l);
-}
-.notification.is-link.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-link-light-invert-l);
-}
-.notification.is-link.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-link-dark-invert-l);
-}
-.notification.is-info {
-  --bulma-notification-h: var(--bulma-info-h);
-  --bulma-notification-s: var(--bulma-info-s);
-  --bulma-notification-background-l: var(--bulma-info-l);
-  --bulma-notification-color-l: var(--bulma-info-invert-l);
-}
-.notification.is-info.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-info-light-invert-l);
-}
-.notification.is-info.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-info-dark-invert-l);
-}
-.notification.is-success {
-  --bulma-notification-h: var(--bulma-success-h);
-  --bulma-notification-s: var(--bulma-success-s);
-  --bulma-notification-background-l: var(--bulma-success-l);
-  --bulma-notification-color-l: var(--bulma-success-invert-l);
-}
-.notification.is-success.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-success-light-invert-l);
-}
-.notification.is-success.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-success-dark-invert-l);
-}
-.notification.is-warning {
-  --bulma-notification-h: var(--bulma-warning-h);
-  --bulma-notification-s: var(--bulma-warning-s);
-  --bulma-notification-background-l: var(--bulma-warning-l);
-  --bulma-notification-color-l: var(--bulma-warning-invert-l);
-}
-.notification.is-warning.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-warning-light-invert-l);
-}
-.notification.is-warning.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-warning-dark-invert-l);
-}
-.notification.is-danger {
-  --bulma-notification-h: var(--bulma-danger-h);
-  --bulma-notification-s: var(--bulma-danger-s);
-  --bulma-notification-background-l: var(--bulma-danger-l);
-  --bulma-notification-color-l: var(--bulma-danger-invert-l);
-}
-.notification.is-danger.is-light {
-  --bulma-notification-background-l: 90%;
-  --bulma-notification-color-l: var(--bulma-danger-light-invert-l);
-}
-.notification.is-danger.is-dark {
-  --bulma-notification-background-l: 20%;
-  --bulma-notification-color-l: var(--bulma-danger-dark-invert-l);
-}
+  background-color: whitesmoke;
+  border-radius: 4px;
+  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
+  position: relative; }
+  .notification a:not(.button):not(.dropdown-item) {
+    color: currentColor;
+    text-decoration: underline; }
+  .notification strong {
+    color: currentColor; }
+  .notification code,
+  .notification pre {
+    background: white; }
+  .notification pre code {
+    background: transparent; }
+  .notification > .delete {
+    position: absolute;
+    right: 0.5rem;
+    top: 0.5rem; }
+  .notification .title,
+  .notification .subtitle,
+  .notification .content {
+    color: currentColor; }
+  .notification.is-white {
+    background-color: white;
+    color: #0a0a0a; }
+  .notification.is-black {
+    background-color: #0a0a0a;
+    color: white; }
+  .notification.is-light {
+    background-color: whitesmoke;
+    color: #363636; }
+  .notification.is-dark {
+    background-color: #363636;
+    color: whitesmoke; }
+  .notification.is-primary {
+    background-color: #478D00;
+    color: #fff; }
+  .notification.is-link {
+    background-color: #4391E0;
+    color: #fff; }
+  .notification.is-info {
+    background-color: #209cee;
+    color: #fff; }
+  .notification.is-success {
+    background-color: #478D00;
+    color: #fff; }
+  .notification.is-warning {
+    background-color: #ffdd57;
+    color: rgba(0, 0, 0, 0.7); }
+  .notification.is-danger {
+    background-color: #a70c20;
+    color: #fff; }
 
 .progress {
-  --bulma-progress-border-radius: var(--bulma-radius-rounded);
-  --bulma-progress-bar-background-color: var(--bulma-border-weak);
-  --bulma-progress-value-background-color: var(--bulma-text);
-  --bulma-progress-indeterminate-duration: 1.5s;
-}
-
-.progress {
-  appearance: none;
+  -moz-appearance: none;
+  -webkit-appearance: none;
   border: none;
-  border-radius: var(--bulma-progress-border-radius);
+  border-radius: 290486px;
   display: block;
-  height: var(--bulma-size-normal);
+  height: 1rem;
   overflow: hidden;
   padding: 0;
-  width: 100%;
-}
-.progress::-webkit-progress-bar {
-  background-color: var(--bulma-progress-bar-background-color);
-}
-.progress::-webkit-progress-value {
-  background-color: var(--bulma-progress-value-background-color);
-}
-.progress::-moz-progress-bar {
-  background-color: var(--bulma-progress-value-background-color);
-}
-.progress::-ms-fill {
-  background-color: var(--bulma-progress-value-background-color);
-  border: none;
-}
-.progress.is-white {
-  --bulma-progress-value-background-color: var(--bulma-white);
-}
-.progress.is-black {
-  --bulma-progress-value-background-color: var(--bulma-black);
-}
-.progress.is-light {
-  --bulma-progress-value-background-color: var(--bulma-light);
-}
-.progress.is-dark {
-  --bulma-progress-value-background-color: var(--bulma-dark);
-}
-.progress.is-text {
-  --bulma-progress-value-background-color: var(--bulma-text);
-}
-.progress.is-primary {
-  --bulma-progress-value-background-color: var(--bulma-primary);
-}
-.progress.is-link {
-  --bulma-progress-value-background-color: var(--bulma-link);
-}
-.progress.is-info {
-  --bulma-progress-value-background-color: var(--bulma-info);
-}
-.progress.is-success {
-  --bulma-progress-value-background-color: var(--bulma-success);
-}
-.progress.is-warning {
-  --bulma-progress-value-background-color: var(--bulma-warning);
-}
-.progress.is-danger {
-  --bulma-progress-value-background-color: var(--bulma-danger);
-}
-.progress:indeterminate {
-  animation-duration: var(--bulma-progress-indeterminate-duration);
-  animation-iteration-count: infinite;
-  animation-name: moveIndeterminate;
-  animation-timing-function: linear;
-  background-color: var(--bulma-progress-bar-background-color);
-  background-image: linear-gradient(to right, var(--bulma-progress-value-background-color) 30%, var(--bulma-progress-bar-background-color) 30%);
-  background-position: top left;
-  background-repeat: no-repeat;
-  background-size: 150% 150%;
-}
-.progress:indeterminate::-webkit-progress-bar {
-  background-color: transparent;
-}
-.progress:indeterminate::-moz-progress-bar {
-  background-color: transparent;
-}
-.progress:indeterminate::-ms-fill {
-  animation-name: none;
-}
-.progress.is-small {
-  height: var(--bulma-size-small);
-}
-.progress.is-medium {
-  height: var(--bulma-size-medium);
-}
-.progress.is-large {
-  height: var(--bulma-size-large);
-}
+  width: 100%; }
+  .progress::-webkit-progress-bar {
+    background-color: #dbdbdb; }
+  .progress::-webkit-progress-value {
+    background-color: #4a4a4a; }
+  .progress::-moz-progress-bar {
+    background-color: #4a4a4a; }
+  .progress::-ms-fill {
+    background-color: #4a4a4a;
+    border: none; }
+  .progress.is-white::-webkit-progress-value {
+    background-color: white; }
+  .progress.is-white::-moz-progress-bar {
+    background-color: white; }
+  .progress.is-white::-ms-fill {
+    background-color: white; }
+  .progress.is-white:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, white), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, white 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, white 30%, #dbdbdb 30%); }
+  .progress.is-black::-webkit-progress-value {
+    background-color: #0a0a0a; }
+  .progress.is-black::-moz-progress-bar {
+    background-color: #0a0a0a; }
+  .progress.is-black::-ms-fill {
+    background-color: #0a0a0a; }
+  .progress.is-black:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #0a0a0a), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #0a0a0a 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #0a0a0a 30%, #dbdbdb 30%); }
+  .progress.is-light::-webkit-progress-value {
+    background-color: whitesmoke; }
+  .progress.is-light::-moz-progress-bar {
+    background-color: whitesmoke; }
+  .progress.is-light::-ms-fill {
+    background-color: whitesmoke; }
+  .progress.is-light:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, whitesmoke), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, whitesmoke 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, whitesmoke 30%, #dbdbdb 30%); }
+  .progress.is-dark::-webkit-progress-value {
+    background-color: #363636; }
+  .progress.is-dark::-moz-progress-bar {
+    background-color: #363636; }
+  .progress.is-dark::-ms-fill {
+    background-color: #363636; }
+  .progress.is-dark:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #363636), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #363636 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #363636 30%, #dbdbdb 30%); }
+  .progress.is-primary::-webkit-progress-value {
+    background-color: #478D00; }
+  .progress.is-primary::-moz-progress-bar {
+    background-color: #478D00; }
+  .progress.is-primary::-ms-fill {
+    background-color: #478D00; }
+  .progress.is-primary:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #478D00), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #478D00 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #478D00 30%, #dbdbdb 30%); }
+  .progress.is-link::-webkit-progress-value {
+    background-color: #4391E0; }
+  .progress.is-link::-moz-progress-bar {
+    background-color: #4391E0; }
+  .progress.is-link::-ms-fill {
+    background-color: #4391E0; }
+  .progress.is-link:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #4391E0), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #4391E0 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #4391E0 30%, #dbdbdb 30%); }
+  .progress.is-info::-webkit-progress-value {
+    background-color: #209cee; }
+  .progress.is-info::-moz-progress-bar {
+    background-color: #209cee; }
+  .progress.is-info::-ms-fill {
+    background-color: #209cee; }
+  .progress.is-info:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #209cee), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #209cee 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #209cee 30%, #dbdbdb 30%); }
+  .progress.is-success::-webkit-progress-value {
+    background-color: #478D00; }
+  .progress.is-success::-moz-progress-bar {
+    background-color: #478D00; }
+  .progress.is-success::-ms-fill {
+    background-color: #478D00; }
+  .progress.is-success:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #478D00), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #478D00 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #478D00 30%, #dbdbdb 30%); }
+  .progress.is-warning::-webkit-progress-value {
+    background-color: #ffdd57; }
+  .progress.is-warning::-moz-progress-bar {
+    background-color: #ffdd57; }
+  .progress.is-warning::-ms-fill {
+    background-color: #ffdd57; }
+  .progress.is-warning:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #ffdd57), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #ffdd57 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #ffdd57 30%, #dbdbdb 30%); }
+  .progress.is-danger::-webkit-progress-value {
+    background-color: #a70c20; }
+  .progress.is-danger::-moz-progress-bar {
+    background-color: #a70c20; }
+  .progress.is-danger::-ms-fill {
+    background-color: #a70c20; }
+  .progress.is-danger:indeterminate {
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #a70c20), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #a70c20 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #a70c20 30%, #dbdbdb 30%); }
+  .progress:indeterminate {
+    -webkit-animation-duration: 1.5s;
+    animation-duration: 1.5s;
+    -webkit-animation-iteration-count: infinite;
+    animation-iteration-count: infinite;
+    -webkit-animation-name: moveIndeterminate;
+    animation-name: moveIndeterminate;
+    -webkit-animation-timing-function: linear;
+    animation-timing-function: linear;
+    background-color: #dbdbdb;
+    background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #4a4a4a), color-stop(30%, #dbdbdb));
+    background-image: -o-linear-gradient(left, #4a4a4a 30%, #dbdbdb 30%);
+    background-image: linear-gradient(to right, #4a4a4a 30%, #dbdbdb 30%);
+    background-position: top left;
+    background-repeat: no-repeat;
+    background-size: 150% 150%; }
+    .progress:indeterminate::-webkit-progress-bar {
+      background-color: transparent; }
+    .progress:indeterminate::-moz-progress-bar {
+      background-color: transparent; }
+  .progress.is-small {
+    height: 0.75rem; }
+  .progress.is-medium {
+    height: 1.25rem; }
+  .progress.is-large {
+    height: 1.5rem; }
+
+@-webkit-keyframes moveIndeterminate {
+  from {
+    background-position: 200% 0; }
+  to {
+    background-position: -200% 0; } }
 
 @keyframes moveIndeterminate {
   from {
-    background-position: 200% 0;
-  }
+    background-position: 200% 0; }
   to {
-    background-position: -200% 0;
-  }
-}
-.table {
-  --bulma-table-color: var(--bulma-text-strong);
-  --bulma-table-background-color: var(--bulma-scheme-main);
-  --bulma-table-cell-border-color: var(--bulma-border);
-  --bulma-table-cell-border-style: solid;
-  --bulma-table-cell-border-width: 0 0 1px;
-  --bulma-table-cell-padding: 0.5em 0.75em;
-  --bulma-table-cell-heading-color: var(--bulma-text-strong);
-  --bulma-table-cell-text-align: left;
-  --bulma-table-head-cell-border-width: 0 0 2px;
-  --bulma-table-head-cell-color: var(--bulma-text-strong);
-  --bulma-table-foot-cell-border-width: 2px 0 0;
-  --bulma-table-foot-cell-color: var(--bulma-text-strong);
-  --bulma-table-head-background-color: transparent;
-  --bulma-table-body-background-color: transparent;
-  --bulma-table-foot-background-color: transparent;
-  --bulma-table-row-hover-background-color: var(--bulma-scheme-main-bis);
-  --bulma-table-row-active-background-color: var(--bulma-primary);
-  --bulma-table-row-active-color: var(--bulma-primary-invert);
-  --bulma-table-striped-row-even-background-color: var(--bulma-scheme-main-bis);
-  --bulma-table-striped-row-even-hover-background-color: var(--bulma-scheme-main-ter);
-}
+    background-position: -200% 0; } }
 
 .table {
-  background-color: var(--bulma-table-background-color);
-  color: var(--bulma-table-color);
-}
-.table td,
-.table th {
-  background-color: var(--bulma-table-cell-background-color);
-  border-color: var(--bulma-table-cell-border-color);
-  border-style: var(--bulma-table-cell-border-style);
-  border-width: var(--bulma-table-cell-border-width);
-  color: var(--bulma-table-color);
-  padding: var(--bulma-table-cell-padding);
-  vertical-align: top;
-}
-.table td.is-white,
-.table th.is-white {
-  --bulma-table-color: var(--bulma-white-invert);
-  --bulma-table-cell-heading-color: var(--bulma-white-invert);
-  --bulma-table-cell-background-color: var(--bulma-white);
-  --bulma-table-cell-border-color: var(--bulma-white);
-}
-.table td.is-black,
-.table th.is-black {
-  --bulma-table-color: var(--bulma-black-invert);
-  --bulma-table-cell-heading-color: var(--bulma-black-invert);
-  --bulma-table-cell-background-color: var(--bulma-black);
-  --bulma-table-cell-border-color: var(--bulma-black);
-}
-.table td.is-light,
-.table th.is-light {
-  --bulma-table-color: var(--bulma-light-invert);
-  --bulma-table-cell-heading-color: var(--bulma-light-invert);
-  --bulma-table-cell-background-color: var(--bulma-light);
-  --bulma-table-cell-border-color: var(--bulma-light);
-}
-.table td.is-dark,
-.table th.is-dark {
-  --bulma-table-color: var(--bulma-dark-invert);
-  --bulma-table-cell-heading-color: var(--bulma-dark-invert);
-  --bulma-table-cell-background-color: var(--bulma-dark);
-  --bulma-table-cell-border-color: var(--bulma-dark);
-}
-.table td.is-text,
-.table th.is-text {
-  --bulma-table-color: var(--bulma-text-invert);
-  --bulma-table-cell-heading-color: var(--bulma-text-invert);
-  --bulma-table-cell-background-color: var(--bulma-text);
-  --bulma-table-cell-border-color: var(--bulma-text);
-}
-.table td.is-primary,
-.table th.is-primary {
-  --bulma-table-color: var(--bulma-primary-invert);
-  --bulma-table-cell-heading-color: var(--bulma-primary-invert);
-  --bulma-table-cell-background-color: var(--bulma-primary);
-  --bulma-table-cell-border-color: var(--bulma-primary);
-}
-.table td.is-link,
-.table th.is-link {
-  --bulma-table-color: var(--bulma-link-invert);
-  --bulma-table-cell-heading-color: var(--bulma-link-invert);
-  --bulma-table-cell-background-color: var(--bulma-link);
-  --bulma-table-cell-border-color: var(--bulma-link);
-}
-.table td.is-info,
-.table th.is-info {
-  --bulma-table-color: var(--bulma-info-invert);
-  --bulma-table-cell-heading-color: var(--bulma-info-invert);
-  --bulma-table-cell-background-color: var(--bulma-info);
-  --bulma-table-cell-border-color: var(--bulma-info);
-}
-.table td.is-success,
-.table th.is-success {
-  --bulma-table-color: var(--bulma-success-invert);
-  --bulma-table-cell-heading-color: var(--bulma-success-invert);
-  --bulma-table-cell-background-color: var(--bulma-success);
-  --bulma-table-cell-border-color: var(--bulma-success);
-}
-.table td.is-warning,
-.table th.is-warning {
-  --bulma-table-color: var(--bulma-warning-invert);
-  --bulma-table-cell-heading-color: var(--bulma-warning-invert);
-  --bulma-table-cell-background-color: var(--bulma-warning);
-  --bulma-table-cell-border-color: var(--bulma-warning);
-}
-.table td.is-danger,
-.table th.is-danger {
-  --bulma-table-color: var(--bulma-danger-invert);
-  --bulma-table-cell-heading-color: var(--bulma-danger-invert);
-  --bulma-table-cell-background-color: var(--bulma-danger);
-  --bulma-table-cell-border-color: var(--bulma-danger);
-}
-.table td.is-narrow,
-.table th.is-narrow {
-  white-space: nowrap;
-  width: 1%;
-}
-.table td.is-selected,
-.table th.is-selected {
-  background-color: var(--bulma-table-row-active-background-color);
-  color: var(--bulma-table-row-active-color);
-}
-.table td.is-selected a,
-.table td.is-selected strong,
-.table th.is-selected a,
-.table th.is-selected strong {
-  color: currentColor;
-}
-.table td.is-vcentered,
-.table th.is-vcentered {
-  vertical-align: middle;
-}
-.table th {
-  color: var(--bulma-table-cell-heading-color);
-}
-.table th:not([align]) {
-  text-align: var(--bulma-table-cell-text-align);
-}
-.table tr.is-selected {
-  background-color: var(--bulma-table-row-active-background-color);
-  color: var(--bulma-table-row-active-color);
-}
-.table tr.is-selected a,
-.table tr.is-selected strong {
-  color: currentColor;
-}
-.table tr.is-selected td,
-.table tr.is-selected th {
-  border-color: var(--bulma-table-row-active-color);
-  color: currentColor;
-}
-.table tr.is-white {
-  --bulma-table-color: var(--bulma-white-invert);
-  --bulma-table-cell-heading-color: var(--bulma-white-invert);
-  --bulma-table-cell-background-color: var(--bulma-white);
-  --bulma-table-cell-border-color: var(--bulma-white);
-}
-.table tr.is-black {
-  --bulma-table-color: var(--bulma-black-invert);
-  --bulma-table-cell-heading-color: var(--bulma-black-invert);
-  --bulma-table-cell-background-color: var(--bulma-black);
-  --bulma-table-cell-border-color: var(--bulma-black);
-}
-.table tr.is-light {
-  --bulma-table-color: var(--bulma-light-invert);
-  --bulma-table-cell-heading-color: var(--bulma-light-invert);
-  --bulma-table-cell-background-color: var(--bulma-light);
-  --bulma-table-cell-border-color: var(--bulma-light);
-}
-.table tr.is-dark {
-  --bulma-table-color: var(--bulma-dark-invert);
-  --bulma-table-cell-heading-color: var(--bulma-dark-invert);
-  --bulma-table-cell-background-color: var(--bulma-dark);
-  --bulma-table-cell-border-color: var(--bulma-dark);
-}
-.table tr.is-text {
-  --bulma-table-color: var(--bulma-text-invert);
-  --bulma-table-cell-heading-color: var(--bulma-text-invert);
-  --bulma-table-cell-background-color: var(--bulma-text);
-  --bulma-table-cell-border-color: var(--bulma-text);
-}
-.table tr.is-primary {
-  --bulma-table-color: var(--bulma-primary-invert);
-  --bulma-table-cell-heading-color: var(--bulma-primary-invert);
-  --bulma-table-cell-background-color: var(--bulma-primary);
-  --bulma-table-cell-border-color: var(--bulma-primary);
-}
-.table tr.is-link {
-  --bulma-table-color: var(--bulma-link-invert);
-  --bulma-table-cell-heading-color: var(--bulma-link-invert);
-  --bulma-table-cell-background-color: var(--bulma-link);
-  --bulma-table-cell-border-color: var(--bulma-link);
-}
-.table tr.is-info {
-  --bulma-table-color: var(--bulma-info-invert);
-  --bulma-table-cell-heading-color: var(--bulma-info-invert);
-  --bulma-table-cell-background-color: var(--bulma-info);
-  --bulma-table-cell-border-color: var(--bulma-info);
-}
-.table tr.is-success {
-  --bulma-table-color: var(--bulma-success-invert);
-  --bulma-table-cell-heading-color: var(--bulma-success-invert);
-  --bulma-table-cell-background-color: var(--bulma-success);
-  --bulma-table-cell-border-color: var(--bulma-success);
-}
-.table tr.is-warning {
-  --bulma-table-color: var(--bulma-warning-invert);
-  --bulma-table-cell-heading-color: var(--bulma-warning-invert);
-  --bulma-table-cell-background-color: var(--bulma-warning);
-  --bulma-table-cell-border-color: var(--bulma-warning);
-}
-.table tr.is-danger {
-  --bulma-table-color: var(--bulma-danger-invert);
-  --bulma-table-cell-heading-color: var(--bulma-danger-invert);
-  --bulma-table-cell-background-color: var(--bulma-danger);
-  --bulma-table-cell-border-color: var(--bulma-danger);
-}
-.table thead {
-  background-color: var(--bulma-table-head-background-color);
-}
-.table thead td,
-.table thead th {
-  border-width: var(--bulma-table-head-cell-border-width);
-  color: var(--bulma-table-head-cell-color);
-}
-.table tfoot {
-  background-color: var(--bulma-table-foot-background-color);
-}
-.table tfoot td,
-.table tfoot th {
-  border-width: var(--bulma-table-foot-cell-border-width);
-  color: var(--bulma-table-foot-cell-color);
-}
-.table tbody {
-  background-color: var(--bulma-table-body-background-color);
-}
-.table tbody tr:last-child td,
-.table tbody tr:last-child th {
-  border-bottom-width: 0;
-}
-.table.is-bordered td,
-.table.is-bordered th {
-  border-width: 1px;
-}
-.table.is-bordered tr:last-child td,
-.table.is-bordered tr:last-child th {
-  border-bottom-width: 1px;
-}
-.table.is-fullwidth {
-  width: 100%;
-}
-.table.is-hoverable tbody tr:not(.is-selected):hover {
-  background-color: var(--bulma-table-row-hover-background-color);
-}
-.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
-  background-color: var(--bulma-table-row-hover-background-color);
-}
-.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
-  background-color: var(--bulma-table-striped-row-even-hover-background-color);
-}
-.table.is-narrow td,
-.table.is-narrow th {
-  padding: 0.25em 0.5em;
-}
-.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
-  background-color: var(--bulma-table-striped-row-even-background-color);
-}
+  background-color: white;
+  color: #363636; }
+  .table td,
+  .table th {
+    border: 1px solid #dbdbdb;
+    border-width: 0 0 1px;
+    padding: 0.5em 0.75em;
+    vertical-align: top; }
+    .table td.is-white,
+    .table th.is-white {
+      background-color: white;
+      border-color: white;
+      color: #0a0a0a; }
+    .table td.is-black,
+    .table th.is-black {
+      background-color: #0a0a0a;
+      border-color: #0a0a0a;
+      color: white; }
+    .table td.is-light,
+    .table th.is-light {
+      background-color: whitesmoke;
+      border-color: whitesmoke;
+      color: #363636; }
+    .table td.is-dark,
+    .table th.is-dark {
+      background-color: #363636;
+      border-color: #363636;
+      color: whitesmoke; }
+    .table td.is-primary,
+    .table th.is-primary {
+      background-color: #478D00;
+      border-color: #478D00;
+      color: #fff; }
+    .table td.is-link,
+    .table th.is-link {
+      background-color: #4391E0;
+      border-color: #4391E0;
+      color: #fff; }
+    .table td.is-info,
+    .table th.is-info {
+      background-color: #209cee;
+      border-color: #209cee;
+      color: #fff; }
+    .table td.is-success,
+    .table th.is-success {
+      background-color: #478D00;
+      border-color: #478D00;
+      color: #fff; }
+    .table td.is-warning,
+    .table th.is-warning {
+      background-color: #ffdd57;
+      border-color: #ffdd57;
+      color: rgba(0, 0, 0, 0.7); }
+    .table td.is-danger,
+    .table th.is-danger {
+      background-color: #a70c20;
+      border-color: #a70c20;
+      color: #fff; }
+    .table td.is-narrow,
+    .table th.is-narrow {
+      white-space: nowrap;
+      width: 1%; }
+    .table td.is-selected,
+    .table th.is-selected {
+      background-color: #478D00;
+      color: #fff; }
+      .table td.is-selected a,
+      .table td.is-selected strong,
+      .table th.is-selected a,
+      .table th.is-selected strong {
+        color: currentColor; }
+  .table th {
+    color: #363636; }
+    .table th:not([align]) {
+      text-align: left; }
+  .table tr.is-selected {
+    background-color: #478D00;
+    color: #fff; }
+    .table tr.is-selected a,
+    .table tr.is-selected strong {
+      color: currentColor; }
+    .table tr.is-selected td,
+    .table tr.is-selected th {
+      border-color: #fff;
+      color: currentColor; }
+  .table thead {
+    background-color: transparent; }
+    .table thead td,
+    .table thead th {
+      border-width: 0 0 2px;
+      color: #363636; }
+  .table tfoot {
+    background-color: transparent; }
+    .table tfoot td,
+    .table tfoot th {
+      border-width: 2px 0 0;
+      color: #363636; }
+  .table tbody {
+    background-color: transparent; }
+    .table tbody tr:last-child td,
+    .table tbody tr:last-child th {
+      border-bottom-width: 0; }
+  .table.is-bordered td,
+  .table.is-bordered th {
+    border-width: 1px; }
+  .table.is-bordered tr:last-child td,
+  .table.is-bordered tr:last-child th {
+    border-bottom-width: 1px; }
+  .table.is-fullwidth {
+    width: 100%; }
+  .table.is-hoverable tbody tr:not(.is-selected):hover {
+    background-color: #fafafa; }
+  .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
+    background-color: #fafafa; }
+    .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
+      background-color: whitesmoke; }
+  .table.is-narrow td,
+  .table.is-narrow th {
+    padding: 0.25em 0.5em; }
+  .table.is-striped tbody tr:not(.is-selected):nth-child(even) {
+    background-color: #fafafa; }
 
 .table-container {
   -webkit-overflow-scrolling: touch;
   overflow: auto;
   overflow-y: hidden;
-  max-width: 100%;
-}
+  max-width: 100%; }
 
 .tags {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
-  color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l));
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -ms-flex-wrap: wrap;
   flex-wrap: wrap;
-  gap: 0.5rem;
-  justify-content: flex-start;
-}
-.tags.are-medium .tag:not(.is-normal):not(.is-large) {
-  font-size: var(--bulma-size-normal);
-}
-.tags.are-large .tag:not(.is-normal):not(.is-medium) {
-  font-size: var(--bulma-size-medium);
-}
-.tags.is-centered {
-  gap: 0.25rem;
-  justify-content: center;
-}
-.tags.is-right {
-  justify-content: flex-end;
-}
-.tags.has-addons {
-  gap: 0;
-}
-.tags.has-addons .tag:not(:first-child) {
-  border-start-start-radius: 0;
-  border-end-start-radius: 0;
-}
-.tags.has-addons .tag:not(:last-child) {
-  border-start-end-radius: 0;
-  border-end-end-radius: 0;
-}
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
+  justify-content: flex-start; }
+  .tags .tag {
+    margin-bottom: 0.5rem; }
+    .tags .tag:not(:last-child) {
+      margin-right: 0.5rem; }
+  .tags:last-child {
+    margin-bottom: -0.5rem; }
+  .tags:not(:last-child) {
+    margin-bottom: 1rem; }
+  .tags.are-medium .tag:not(.is-normal):not(.is-large) {
+    font-size: 1rem; }
+  .tags.are-large .tag:not(.is-normal):not(.is-medium) {
+    font-size: 1.25rem; }
+  .tags.is-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+    .tags.is-centered .tag {
+      margin-right: 0.25rem;
+      margin-left: 0.25rem; }
+  .tags.is-right {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+    .tags.is-right .tag:not(:first-child) {
+      margin-left: 0.5rem; }
+    .tags.is-right .tag:not(:last-child) {
+      margin-right: 0; }
+  .tags.has-addons .tag {
+    margin-right: 0; }
+    .tags.has-addons .tag:not(:first-child) {
+      margin-left: 0;
+      border-bottom-left-radius: 0;
+      border-top-left-radius: 0; }
+    .tags.has-addons .tag:not(:last-child) {
+      border-bottom-right-radius: 0;
+      border-top-right-radius: 0; }
 
-.tag {
-  --bulma-tag-h: var(--bulma-scheme-h);
-  --bulma-tag-s: var(--bulma-scheme-s);
-  --bulma-tag-background-l: var(--bulma-background-l);
-  --bulma-tag-background-l-delta: 0%;
-  --bulma-tag-hover-background-l-delta: var(--bulma-hover-background-l-delta);
-  --bulma-tag-active-background-l-delta: var(--bulma-active-background-l-delta);
-  --bulma-tag-color-l: var(--bulma-text-l);
-  --bulma-tag-radius: var(--bulma-radius);
-  --bulma-tag-delete-margin: 1px;
+.tag:not(body) {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
-  background-color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), calc(var(--bulma-tag-background-l) + var(--bulma-tag-background-l-delta)));
-  border-radius: var(--bulma-radius);
-  color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l));
+  background-color: whitesmoke;
+  border-radius: 4px;
+  color: #4a4a4a;
+  display: -webkit-inline-box;
+  display: -ms-inline-flexbox;
   display: inline-flex;
-  font-size: var(--bulma-size-small);
+  font-size: 0.75rem;
   height: 2em;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
   line-height: 1.5;
   padding-left: 0.75em;
   padding-right: 0.75em;
-  white-space: nowrap;
-}
-.tag .delete {
-  margin-inline-start: 0.25rem;
-  margin-inline-end: -0.375rem;
-}
-.tag.is-white {
-  --bulma-tag-h: var(--bulma-white-h);
-  --bulma-tag-s: var(--bulma-white-s);
-  --bulma-tag-background-l: var(--bulma-white-l);
-  --bulma-tag-color-l: var(--bulma-white-invert-l);
-}
-.tag.is-white.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-white-light-invert-l);
-}
-.tag.is-black {
-  --bulma-tag-h: var(--bulma-black-h);
-  --bulma-tag-s: var(--bulma-black-s);
-  --bulma-tag-background-l: var(--bulma-black-l);
-  --bulma-tag-color-l: var(--bulma-black-invert-l);
-}
-.tag.is-black.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-black-light-invert-l);
-}
-.tag.is-light {
-  --bulma-tag-h: var(--bulma-light-h);
-  --bulma-tag-s: var(--bulma-light-s);
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-light-invert-l);
-}
-.tag.is-light.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-light-light-invert-l);
-}
-.tag.is-dark {
-  --bulma-tag-h: var(--bulma-dark-h);
-  --bulma-tag-s: var(--bulma-dark-s);
-  --bulma-tag-background-l: var(--bulma-dark-l);
-  --bulma-tag-color-l: var(--bulma-dark-invert-l);
-}
-.tag.is-dark.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-dark-light-invert-l);
-}
-.tag.is-text {
-  --bulma-tag-h: var(--bulma-text-h);
-  --bulma-tag-s: var(--bulma-text-s);
-  --bulma-tag-background-l: var(--bulma-text-l);
-  --bulma-tag-color-l: var(--bulma-text-invert-l);
-}
-.tag.is-text.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-text-light-invert-l);
-}
-.tag.is-primary {
-  --bulma-tag-h: var(--bulma-primary-h);
-  --bulma-tag-s: var(--bulma-primary-s);
-  --bulma-tag-background-l: var(--bulma-primary-l);
-  --bulma-tag-color-l: var(--bulma-primary-invert-l);
-}
-.tag.is-primary.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-primary-light-invert-l);
-}
-.tag.is-link {
-  --bulma-tag-h: var(--bulma-link-h);
-  --bulma-tag-s: var(--bulma-link-s);
-  --bulma-tag-background-l: var(--bulma-link-l);
-  --bulma-tag-color-l: var(--bulma-link-invert-l);
-}
-.tag.is-link.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-link-light-invert-l);
-}
-.tag.is-info {
-  --bulma-tag-h: var(--bulma-info-h);
-  --bulma-tag-s: var(--bulma-info-s);
-  --bulma-tag-background-l: var(--bulma-info-l);
-  --bulma-tag-color-l: var(--bulma-info-invert-l);
-}
-.tag.is-info.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-info-light-invert-l);
-}
-.tag.is-success {
-  --bulma-tag-h: var(--bulma-success-h);
-  --bulma-tag-s: var(--bulma-success-s);
-  --bulma-tag-background-l: var(--bulma-success-l);
-  --bulma-tag-color-l: var(--bulma-success-invert-l);
-}
-.tag.is-success.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-success-light-invert-l);
-}
-.tag.is-warning {
-  --bulma-tag-h: var(--bulma-warning-h);
-  --bulma-tag-s: var(--bulma-warning-s);
-  --bulma-tag-background-l: var(--bulma-warning-l);
-  --bulma-tag-color-l: var(--bulma-warning-invert-l);
-}
-.tag.is-warning.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-warning-light-invert-l);
-}
-.tag.is-danger {
-  --bulma-tag-h: var(--bulma-danger-h);
-  --bulma-tag-s: var(--bulma-danger-s);
-  --bulma-tag-background-l: var(--bulma-danger-l);
-  --bulma-tag-color-l: var(--bulma-danger-invert-l);
-}
-.tag.is-danger.is-light {
-  --bulma-tag-background-l: var(--bulma-light-l);
-  --bulma-tag-color-l: var(--bulma-danger-light-invert-l);
-}
-.tag.is-normal {
-  font-size: var(--bulma-size-small);
-}
-.tag.is-medium {
-  font-size: var(--bulma-size-normal);
-}
-.tag.is-large {
-  font-size: var(--bulma-size-medium);
-}
-.tag .icon:first-child:not(:last-child) {
-  margin-inline-start: -0.375em;
-  margin-inline-end: 0.1875em;
-}
-.tag .icon:last-child:not(:first-child) {
-  margin-inline-start: 0.1875em;
-  margin-inline-end: -0.375em;
-}
-.tag .icon:first-child:last-child {
-  margin-inline-start: -0.375em;
-  margin-inline-end: -0.375em;
-}
-.tag.is-delete {
-  margin-inline-start: var(--bulma-tag-delete-margin);
-  padding: 0;
-  position: relative;
-  width: 2em;
-}
-.tag.is-delete::before, .tag.is-delete::after {
-  background-color: currentColor;
-  content: "";
-  display: block;
-  left: 50%;
-  position: absolute;
-  top: 50%;
-  transform: translateX(-50%) translateY(-50%) rotate(45deg);
-  transform-origin: center center;
-}
-.tag.is-delete::before {
-  height: 1px;
-  width: 50%;
-}
-.tag.is-delete::after {
-  height: 50%;
-  width: 1px;
-}
-.tag.is-rounded {
-  border-radius: var(--bulma-radius-rounded);
-}
+  white-space: nowrap; }
+  .tag:not(body) .delete {
+    margin-left: 0.25rem;
+    margin-right: -0.375rem; }
+  .tag:not(body).is-white {
+    background-color: white;
+    color: #0a0a0a; }
+  .tag:not(body).is-black {
+    background-color: #0a0a0a;
+    color: white; }
+  .tag:not(body).is-light {
+    background-color: whitesmoke;
+    color: #363636; }
+  .tag:not(body).is-dark {
+    background-color: #363636;
+    color: whitesmoke; }
+  .tag:not(body).is-primary {
+    background-color: #478D00;
+    color: #fff; }
+  .tag:not(body).is-link {
+    background-color: #4391E0;
+    color: #fff; }
+  .tag:not(body).is-info {
+    background-color: #209cee;
+    color: #fff; }
+  .tag:not(body).is-success {
+    background-color: #478D00;
+    color: #fff; }
+  .tag:not(body).is-warning {
+    background-color: #ffdd57;
+    color: rgba(0, 0, 0, 0.7); }
+  .tag:not(body).is-danger {
+    background-color: #a70c20;
+    color: #fff; }
+  .tag:not(body).is-normal {
+    font-size: 0.75rem; }
+  .tag:not(body).is-medium {
+    font-size: 1rem; }
+  .tag:not(body).is-large {
+    font-size: 1.25rem; }
+  .tag:not(body) .icon:first-child:not(:last-child) {
+    margin-left: -0.375em;
+    margin-right: 0.1875em; }
+  .tag:not(body) .icon:last-child:not(:first-child) {
+    margin-left: 0.1875em;
+    margin-right: -0.375em; }
+  .tag:not(body) .icon:first-child:last-child {
+    margin-left: -0.375em;
+    margin-right: -0.375em; }
+  .tag:not(body).is-delete {
+    margin-left: 1px;
+    padding: 0;
+    position: relative;
+    width: 2em; }
+    .tag:not(body).is-delete::before, .tag:not(body).is-delete::after {
+      background-color: currentColor;
+      content: "";
+      display: block;
+      left: 50%;
+      position: absolute;
+      top: 50%;
+      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
+      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
+      transform: translateX(-50%) translateY(-50%) rotate(45deg);
+      -webkit-transform-origin: center center;
+      -ms-transform-origin: center center;
+      transform-origin: center center; }
+    .tag:not(body).is-delete::before {
+      height: 1px;
+      width: 50%; }
+    .tag:not(body).is-delete::after {
+      height: 50%;
+      width: 1px; }
+    .tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus {
+      background-color: #e8e8e8; }
+    .tag:not(body).is-delete:active {
+      background-color: #dbdbdb; }
+  .tag:not(body).is-rounded {
+    border-radius: 290486px; }
 
-a.tag,
-button.tag,
-.tag.is-hoverable {
-  cursor: pointer;
-}
-a.tag:hover,
-button.tag:hover,
-.tag.is-hoverable:hover {
-  --bulma-tag-background-l-delta: var(--bulma-tag-hover-background-l-delta);
-}
-a.tag:active,
-button.tag:active,
-.tag.is-hoverable:active {
-  --bulma-tag-background-l-delta: var(--bulma-tag-active-background-l-delta);
-}
+a.tag:hover {
+  text-decoration: underline; }
 
 .title,
 .subtitle {
-  --bulma-title-color: var(--bulma-text-strong);
-  --bulma-title-family: false;
-  --bulma-title-size: var(--bulma-size-3);
-  --bulma-title-weight: var(--bulma-weight-extrabold);
-  --bulma-title-line-height: 1.125;
-  --bulma-title-strong-color: inherit;
-  --bulma-title-strong-weight: inherit;
-  --bulma-title-sub-size: 0.75em;
-  --bulma-title-sup-size: 0.75em;
-  --bulma-subtitle-color: var(--bulma-text);
-  --bulma-subtitle-family: false;
-  --bulma-subtitle-size: var(--bulma-size-5);
-  --bulma-subtitle-weight: var(--bulma-weight-normal);
-  --bulma-subtitle-line-height: 1.25;
-  --bulma-subtitle-strong-color: var(--bulma-text-strong);
-  --bulma-subtitle-strong-weight: var(--bulma-weight-semibold);
-}
-
-.title,
-.subtitle {
-  word-break: break-word;
-}
-.title em,
-.title span,
-.subtitle em,
-.subtitle span {
-  font-weight: inherit;
-}
-.title sub,
-.subtitle sub {
-  font-size: var(--bulma-title-sub-size);
-}
-.title sup,
-.subtitle sup {
-  font-size: var(--bulma-title-sup-size);
-}
-.title .tag,
-.subtitle .tag {
-  vertical-align: middle;
-}
+  word-break: break-word; }
+  .title em,
+  .title span,
+  .subtitle em,
+  .subtitle span {
+    font-weight: inherit; }
+  .title sub,
+  .subtitle sub {
+    font-size: 0.75em; }
+  .title sup,
+  .subtitle sup {
+    font-size: 0.75em; }
+  .title .tag,
+  .subtitle .tag {
+    vertical-align: middle; }
 
 .title {
-  color: var(--bulma-title-color);
-  font-size: var(--bulma-title-size);
-  font-weight: var(--bulma-title-weight);
-  line-height: var(--bulma-title-line-height);
-}
-.title strong {
-  color: var(--bulma-title-strong-color);
-  font-weight: var(--bulma-title-strong-weight);
-}
-.title:not(.is-spaced):has(+ .subtitle) {
-  margin-bottom: 0;
-}
-.title.is-1 {
-  font-size: 3rem;
-}
-.title.is-2 {
-  font-size: 2.5rem;
-}
-.title.is-3 {
+  color: #363636;
   font-size: 2rem;
-}
-.title.is-4 {
-  font-size: 1.5rem;
-}
-.title.is-5 {
-  font-size: 1.25rem;
-}
-.title.is-6 {
-  font-size: 1rem;
-}
-.title.is-7 {
-  font-size: 0.75rem;
-}
+  font-weight: 600;
+  line-height: 1.125; }
+  .title strong {
+    color: inherit;
+    font-weight: inherit; }
+  .title + .highlight {
+    margin-top: -0.75rem; }
+  .title:not(.is-spaced) + .subtitle {
+    margin-top: -1.25rem; }
+  .title.is-1 {
+    font-size: 3rem; }
+  .title.is-2 {
+    font-size: 2.5rem; }
+  .title.is-3 {
+    font-size: 2rem; }
+  .title.is-4 {
+    font-size: 1.5rem; }
+  .title.is-5 {
+    font-size: 1.25rem; }
+  .title.is-6 {
+    font-size: 1rem; }
+  .title.is-7 {
+    font-size: 0.75rem; }
 
 .subtitle {
-  color: var(--bulma-subtitle-color);
-  font-size: var(--bulma-subtitle-size);
-  font-weight: var(--bulma-subtitle-weight);
-  line-height: var(--bulma-subtitle-line-height);
-}
-.subtitle strong {
-  color: var(--bulma-subtitle-strong-color);
-  font-weight: var(--bulma-subtitle-strong-weight);
-}
-.subtitle:not(.is-spaced):has(+ .title) {
-  margin-bottom: 0;
-}
-.subtitle.is-1 {
-  font-size: 3rem;
-}
-.subtitle.is-2 {
-  font-size: 2.5rem;
-}
-.subtitle.is-3 {
-  font-size: 2rem;
-}
-.subtitle.is-4 {
-  font-size: 1.5rem;
-}
-.subtitle.is-5 {
+  color: #4a4a4a;
   font-size: 1.25rem;
-}
-.subtitle.is-6 {
-  font-size: 1rem;
-}
-.subtitle.is-7 {
-  font-size: 0.75rem;
-}
+  font-weight: 400;
+  line-height: 1.25; }
+  .subtitle strong {
+    color: #363636;
+    font-weight: 600; }
+  .subtitle:not(.is-spaced) + .title {
+    margin-top: -1.25rem; }
+  .subtitle.is-1 {
+    font-size: 3rem; }
+  .subtitle.is-2 {
+    font-size: 2.5rem; }
+  .subtitle.is-3 {
+    font-size: 2rem; }
+  .subtitle.is-4 {
+    font-size: 1.5rem; }
+  .subtitle.is-5 {
+    font-size: 1.25rem; }
+  .subtitle.is-6 {
+    font-size: 1rem; }
+  .subtitle.is-7 {
+    font-size: 0.75rem; }
+
+.heading {
+  display: block;
+  font-size: 11px;
+  letter-spacing: 1px;
+  margin-bottom: 5px;
+  text-transform: uppercase; }
+
+.highlight {
+  font-weight: 400;
+  max-width: 100%;
+  overflow: hidden;
+  padding: 0; }
+  .highlight pre {
+    overflow: auto;
+    max-width: 100%; }
+
+.number {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
+  align-items: center;
+  background-color: whitesmoke;
+  border-radius: 290486px;
+  display: -webkit-inline-box;
+  display: -ms-inline-flexbox;
+  display: inline-flex;
+  font-size: 1.25rem;
+  height: 2em;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
+  justify-content: center;
+  margin-right: 1.5rem;
+  min-width: 2.5em;
+  padding: 0.25rem 0.5rem;
+  text-align: center;
+  vertical-align: top; }
 
 /* Extend or override Bulma's elements ../../node_modules/bulma/sass/elements */
 .site-title {
   display: inline-block;
   width: 4.6em;
-  word-break: keep-all; /* Shouldn't be needed but Chrome needs it. */
+  word-break: keep-all;
+  /* Shouldn't be needed but Chrome needs it. */
   font-size: 37px;
-  line-height: 38px;
-}
+  line-height: 38px; }
 
 .user-account-menu li {
   display: inline-block;
-  padding: 0.1rem 0.6rem;
-}
+  padding: .1rem .6rem; }
 
 /* Add a gradient across only a portion of the vertical width of the navbar. */
 .header,
 .sitename {
-  background: linear-gradient(hsl(221, 14%, 96%), hsl(221, 14%, 96%) 74px, #65AB1F 74px, #478D00 120px, hsl(221, 14%, 96%) 120px, hsl(221, 14%, 96%));
-}
+  background: -o-linear-gradient(white, white 74px, #65AB1F 74px, #478D00 120px, white 120px, white);
+  background: linear-gradient(white, white 74px, #65AB1F 74px, #478D00 120px, white 120px, white); }
 
 #navbar-menu .navbar-item {
-  font-size: 22px;
-}
+  font-size: 22px; }
 
 .slogan {
+  -webkit-box-shadow: 0 2px 0 0 whitesmoke;
   box-shadow: 0 2px 0 0 whitesmoke;
-  margin-bottom: 2px; /* Needed to see the boxshadow when we have the featured image directly below. */
-  padding-bottom: 4px; /* Give just a little extra space at the bottom for the *appearance* of balance. */
-}
-.slogan .title {
-  color: #8FB489;
-  font-size: 1.2rem;
-}
+  margin-bottom: 2px;
+  /* Needed to see the boxshadow when we have the featured image directly below. */
+  padding-bottom: 4px;
+  /* Give just a little extra space at the bottom for the *appearance* of balance. */ }
+  .slogan .title {
+    color: #8FB489;
+    font-size: 1.2rem; }
 
 /* Give some space above the subtitle. */
 .featured-image {
-  margin-bottom: 0.5rem;
-}
+  margin-bottom: 0.5rem; }
 
-.image-inline {
-  margin: 1em;
-}
+.input, .textarea, .select select {
+  background-color: white;
+  border-color: #dbdbdb;
+  border-radius: 4px;
+  color: #363636; }
+  .input::-moz-placeholder, .textarea::-moz-placeholder, .select select::-moz-placeholder {
+    color: rgba(54, 54, 54, 0.3); }
+  .input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .select select::-webkit-input-placeholder {
+    color: rgba(54, 54, 54, 0.3); }
+  .input:-moz-placeholder, .textarea:-moz-placeholder, .select select:-moz-placeholder {
+    color: rgba(54, 54, 54, 0.3); }
+  .input:-ms-input-placeholder, .textarea:-ms-input-placeholder, .select select:-ms-input-placeholder {
+    color: rgba(54, 54, 54, 0.3); }
+  .input:hover, .textarea:hover, .select select:hover, .is-hovered.input, .is-hovered.textarea, .select select.is-hovered {
+    border-color: #b5b5b5; }
+  .input:focus, .textarea:focus, .select select:focus, .is-focused.input, .is-focused.textarea, .select select.is-focused, .input:active, .textarea:active, .select select:active, .is-active.input, .is-active.textarea, .select select.is-active {
+    border-color: #4391E0;
+    -webkit-box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25);
+    box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); }
+  .input[disabled], .textarea[disabled], .select select[disabled],
+  fieldset[disabled] .input,
+  fieldset[disabled] .textarea,
+  fieldset[disabled] .select select,
+  .select fieldset[disabled] select {
+    background-color: whitesmoke;
+    border-color: whitesmoke;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    color: #7a7a7a; }
+    .input[disabled]::-moz-placeholder, .textarea[disabled]::-moz-placeholder, .select select[disabled]::-moz-placeholder,
+    fieldset[disabled] .input::-moz-placeholder,
+    fieldset[disabled] .textarea::-moz-placeholder,
+    fieldset[disabled] .select select::-moz-placeholder,
+    .select fieldset[disabled] select::-moz-placeholder {
+      color: rgba(122, 122, 122, 0.3); }
+    .input[disabled]::-webkit-input-placeholder, .textarea[disabled]::-webkit-input-placeholder, .select select[disabled]::-webkit-input-placeholder,
+    fieldset[disabled] .input::-webkit-input-placeholder,
+    fieldset[disabled] .textarea::-webkit-input-placeholder,
+    fieldset[disabled] .select select::-webkit-input-placeholder,
+    .select fieldset[disabled] select::-webkit-input-placeholder {
+      color: rgba(122, 122, 122, 0.3); }
+    .input[disabled]:-moz-placeholder, .textarea[disabled]:-moz-placeholder, .select select[disabled]:-moz-placeholder,
+    fieldset[disabled] .input:-moz-placeholder,
+    fieldset[disabled] .textarea:-moz-placeholder,
+    fieldset[disabled] .select select:-moz-placeholder,
+    .select fieldset[disabled] select:-moz-placeholder {
+      color: rgba(122, 122, 122, 0.3); }
+    .input[disabled]:-ms-input-placeholder, .textarea[disabled]:-ms-input-placeholder, .select select[disabled]:-ms-input-placeholder,
+    fieldset[disabled] .input:-ms-input-placeholder,
+    fieldset[disabled] .textarea:-ms-input-placeholder,
+    fieldset[disabled] .select select:-ms-input-placeholder,
+    .select fieldset[disabled] select:-ms-input-placeholder {
+      color: rgba(122, 122, 122, 0.3); }
 
-.drum {
-  margin-bottom: 1.2rem;
-}
-
-/* Remove empty gap from featured homepage image, to match look of content. */
-.block--highlighted {
-  margin-top: -1.5rem;
-}
-
-/* I know this is wrong but it seems to work flawlessly across sizes. */
-.more-link {
-  float: right;
-  position: relative;
-  top: -0.333rem;
-}
-
-/* Bulma Form */
-.control,
-.input,
-.textarea,
-.select {
-  --bulma-input-h: var(--bulma-scheme-h);
-  --bulma-input-s: var(--bulma-scheme-s);
-  --bulma-input-l: var(--bulma-scheme-main-l);
-  --bulma-input-border-style: solid;
-  --bulma-input-border-width: var(--bulma-control-border-width);
-  --bulma-input-border-l: var(--bulma-border-l);
-  --bulma-input-border-l-delta: 0%;
-  --bulma-input-border-color: hsl(var(--bulma-input-h), var(--bulma-input-s), calc(var(--bulma-input-border-l) + var(--bulma-input-border-l-delta)));
-  --bulma-input-hover-border-l-delta: var(--bulma-hover-border-l-delta);
-  --bulma-input-active-border-l-delta: var(--bulma-active-border-l-delta);
-  --bulma-input-focus-h: var(--bulma-focus-h);
-  --bulma-input-focus-s: var(--bulma-focus-s);
-  --bulma-input-focus-l: var(--bulma-focus-l);
-  --bulma-input-focus-shadow-size: var(--bulma-focus-shadow-size);
-  --bulma-input-focus-shadow-alpha: var(--bulma-focus-shadow-alpha);
-  --bulma-input-color-l: var(--bulma-text-strong-l);
-  --bulma-input-background-l: var(--bulma-scheme-main-l);
-  --bulma-input-background-l-delta: 0%;
-  --bulma-input-height: var(--bulma-control-height);
-  --bulma-input-shadow: inset 0 0.0625em 0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.05);
-  --bulma-input-placeholder-color: hsla(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-text-strong-l), 0.3);
-  --bulma-input-disabled-color: var(--bulma-text-weak);
-  --bulma-input-disabled-background-color: var(--bulma-background);
-  --bulma-input-disabled-border-color: var(--bulma-background);
-  --bulma-input-disabled-placeholder-color: hsla(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-text-weak-l), 0.3);
-  --bulma-input-arrow: var(--bulma-link);
-  --bulma-input-icon-color: var(--bulma-text-light);
-  --bulma-input-icon-hover-color: var(--bulma-text-weak);
-  --bulma-input-icon-focus-color: var(--bulma-link);
-  --bulma-input-radius: var(--bulma-radius);
-}
-
-.select select, .input, .textarea {
-  background-color: hsl(var(--bulma-input-h), var(--bulma-input-s), calc(var(--bulma-input-background-l) + var(--bulma-input-background-l-delta)));
-  border-color: var(--bulma-input-border-color);
-  border-radius: var(--bulma-input-radius);
-  color: hsl(var(--bulma-input-h), var(--bulma-input-s), var(--bulma-input-color-l));
-}
-.select select::-moz-placeholder, .input::-moz-placeholder, .textarea::-moz-placeholder {
-  color: var(--bulma-input-placeholder-color);
-}
-.select select::-webkit-input-placeholder, .input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
-  color: var(--bulma-input-placeholder-color);
-}
-.select select:-moz-placeholder, .input:-moz-placeholder, .textarea:-moz-placeholder {
-  color: var(--bulma-input-placeholder-color);
-}
-.select select:-ms-input-placeholder, .input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
-  color: var(--bulma-input-placeholder-color);
-}
-.select select:hover, .input:hover, .textarea:hover, .select select.is-hovered, .is-hovered.input, .is-hovered.textarea {
-  --bulma-input-border-l-delta: var(--bulma-input-hover-border-l-delta);
-}
-.select select:active, .input:active, .textarea:active, .select select.is-active, .is-active.input, .is-active.textarea {
-  --bulma-input-border-l-delta: var(--bulma-input-active-border-l-delta);
-}
-.select select:focus, .input:focus, .textarea:focus, .select select:focus-within, .input:focus-within, .textarea:focus-within, .select select.is-focused, .is-focused.input, .is-focused.textarea {
-  border-color: hsl(var(--bulma-input-focus-h), var(--bulma-input-focus-s), var(--bulma-input-focus-l));
-  box-shadow: var(--bulma-input-focus-shadow-size) hsla(var(--bulma-input-focus-h), var(--bulma-input-focus-s), var(--bulma-input-focus-l), var(--bulma-input-focus-shadow-alpha));
-}
-.select select[disabled], [disabled].input, [disabled].textarea, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .input, fieldset[disabled] .textarea {
-  background-color: var(--bulma-input-disabled-background-color);
-  border-color: var(--bulma-input-disabled-border-color);
-  box-shadow: none;
-  color: var(--bulma-input-disabled-color);
-}
-.select select[disabled]::-moz-placeholder, [disabled].input::-moz-placeholder, [disabled].textarea::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder {
-  color: var(--bulma-input-disabled-placeholder-color);
-}
-.select select[disabled]::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder {
-  color: var(--bulma-input-disabled-placeholder-color);
-}
-.select select[disabled]:-moz-placeholder, [disabled].input:-moz-placeholder, [disabled].textarea:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder {
-  color: var(--bulma-input-disabled-placeholder-color);
-}
-.select select[disabled]:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder {
-  color: var(--bulma-input-disabled-placeholder-color);
-}
-
-/* Bulma Form */
-.textarea, .input {
-  box-shadow: inset 0 0.0625em 0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.05);
+.input, .textarea {
+  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
+  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
   max-width: 100%;
-  width: 100%;
-}
-[readonly].textarea, [readonly].input {
-  box-shadow: none;
-}
-.is-white.textarea, .is-white.input {
-  --bulma-input-h: var(--bulma-white-h);
-  --bulma-input-s: var(--bulma-white-s);
-  --bulma-input-l: var(--bulma-white-l);
-  --bulma-input-focus-h: var(--bulma-white-h);
-  --bulma-input-focus-s: var(--bulma-white-s);
-  --bulma-input-focus-l: var(--bulma-white-l);
-  --bulma-input-border-l: var(--bulma-white-l);
-}
-.is-black.textarea, .is-black.input {
-  --bulma-input-h: var(--bulma-black-h);
-  --bulma-input-s: var(--bulma-black-s);
-  --bulma-input-l: var(--bulma-black-l);
-  --bulma-input-focus-h: var(--bulma-black-h);
-  --bulma-input-focus-s: var(--bulma-black-s);
-  --bulma-input-focus-l: var(--bulma-black-l);
-  --bulma-input-border-l: var(--bulma-black-l);
-}
-.is-light.textarea, .is-light.input {
-  --bulma-input-h: var(--bulma-light-h);
-  --bulma-input-s: var(--bulma-light-s);
-  --bulma-input-l: var(--bulma-light-l);
-  --bulma-input-focus-h: var(--bulma-light-h);
-  --bulma-input-focus-s: var(--bulma-light-s);
-  --bulma-input-focus-l: var(--bulma-light-l);
-  --bulma-input-border-l: var(--bulma-light-l);
-}
-.is-dark.textarea, .is-dark.input {
-  --bulma-input-h: var(--bulma-dark-h);
-  --bulma-input-s: var(--bulma-dark-s);
-  --bulma-input-l: var(--bulma-dark-l);
-  --bulma-input-focus-h: var(--bulma-dark-h);
-  --bulma-input-focus-s: var(--bulma-dark-s);
-  --bulma-input-focus-l: var(--bulma-dark-l);
-  --bulma-input-border-l: var(--bulma-dark-l);
-}
-.is-text.textarea, .is-text.input {
-  --bulma-input-h: var(--bulma-text-h);
-  --bulma-input-s: var(--bulma-text-s);
-  --bulma-input-l: var(--bulma-text-l);
-  --bulma-input-focus-h: var(--bulma-text-h);
-  --bulma-input-focus-s: var(--bulma-text-s);
-  --bulma-input-focus-l: var(--bulma-text-l);
-  --bulma-input-border-l: var(--bulma-text-l);
-}
-.is-primary.textarea, .is-primary.input {
-  --bulma-input-h: var(--bulma-primary-h);
-  --bulma-input-s: var(--bulma-primary-s);
-  --bulma-input-l: var(--bulma-primary-l);
-  --bulma-input-focus-h: var(--bulma-primary-h);
-  --bulma-input-focus-s: var(--bulma-primary-s);
-  --bulma-input-focus-l: var(--bulma-primary-l);
-  --bulma-input-border-l: var(--bulma-primary-l);
-}
-.is-link.textarea, .is-link.input {
-  --bulma-input-h: var(--bulma-link-h);
-  --bulma-input-s: var(--bulma-link-s);
-  --bulma-input-l: var(--bulma-link-l);
-  --bulma-input-focus-h: var(--bulma-link-h);
-  --bulma-input-focus-s: var(--bulma-link-s);
-  --bulma-input-focus-l: var(--bulma-link-l);
-  --bulma-input-border-l: var(--bulma-link-l);
-}
-.is-info.textarea, .is-info.input {
-  --bulma-input-h: var(--bulma-info-h);
-  --bulma-input-s: var(--bulma-info-s);
-  --bulma-input-l: var(--bulma-info-l);
-  --bulma-input-focus-h: var(--bulma-info-h);
-  --bulma-input-focus-s: var(--bulma-info-s);
-  --bulma-input-focus-l: var(--bulma-info-l);
-  --bulma-input-border-l: var(--bulma-info-l);
-}
-.is-success.textarea, .is-success.input {
-  --bulma-input-h: var(--bulma-success-h);
-  --bulma-input-s: var(--bulma-success-s);
-  --bulma-input-l: var(--bulma-success-l);
-  --bulma-input-focus-h: var(--bulma-success-h);
-  --bulma-input-focus-s: var(--bulma-success-s);
-  --bulma-input-focus-l: var(--bulma-success-l);
-  --bulma-input-border-l: var(--bulma-success-l);
-}
-.is-warning.textarea, .is-warning.input {
-  --bulma-input-h: var(--bulma-warning-h);
-  --bulma-input-s: var(--bulma-warning-s);
-  --bulma-input-l: var(--bulma-warning-l);
-  --bulma-input-focus-h: var(--bulma-warning-h);
-  --bulma-input-focus-s: var(--bulma-warning-s);
-  --bulma-input-focus-l: var(--bulma-warning-l);
-  --bulma-input-border-l: var(--bulma-warning-l);
-}
-.is-danger.textarea, .is-danger.input {
-  --bulma-input-h: var(--bulma-danger-h);
-  --bulma-input-s: var(--bulma-danger-s);
-  --bulma-input-l: var(--bulma-danger-l);
-  --bulma-input-focus-h: var(--bulma-danger-h);
-  --bulma-input-focus-s: var(--bulma-danger-s);
-  --bulma-input-focus-l: var(--bulma-danger-l);
-  --bulma-input-border-l: var(--bulma-danger-l);
-}
-.is-small.textarea, .is-small.input {
-  border-radius: var(--bulma-radius-small);
-  font-size: var(--bulma-size-small);
-}
-.is-medium.textarea, .is-medium.input {
-  font-size: var(--bulma-size-medium);
-}
-.is-large.textarea, .is-large.input {
-  font-size: var(--bulma-size-large);
-}
-.is-fullwidth.textarea, .is-fullwidth.input {
-  display: block;
-  width: 100%;
-}
-.is-inline.textarea, .is-inline.input {
-  display: inline;
-  width: auto;
-}
+  width: 100%; }
+  .input[readonly], .textarea[readonly] {
+    -webkit-box-shadow: none;
+    box-shadow: none; }
+  .is-white.input, .is-white.textarea {
+    border-color: white; }
+    .is-white.input:focus, .is-white.textarea:focus, .is-white.is-focused.input, .is-white.is-focused.textarea, .is-white.input:active, .is-white.textarea:active, .is-white.is-active.input, .is-white.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); }
+  .is-black.input, .is-black.textarea {
+    border-color: #0a0a0a; }
+    .is-black.input:focus, .is-black.textarea:focus, .is-black.is-focused.input, .is-black.is-focused.textarea, .is-black.input:active, .is-black.textarea:active, .is-black.is-active.input, .is-black.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); }
+  .is-light.input, .is-light.textarea {
+    border-color: whitesmoke; }
+    .is-light.input:focus, .is-light.textarea:focus, .is-light.is-focused.input, .is-light.is-focused.textarea, .is-light.input:active, .is-light.textarea:active, .is-light.is-active.input, .is-light.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); }
+  .is-dark.input, .is-dark.textarea {
+    border-color: #363636; }
+    .is-dark.input:focus, .is-dark.textarea:focus, .is-dark.is-focused.input, .is-dark.is-focused.textarea, .is-dark.input:active, .is-dark.textarea:active, .is-dark.is-active.input, .is-dark.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); }
+  .is-primary.input, .is-primary.textarea {
+    border-color: #478D00; }
+    .is-primary.input:focus, .is-primary.textarea:focus, .is-primary.is-focused.input, .is-primary.is-focused.textarea, .is-primary.input:active, .is-primary.textarea:active, .is-primary.is-active.input, .is-primary.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); }
+  .is-link.input, .is-link.textarea {
+    border-color: #4391E0; }
+    .is-link.input:focus, .is-link.textarea:focus, .is-link.is-focused.input, .is-link.is-focused.textarea, .is-link.input:active, .is-link.textarea:active, .is-link.is-active.input, .is-link.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); }
+  .is-info.input, .is-info.textarea {
+    border-color: #209cee; }
+    .is-info.input:focus, .is-info.textarea:focus, .is-info.is-focused.input, .is-info.is-focused.textarea, .is-info.input:active, .is-info.textarea:active, .is-info.is-active.input, .is-info.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); }
+  .is-success.input, .is-success.textarea {
+    border-color: #478D00; }
+    .is-success.input:focus, .is-success.textarea:focus, .is-success.is-focused.input, .is-success.is-focused.textarea, .is-success.input:active, .is-success.textarea:active, .is-success.is-active.input, .is-success.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); }
+  .is-warning.input, .is-warning.textarea {
+    border-color: #ffdd57; }
+    .is-warning.input:focus, .is-warning.textarea:focus, .is-warning.is-focused.input, .is-warning.is-focused.textarea, .is-warning.input:active, .is-warning.textarea:active, .is-warning.is-active.input, .is-warning.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); }
+  .is-danger.input, .is-danger.textarea {
+    border-color: #a70c20; }
+    .is-danger.input:focus, .is-danger.textarea:focus, .is-danger.is-focused.input, .is-danger.is-focused.textarea, .is-danger.input:active, .is-danger.textarea:active, .is-danger.is-active.input, .is-danger.is-active.textarea {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25); }
+  .is-small.input, .is-small.textarea {
+    border-radius: 2px;
+    font-size: 0.75rem; }
+  .is-medium.input, .is-medium.textarea {
+    font-size: 1.25rem; }
+  .is-large.input, .is-large.textarea {
+    font-size: 1.5rem; }
+  .is-fullwidth.input, .is-fullwidth.textarea {
+    display: block;
+    width: 100%; }
+  .is-inline.input, .is-inline.textarea {
+    display: inline;
+    width: auto; }
 
 .input.is-rounded {
-  border-radius: var(--bulma-radius-rounded);
-  padding-left: calc(calc(0.75em - 1px) + 0.375em);
-  padding-right: calc(calc(0.75em - 1px) + 0.375em);
-}
+  border-radius: 290486px;
+  padding-left: 1em;
+  padding-right: 1em; }
+
 .input.is-static {
   background-color: transparent;
   border-color: transparent;
+  -webkit-box-shadow: none;
   box-shadow: none;
   padding-left: 0;
-  padding-right: 0;
-}
+  padding-right: 0; }
 
 .textarea {
-  --bulma-textarea-padding: var(--bulma-control-padding-horizontal);
-  --bulma-textarea-max-height: 40em;
-  --bulma-textarea-min-height: 8em;
   display: block;
   max-width: 100%;
   min-width: 100%;
-  padding: var(--bulma-textarea-padding);
-  resize: vertical;
-}
-.textarea:not([rows]) {
-  max-height: var(--bulma-textarea-max-height);
-  min-height: var(--bulma-textarea-min-height);
-}
-.textarea[rows] {
-  height: initial;
-}
-.textarea.has-fixed-size {
-  resize: none;
-}
+  padding: 0.625em;
+  resize: vertical; }
+  .textarea:not([rows]) {
+    max-height: 600px;
+    min-height: 120px; }
+  .textarea[rows] {
+    height: initial; }
+  .textarea.has-fixed-size {
+    resize: none; }
 
-/* Bulma Form */
-.radio, .checkbox {
+.checkbox, .radio {
   cursor: pointer;
   display: inline-block;
   line-height: 1.25;
-  position: relative;
-}
-.radio input, .checkbox input {
-  cursor: pointer;
-}
-[disabled].radio, [disabled].checkbox, fieldset[disabled] .radio, fieldset[disabled] .checkbox,
-.radio input[disabled],
-.checkbox input[disabled] {
-  color: var(--bulma-text-weak);
-  cursor: not-allowed;
-}
+  position: relative; }
+  .checkbox input, .radio input {
+    cursor: pointer; }
+  .checkbox:hover, .radio:hover {
+    color: #363636; }
+  .checkbox[disabled], .radio[disabled],
+  fieldset[disabled] .checkbox,
+  fieldset[disabled] .radio {
+    color: #7a7a7a;
+    cursor: not-allowed; }
 
-.checkboxes,
-.radios {
-  display: flex;
-  flex-wrap: wrap;
-  column-gap: 1em;
-  row-gap: 0.5em;
-}
+.radio + .radio {
+  margin-left: 0.5em; }
 
-/* Bulma Form */
 .select {
-  --bulma-input-h: var(--bulma-scheme-h);
-  --bulma-input-s: var(--bulma-scheme-s);
-  --bulma-input-border-style: solid;
-  --bulma-input-border-width: 1px;
-  --bulma-input-border-l: var(--bulma-border-l);
   display: inline-block;
   max-width: 100%;
   position: relative;
-  vertical-align: top;
-}
-.select:not(.is-multiple) {
-  height: var(--bulma-control-height);
-}
-.select:not(.is-multiple):not(.is-loading)::after {
-  inset-inline-end: 1.125em;
-  z-index: 4;
-}
-.select.is-rounded select {
-  border-radius: var(--bulma-radius-rounded);
-  padding-inline-start: 1em;
-}
-.select select {
-  cursor: pointer;
-  display: block;
-  font-size: 1em;
-  max-width: 100%;
-  outline: none;
-}
-.select select::-ms-expand {
-  display: none;
-}
-.select select[disabled]:hover, fieldset[disabled] .select select:hover {
-  border-color: var(--bulma-background);
-}
-.select select:not([multiple]) {
-  padding-inline-end: 2.5em;
-}
-.select select[multiple] {
-  height: auto;
-  padding: 0;
-}
-.select select[multiple] option {
-  padding: 0.5em 1em;
-}
-.select.is-white {
-  --bulma-input-h: var(--bulma-white-h);
-  --bulma-input-s: var(--bulma-white-s);
-  --bulma-input-l: var(--bulma-white-l);
-  --bulma-input-focus-h: var(--bulma-white-h);
-  --bulma-input-focus-s: var(--bulma-white-s);
-  --bulma-input-focus-l: var(--bulma-white-l);
-  --bulma-input-border-l: var(--bulma-white-l);
-  --bulma-arrow-color: var(--bulma-white);
-}
-.select.is-black {
-  --bulma-input-h: var(--bulma-black-h);
-  --bulma-input-s: var(--bulma-black-s);
-  --bulma-input-l: var(--bulma-black-l);
-  --bulma-input-focus-h: var(--bulma-black-h);
-  --bulma-input-focus-s: var(--bulma-black-s);
-  --bulma-input-focus-l: var(--bulma-black-l);
-  --bulma-input-border-l: var(--bulma-black-l);
-  --bulma-arrow-color: var(--bulma-black);
-}
-.select.is-light {
-  --bulma-input-h: var(--bulma-light-h);
-  --bulma-input-s: var(--bulma-light-s);
-  --bulma-input-l: var(--bulma-light-l);
-  --bulma-input-focus-h: var(--bulma-light-h);
-  --bulma-input-focus-s: var(--bulma-light-s);
-  --bulma-input-focus-l: var(--bulma-light-l);
-  --bulma-input-border-l: var(--bulma-light-l);
-  --bulma-arrow-color: var(--bulma-light);
-}
-.select.is-dark {
-  --bulma-input-h: var(--bulma-dark-h);
-  --bulma-input-s: var(--bulma-dark-s);
-  --bulma-input-l: var(--bulma-dark-l);
-  --bulma-input-focus-h: var(--bulma-dark-h);
-  --bulma-input-focus-s: var(--bulma-dark-s);
-  --bulma-input-focus-l: var(--bulma-dark-l);
-  --bulma-input-border-l: var(--bulma-dark-l);
-  --bulma-arrow-color: var(--bulma-dark);
-}
-.select.is-text {
-  --bulma-input-h: var(--bulma-text-h);
-  --bulma-input-s: var(--bulma-text-s);
-  --bulma-input-l: var(--bulma-text-l);
-  --bulma-input-focus-h: var(--bulma-text-h);
-  --bulma-input-focus-s: var(--bulma-text-s);
-  --bulma-input-focus-l: var(--bulma-text-l);
-  --bulma-input-border-l: var(--bulma-text-l);
-  --bulma-arrow-color: var(--bulma-text);
-}
-.select.is-primary {
-  --bulma-input-h: var(--bulma-primary-h);
-  --bulma-input-s: var(--bulma-primary-s);
-  --bulma-input-l: var(--bulma-primary-l);
-  --bulma-input-focus-h: var(--bulma-primary-h);
-  --bulma-input-focus-s: var(--bulma-primary-s);
-  --bulma-input-focus-l: var(--bulma-primary-l);
-  --bulma-input-border-l: var(--bulma-primary-l);
-  --bulma-arrow-color: var(--bulma-primary);
-}
-.select.is-link {
-  --bulma-input-h: var(--bulma-link-h);
-  --bulma-input-s: var(--bulma-link-s);
-  --bulma-input-l: var(--bulma-link-l);
-  --bulma-input-focus-h: var(--bulma-link-h);
-  --bulma-input-focus-s: var(--bulma-link-s);
-  --bulma-input-focus-l: var(--bulma-link-l);
-  --bulma-input-border-l: var(--bulma-link-l);
-  --bulma-arrow-color: var(--bulma-link);
-}
-.select.is-info {
-  --bulma-input-h: var(--bulma-info-h);
-  --bulma-input-s: var(--bulma-info-s);
-  --bulma-input-l: var(--bulma-info-l);
-  --bulma-input-focus-h: var(--bulma-info-h);
-  --bulma-input-focus-s: var(--bulma-info-s);
-  --bulma-input-focus-l: var(--bulma-info-l);
-  --bulma-input-border-l: var(--bulma-info-l);
-  --bulma-arrow-color: var(--bulma-info);
-}
-.select.is-success {
-  --bulma-input-h: var(--bulma-success-h);
-  --bulma-input-s: var(--bulma-success-s);
-  --bulma-input-l: var(--bulma-success-l);
-  --bulma-input-focus-h: var(--bulma-success-h);
-  --bulma-input-focus-s: var(--bulma-success-s);
-  --bulma-input-focus-l: var(--bulma-success-l);
-  --bulma-input-border-l: var(--bulma-success-l);
-  --bulma-arrow-color: var(--bulma-success);
-}
-.select.is-warning {
-  --bulma-input-h: var(--bulma-warning-h);
-  --bulma-input-s: var(--bulma-warning-s);
-  --bulma-input-l: var(--bulma-warning-l);
-  --bulma-input-focus-h: var(--bulma-warning-h);
-  --bulma-input-focus-s: var(--bulma-warning-s);
-  --bulma-input-focus-l: var(--bulma-warning-l);
-  --bulma-input-border-l: var(--bulma-warning-l);
-  --bulma-arrow-color: var(--bulma-warning);
-}
-.select.is-danger {
-  --bulma-input-h: var(--bulma-danger-h);
-  --bulma-input-s: var(--bulma-danger-s);
-  --bulma-input-l: var(--bulma-danger-l);
-  --bulma-input-focus-h: var(--bulma-danger-h);
-  --bulma-input-focus-s: var(--bulma-danger-s);
-  --bulma-input-focus-l: var(--bulma-danger-l);
-  --bulma-input-border-l: var(--bulma-danger-l);
-  --bulma-arrow-color: var(--bulma-danger);
-}
-.select.is-small {
-  border-radius: var(--bulma-radius-small);
-  font-size: var(--bulma-size-small);
-}
-.select.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.select.is-large {
-  font-size: var(--bulma-size-large);
-}
-.select.is-disabled::after {
-  border-color: var(--bulma-text-weak) !important;
-  opacity: 0.5;
-}
-.select.is-fullwidth {
-  width: 100%;
-}
-.select.is-fullwidth select {
-  width: 100%;
-}
-.select.is-loading::after {
-  inset-inline-end: 0.625em;
-  margin-top: 0;
-  position: absolute;
-  top: 0.625em;
-  transform: none;
-}
-.select.is-loading.is-small:after {
-  font-size: var(--bulma-size-small);
-}
-.select.is-loading.is-medium:after {
-  font-size: var(--bulma-size-medium);
-}
-.select.is-loading.is-large:after {
-  font-size: var(--bulma-size-large);
-}
+  vertical-align: top; }
+  .select:not(.is-multiple) {
+    height: 2.25em; }
+  .select:not(.is-multiple):not(.is-loading)::after {
+    border-color: #4391E0;
+    right: 1.125em;
+    z-index: 4; }
+  .select.is-rounded select {
+    border-radius: 290486px;
+    padding-left: 1em; }
+  .select select {
+    cursor: pointer;
+    display: block;
+    font-size: 1em;
+    max-width: 100%;
+    outline: none; }
+    .select select::-ms-expand {
+      display: none; }
+    .select select[disabled]:hover,
+    fieldset[disabled] .select select:hover {
+      border-color: whitesmoke; }
+    .select select:not([multiple]) {
+      padding-right: 2.5em; }
+    .select select[multiple] {
+      height: auto;
+      padding: 0; }
+      .select select[multiple] option {
+        padding: 0.5em 1em; }
+  .select:not(.is-multiple):not(.is-loading):hover::after {
+    border-color: #363636; }
+  .select.is-white:not(:hover)::after {
+    border-color: white; }
+  .select.is-white select {
+    border-color: white; }
+    .select.is-white select:hover, .select.is-white select.is-hovered {
+      border-color: #f2f2f2; }
+    .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); }
+  .select.is-black:not(:hover)::after {
+    border-color: #0a0a0a; }
+  .select.is-black select {
+    border-color: #0a0a0a; }
+    .select.is-black select:hover, .select.is-black select.is-hovered {
+      border-color: black; }
+    .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); }
+  .select.is-light:not(:hover)::after {
+    border-color: whitesmoke; }
+  .select.is-light select {
+    border-color: whitesmoke; }
+    .select.is-light select:hover, .select.is-light select.is-hovered {
+      border-color: #e8e8e8; }
+    .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); }
+  .select.is-dark:not(:hover)::after {
+    border-color: #363636; }
+  .select.is-dark select {
+    border-color: #363636; }
+    .select.is-dark select:hover, .select.is-dark select.is-hovered {
+      border-color: #292929; }
+    .select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); }
+  .select.is-primary:not(:hover)::after {
+    border-color: #478D00; }
+  .select.is-primary select {
+    border-color: #478D00; }
+    .select.is-primary select:hover, .select.is-primary select.is-hovered {
+      border-color: #3a7400; }
+    .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); }
+  .select.is-link:not(:hover)::after {
+    border-color: #4391E0; }
+  .select.is-link select {
+    border-color: #4391E0; }
+    .select.is-link select:hover, .select.is-link select.is-hovered {
+      border-color: #2d84dc; }
+    .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(67, 145, 224, 0.25); }
+  .select.is-info:not(:hover)::after {
+    border-color: #209cee; }
+  .select.is-info select {
+    border-color: #209cee; }
+    .select.is-info select:hover, .select.is-info select.is-hovered {
+      border-color: #118fe4; }
+    .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); }
+  .select.is-success:not(:hover)::after {
+    border-color: #478D00; }
+  .select.is-success select {
+    border-color: #478D00; }
+    .select.is-success select:hover, .select.is-success select.is-hovered {
+      border-color: #3a7400; }
+    .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(71, 141, 0, 0.25); }
+  .select.is-warning:not(:hover)::after {
+    border-color: #ffdd57; }
+  .select.is-warning select {
+    border-color: #ffdd57; }
+    .select.is-warning select:hover, .select.is-warning select.is-hovered {
+      border-color: #ffd83d; }
+    .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); }
+  .select.is-danger:not(:hover)::after {
+    border-color: #a70c20; }
+  .select.is-danger select {
+    border-color: #a70c20; }
+    .select.is-danger select:hover, .select.is-danger select.is-hovered {
+      border-color: #8f0a1b; }
+    .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
+      -webkit-box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25);
+      box-shadow: 0 0 0 0.125em rgba(167, 12, 32, 0.25); }
+  .select.is-small {
+    border-radius: 2px;
+    font-size: 0.75rem; }
+  .select.is-medium {
+    font-size: 1.25rem; }
+  .select.is-large {
+    font-size: 1.5rem; }
+  .select.is-disabled::after {
+    border-color: #7a7a7a; }
+  .select.is-fullwidth {
+    width: 100%; }
+    .select.is-fullwidth select {
+      width: 100%; }
+  .select.is-loading::after {
+    margin-top: 0;
+    position: absolute;
+    right: 0.625em;
+    top: 0.625em;
+    -webkit-transform: none;
+    -ms-transform: none;
+    transform: none; }
+  .select.is-loading.is-small:after {
+    font-size: 0.75rem; }
+  .select.is-loading.is-medium:after {
+    font-size: 1.25rem; }
+  .select.is-loading.is-large:after {
+    font-size: 1.5rem; }
 
-/* Bulma Form */
 .file {
-  --bulma-file-radius: var(--bulma-radius);
-  --bulma-file-name-border-color: var(--bulma-border);
-  --bulma-file-name-border-style: solid;
-  --bulma-file-name-border-width: 1px 1px 1px 0;
-  --bulma-file-name-max-width: 16em;
-  --bulma-file-h: var(--bulma-scheme-h);
-  --bulma-file-s: var(--bulma-scheme-s);
-  --bulma-file-background-l: var(--bulma-scheme-main-ter-l);
-  --bulma-file-background-l-delta: 0%;
-  --bulma-file-hover-background-l-delta: -5%;
-  --bulma-file-active-background-l-delta: -10%;
-  --bulma-file-border-l: var(--bulma-border-l);
-  --bulma-file-border-l-delta: 0%;
-  --bulma-file-hover-border-l-delta: -10%;
-  --bulma-file-active-border-l-delta: -20%;
-  --bulma-file-cta-color-l: var(--bulma-text-strong-l);
-  --bulma-file-name-color-l: var(--bulma-text-strong-l);
-  --bulma-file-color-l-delta: 0%;
-  --bulma-file-hover-color-l-delta: -5%;
-  --bulma-file-active-color-l-delta: -10%;
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
   justify-content: flex-start;
-  position: relative;
-}
-.file.is-white {
-  --bulma-file-h: var(--bulma-white-h);
-  --bulma-file-s: var(--bulma-white-s);
-  --bulma-file-background-l: var(--bulma-white-l);
-  --bulma-file-border-l: var(--bulma-white-l);
-  --bulma-file-cta-color-l: var(--bulma-white-invert-l);
-  --bulma-file-name-color-l: var(--bulma-white-on-scheme-l);
-}
-.file.is-black {
-  --bulma-file-h: var(--bulma-black-h);
-  --bulma-file-s: var(--bulma-black-s);
-  --bulma-file-background-l: var(--bulma-black-l);
-  --bulma-file-border-l: var(--bulma-black-l);
-  --bulma-file-cta-color-l: var(--bulma-black-invert-l);
-  --bulma-file-name-color-l: var(--bulma-black-on-scheme-l);
-}
-.file.is-light {
-  --bulma-file-h: var(--bulma-light-h);
-  --bulma-file-s: var(--bulma-light-s);
-  --bulma-file-background-l: var(--bulma-light-l);
-  --bulma-file-border-l: var(--bulma-light-l);
-  --bulma-file-cta-color-l: var(--bulma-light-invert-l);
-  --bulma-file-name-color-l: var(--bulma-light-on-scheme-l);
-}
-.file.is-dark {
-  --bulma-file-h: var(--bulma-dark-h);
-  --bulma-file-s: var(--bulma-dark-s);
-  --bulma-file-background-l: var(--bulma-dark-l);
-  --bulma-file-border-l: var(--bulma-dark-l);
-  --bulma-file-cta-color-l: var(--bulma-dark-invert-l);
-  --bulma-file-name-color-l: var(--bulma-dark-on-scheme-l);
-}
-.file.is-text {
-  --bulma-file-h: var(--bulma-text-h);
-  --bulma-file-s: var(--bulma-text-s);
-  --bulma-file-background-l: var(--bulma-text-l);
-  --bulma-file-border-l: var(--bulma-text-l);
-  --bulma-file-cta-color-l: var(--bulma-text-invert-l);
-  --bulma-file-name-color-l: var(--bulma-text-on-scheme-l);
-}
-.file.is-primary {
-  --bulma-file-h: var(--bulma-primary-h);
-  --bulma-file-s: var(--bulma-primary-s);
-  --bulma-file-background-l: var(--bulma-primary-l);
-  --bulma-file-border-l: var(--bulma-primary-l);
-  --bulma-file-cta-color-l: var(--bulma-primary-invert-l);
-  --bulma-file-name-color-l: var(--bulma-primary-on-scheme-l);
-}
-.file.is-link {
-  --bulma-file-h: var(--bulma-link-h);
-  --bulma-file-s: var(--bulma-link-s);
-  --bulma-file-background-l: var(--bulma-link-l);
-  --bulma-file-border-l: var(--bulma-link-l);
-  --bulma-file-cta-color-l: var(--bulma-link-invert-l);
-  --bulma-file-name-color-l: var(--bulma-link-on-scheme-l);
-}
-.file.is-info {
-  --bulma-file-h: var(--bulma-info-h);
-  --bulma-file-s: var(--bulma-info-s);
-  --bulma-file-background-l: var(--bulma-info-l);
-  --bulma-file-border-l: var(--bulma-info-l);
-  --bulma-file-cta-color-l: var(--bulma-info-invert-l);
-  --bulma-file-name-color-l: var(--bulma-info-on-scheme-l);
-}
-.file.is-success {
-  --bulma-file-h: var(--bulma-success-h);
-  --bulma-file-s: var(--bulma-success-s);
-  --bulma-file-background-l: var(--bulma-success-l);
-  --bulma-file-border-l: var(--bulma-success-l);
-  --bulma-file-cta-color-l: var(--bulma-success-invert-l);
-  --bulma-file-name-color-l: var(--bulma-success-on-scheme-l);
-}
-.file.is-warning {
-  --bulma-file-h: var(--bulma-warning-h);
-  --bulma-file-s: var(--bulma-warning-s);
-  --bulma-file-background-l: var(--bulma-warning-l);
-  --bulma-file-border-l: var(--bulma-warning-l);
-  --bulma-file-cta-color-l: var(--bulma-warning-invert-l);
-  --bulma-file-name-color-l: var(--bulma-warning-on-scheme-l);
-}
-.file.is-danger {
-  --bulma-file-h: var(--bulma-danger-h);
-  --bulma-file-s: var(--bulma-danger-s);
-  --bulma-file-background-l: var(--bulma-danger-l);
-  --bulma-file-border-l: var(--bulma-danger-l);
-  --bulma-file-cta-color-l: var(--bulma-danger-invert-l);
-  --bulma-file-name-color-l: var(--bulma-danger-on-scheme-l);
-}
-.file.is-small {
-  font-size: var(--bulma-size-small);
-}
-.file.is-normal {
-  font-size: var(--bulma-size-normal);
-}
-.file.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.file.is-medium .file-icon .fa {
-  font-size: 1.5rem;
-}
-.file.is-large {
-  font-size: var(--bulma-size-large);
-}
-.file.is-large .file-icon .fa {
-  font-size: 2rem;
-}
-.file.has-name .file-cta {
-  border-end-end-radius: 0;
-  border-start-end-radius: 0;
-}
-.file.has-name .file-name {
-  border-end-start-radius: 0;
-  border-start-start-radius: 0;
-}
-.file.has-name.is-empty .file-cta {
-  border-radius: var(--bulma-file-radius);
-}
-.file.has-name.is-empty .file-name {
-  display: none;
-}
-.file.is-boxed .file-label {
-  flex-direction: column;
-}
-.file.is-boxed .file-cta {
-  flex-direction: column;
-  height: auto;
-  padding: 1em 3em;
-}
-.file.is-boxed .file-name {
-  border-width: 0 1px 1px;
-}
-.file.is-boxed .file-icon {
-  height: 1.5em;
-  width: 1.5em;
-}
-.file.is-boxed .file-icon .fa {
-  font-size: 1.5rem;
-}
-.file.is-boxed.is-small .file-icon .fa {
-  font-size: 1rem;
-}
-.file.is-boxed.is-medium .file-icon .fa {
-  font-size: 2rem;
-}
-.file.is-boxed.is-large .file-icon .fa {
-  font-size: 2.5rem;
-}
-.file.is-boxed.has-name .file-cta {
-  border-end-end-radius: 0;
-  border-end-start-radius: 0;
-  border-start-end-radius: var(--bulma-file-radius);
-  border-start-start-radius: var(--bulma-file-radius);
-}
-.file.is-boxed.has-name .file-name {
-  border-end-end-radius: var(--bulma-file-radius);
-  border-end-start-radius: var(--bulma-file-radius);
-  border-start-end-radius: 0;
-  border-start-start-radius: 0;
-  border-width: 0 1px 1px;
-}
-.file.is-centered {
-  justify-content: center;
-}
-.file.is-fullwidth .file-label {
-  width: 100%;
-}
-.file.is-fullwidth .file-name {
-  flex-grow: 1;
-  max-width: none;
-}
-.file.is-right {
-  justify-content: flex-end;
-}
-.file.is-right .file-cta {
-  border-radius: 0 var(--bulma-file-radius) var(--bulma-file-radius) 0;
-}
-.file.is-right .file-name {
-  border-radius: var(--bulma-file-radius) 0 0 var(--bulma-file-radius);
-  border-width: 1px 0 1px 1px;
-  order: -1;
-}
+  position: relative; }
+  .file.is-white .file-cta {
+    background-color: white;
+    border-color: transparent;
+    color: #0a0a0a; }
+  .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta {
+    background-color: #f9f9f9;
+    border-color: transparent;
+    color: #0a0a0a; }
+  .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
+    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
+    color: #0a0a0a; }
+  .file.is-white:active .file-cta, .file.is-white.is-active .file-cta {
+    background-color: #f2f2f2;
+    border-color: transparent;
+    color: #0a0a0a; }
+  .file.is-black .file-cta {
+    background-color: #0a0a0a;
+    border-color: transparent;
+    color: white; }
+  .file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta {
+    background-color: #040404;
+    border-color: transparent;
+    color: white; }
+  .file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
+    box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
+    color: white; }
+  .file.is-black:active .file-cta, .file.is-black.is-active .file-cta {
+    background-color: black;
+    border-color: transparent;
+    color: white; }
+  .file.is-light .file-cta {
+    background-color: whitesmoke;
+    border-color: transparent;
+    color: #363636; }
+  .file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta {
+    background-color: #eeeeee;
+    border-color: transparent;
+    color: #363636; }
+  .file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
+    box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
+    color: #363636; }
+  .file.is-light:active .file-cta, .file.is-light.is-active .file-cta {
+    background-color: #e8e8e8;
+    border-color: transparent;
+    color: #363636; }
+  .file.is-dark .file-cta {
+    background-color: #363636;
+    border-color: transparent;
+    color: whitesmoke; }
+  .file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta {
+    background-color: #2f2f2f;
+    border-color: transparent;
+    color: whitesmoke; }
+  .file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
+    box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
+    color: whitesmoke; }
+  .file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta {
+    background-color: #292929;
+    border-color: transparent;
+    color: whitesmoke; }
+  .file.is-primary .file-cta {
+    background-color: #478D00;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
+    background-color: #418000;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(71, 141, 0, 0.25);
+    box-shadow: 0 0 0.5em rgba(71, 141, 0, 0.25);
+    color: #fff; }
+  .file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
+    background-color: #3a7400;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-link .file-cta {
+    background-color: #4391E0;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta {
+    background-color: #388bde;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(67, 145, 224, 0.25);
+    box-shadow: 0 0 0.5em rgba(67, 145, 224, 0.25);
+    color: #fff; }
+  .file.is-link:active .file-cta, .file.is-link.is-active .file-cta {
+    background-color: #2d84dc;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-info .file-cta {
+    background-color: #209cee;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta {
+    background-color: #1496ed;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
+    box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
+    color: #fff; }
+  .file.is-info:active .file-cta, .file.is-info.is-active .file-cta {
+    background-color: #118fe4;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-success .file-cta {
+    background-color: #478D00;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
+    background-color: #418000;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(71, 141, 0, 0.25);
+    box-shadow: 0 0 0.5em rgba(71, 141, 0, 0.25);
+    color: #fff; }
+  .file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
+    background-color: #3a7400;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-warning .file-cta {
+    background-color: #ffdd57;
+    border-color: transparent;
+    color: rgba(0, 0, 0, 0.7); }
+  .file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta {
+    background-color: #ffdb4a;
+    border-color: transparent;
+    color: rgba(0, 0, 0, 0.7); }
+  .file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
+    box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
+    color: rgba(0, 0, 0, 0.7); }
+  .file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta {
+    background-color: #ffd83d;
+    border-color: transparent;
+    color: rgba(0, 0, 0, 0.7); }
+  .file.is-danger .file-cta {
+    background-color: #a70c20;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta {
+    background-color: #9b0b1e;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
+    border-color: transparent;
+    -webkit-box-shadow: 0 0 0.5em rgba(167, 12, 32, 0.25);
+    box-shadow: 0 0 0.5em rgba(167, 12, 32, 0.25);
+    color: #fff; }
+  .file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta {
+    background-color: #8f0a1b;
+    border-color: transparent;
+    color: #fff; }
+  .file.is-small {
+    font-size: 0.75rem; }
+  .file.is-medium {
+    font-size: 1.25rem; }
+    .file.is-medium .file-icon .fa {
+      font-size: 21px; }
+  .file.is-large {
+    font-size: 1.5rem; }
+    .file.is-large .file-icon .fa {
+      font-size: 28px; }
+  .file.has-name .file-cta {
+    border-bottom-right-radius: 0;
+    border-top-right-radius: 0; }
+  .file.has-name .file-name {
+    border-bottom-left-radius: 0;
+    border-top-left-radius: 0; }
+  .file.has-name.is-empty .file-cta {
+    border-radius: 4px; }
+  .file.has-name.is-empty .file-name {
+    display: none; }
+  .file.is-boxed .file-label {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: normal;
+    -ms-flex-direction: column;
+    flex-direction: column; }
+  .file.is-boxed .file-cta {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: normal;
+    -ms-flex-direction: column;
+    flex-direction: column;
+    height: auto;
+    padding: 1em 3em; }
+  .file.is-boxed .file-name {
+    border-width: 0 1px 1px; }
+  .file.is-boxed .file-icon {
+    height: 1.5em;
+    width: 1.5em; }
+    .file.is-boxed .file-icon .fa {
+      font-size: 21px; }
+  .file.is-boxed.is-small .file-icon .fa {
+    font-size: 14px; }
+  .file.is-boxed.is-medium .file-icon .fa {
+    font-size: 28px; }
+  .file.is-boxed.is-large .file-icon .fa {
+    font-size: 35px; }
+  .file.is-boxed.has-name .file-cta {
+    border-radius: 4px 4px 0 0; }
+  .file.is-boxed.has-name .file-name {
+    border-radius: 0 0 4px 4px;
+    border-width: 0 1px 1px; }
+  .file.is-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+  .file.is-fullwidth .file-label {
+    width: 100%; }
+  .file.is-fullwidth .file-name {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    max-width: none; }
+  .file.is-right {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+    .file.is-right .file-cta {
+      border-radius: 0 4px 4px 0; }
+    .file.is-right .file-name {
+      border-radius: 4px 0 0 4px;
+      border-width: 1px 0 1px 1px;
+      -webkit-box-ordinal-group: 0;
+      -ms-flex-order: -1;
+      order: -1; }
 
 .file-label {
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
   cursor: pointer;
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
   justify-content: flex-start;
   overflow: hidden;
-  position: relative;
-}
-.file-label:hover {
-  --bulma-file-background-l-delta: var(--bulma-file-hover-background-l-delta);
-  --bulma-file-border-l-delta: var(--bulma-file-hover-border-l-delta);
-  --bulma-file-color-l-delta: var(--bulma-file-hover-color-l-delta);
-}
-.file-label:active {
-  --bulma-file-background-l-delta: var(--bulma-file-active-background-l-delta);
-  --bulma-file-border-l-delta: var(--bulma-file-active-border-l-delta);
-  --bulma-file-color-l-delta: var(--bulma-file-active-color-l-delta);
-}
+  position: relative; }
+  .file-label:hover .file-cta {
+    background-color: #eeeeee;
+    color: #363636; }
+  .file-label:hover .file-name {
+    border-color: #d5d5d5; }
+  .file-label:active .file-cta {
+    background-color: #e8e8e8;
+    color: #363636; }
+  .file-label:active .file-name {
+    border-color: #cfcfcf; }
 
 .file-input {
   height: 100%;
@@ -3436,2343 +3695,2300 @@ button.tag:active,
   outline: none;
   position: absolute;
   top: 0;
-  width: 100%;
-}
+  width: 100%; }
 
 .file-cta,
 .file-name {
-  border-color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-border-l) + var(--bulma-file-border-l-delta)));
-  border-radius: var(--bulma-file-radius);
+  border-color: #dbdbdb;
+  border-radius: 4px;
   font-size: 1em;
   padding-left: 1em;
   padding-right: 1em;
-  white-space: nowrap;
-}
+  white-space: nowrap; }
 
 .file-cta {
-  background-color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-background-l) + var(--bulma-file-background-l-delta)));
-  color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-cta-color-l) + var(--bulma-file-color-l-delta)));
-}
+  background-color: whitesmoke;
+  color: #4a4a4a; }
 
 .file-name {
-  border-color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-border-l) + var(--bulma-file-color-l-delta)));
-  border-style: var(--bulma-file-name-border-style);
-  border-width: var(--bulma-file-name-border-width);
-  color: hsl(var(--bulma-file-h), var(--bulma-file-s), calc(var(--bulma-file-name-color-l) + var(--bulma-file-color-l-delta)));
+  border-color: #dbdbdb;
+  border-style: solid;
+  border-width: 1px 1px 1px 0;
   display: block;
-  max-width: var(--bulma-file-name-max-width);
+  max-width: 16em;
   overflow: hidden;
-  text-align: inherit;
-  text-overflow: ellipsis;
-}
+  text-align: left;
+  -o-text-overflow: ellipsis;
+  text-overflow: ellipsis; }
 
 .file-icon {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
   height: 1em;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  margin-inline-end: 0.5em;
-  width: 1em;
-}
-.file-icon .fa {
-  font-size: 1rem;
-}
-
-/* Bulma Form */
-:root {
-  --bulma-label-color: var(--bulma-text-strong);
-  --bulma-label-spacing: 0.5em;
-  --bulma-label-weight: var(--bulma-weight-semibold);
-  --bulma-help-size: var(--bulma-size-small);
-  --bulma-field-block-spacing: 0.75rem;
-}
+  margin-right: 0.5em;
+  width: 1em; }
+  .file-icon .fa {
+    font-size: 14px; }
 
 .label {
-  color: var(--bulma-label-color);
+  color: #363636;
   display: block;
-  font-size: var(--bulma-size-normal);
-  font-weight: var(--bulma-weight-semibold);
-}
-.label:not(:last-child) {
-  margin-bottom: var(--bulma-label-spacing);
-}
-.label.is-small {
-  font-size: var(--bulma-size-small);
-}
-.label.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.label.is-large {
-  font-size: var(--bulma-size-large);
-}
+  font-size: 1rem;
+  font-weight: 700; }
+  .label:not(:last-child) {
+    margin-bottom: 0.5em; }
+  .label.is-small {
+    font-size: 0.75rem; }
+  .label.is-medium {
+    font-size: 1.25rem; }
+  .label.is-large {
+    font-size: 1.5rem; }
 
 .help {
   display: block;
-  font-size: var(--bulma-help-size);
-  margin-top: 0.25rem;
-}
-.help.is-white {
-  color: hsl(var(--bulma-white-h), var(--bulma-white-s), var(--bulma-white-on-scheme-l));
-}
-.help.is-black {
-  color: hsl(var(--bulma-black-h), var(--bulma-black-s), var(--bulma-black-on-scheme-l));
-}
-.help.is-light {
-  color: hsl(var(--bulma-light-h), var(--bulma-light-s), var(--bulma-light-on-scheme-l));
-}
-.help.is-dark {
-  color: hsl(var(--bulma-dark-h), var(--bulma-dark-s), var(--bulma-dark-on-scheme-l));
-}
-.help.is-text {
-  color: hsl(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-text-on-scheme-l));
-}
-.help.is-primary {
-  color: hsl(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-primary-on-scheme-l));
-}
-.help.is-link {
-  color: hsl(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-link-on-scheme-l));
-}
-.help.is-info {
-  color: hsl(var(--bulma-info-h), var(--bulma-info-s), var(--bulma-info-on-scheme-l));
-}
-.help.is-success {
-  color: hsl(var(--bulma-success-h), var(--bulma-success-s), var(--bulma-success-on-scheme-l));
-}
-.help.is-warning {
-  color: hsl(var(--bulma-warning-h), var(--bulma-warning-s), var(--bulma-warning-on-scheme-l));
-}
-.help.is-danger {
-  color: hsl(var(--bulma-danger-h), var(--bulma-danger-s), var(--bulma-danger-on-scheme-l));
-}
+  font-size: 0.75rem;
+  margin-top: 0.25rem; }
+  .help.is-white {
+    color: white; }
+  .help.is-black {
+    color: #0a0a0a; }
+  .help.is-light {
+    color: whitesmoke; }
+  .help.is-dark {
+    color: #363636; }
+  .help.is-primary {
+    color: #478D00; }
+  .help.is-link {
+    color: #4391E0; }
+  .help.is-info {
+    color: #209cee; }
+  .help.is-success {
+    color: #478D00; }
+  .help.is-warning {
+    color: #ffdd57; }
+  .help.is-danger {
+    color: #a70c20; }
+
+.field:not(:last-child) {
+  margin-bottom: 0.75rem; }
 
-.field {
-  --bulma-block-spacing: var(--bulma-field-block-spacing);
-}
 .field.has-addons {
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
-  justify-content: flex-start;
-}
-.field.has-addons .control:not(:last-child) {
-  margin-inline-end: -1px;
-}
-.field.has-addons .control:not(:first-child):not(:last-child) .button,
-.field.has-addons .control:not(:first-child):not(:last-child) .input,
-.field.has-addons .control:not(:first-child):not(:last-child) .select select {
-  border-radius: 0;
-}
-.field.has-addons .control:first-child:not(:only-child) .button,
-.field.has-addons .control:first-child:not(:only-child) .input,
-.field.has-addons .control:first-child:not(:only-child) .select select {
-  border-start-end-radius: 0;
-  border-end-end-radius: 0;
-}
-.field.has-addons .control:last-child:not(:only-child) .button,
-.field.has-addons .control:last-child:not(:only-child) .input,
-.field.has-addons .control:last-child:not(:only-child) .select select {
-  border-start-start-radius: 0;
-  border-end-start-radius: 0;
-}
-.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered,
-.field.has-addons .control .input:not([disabled]):hover,
-.field.has-addons .control .input:not([disabled]).is-hovered,
-.field.has-addons .control .select select:not([disabled]):hover,
-.field.has-addons .control .select select:not([disabled]).is-hovered {
-  z-index: 2;
-}
-.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active,
-.field.has-addons .control .input:not([disabled]):focus,
-.field.has-addons .control .input:not([disabled]).is-focused,
-.field.has-addons .control .input:not([disabled]):active,
-.field.has-addons .control .input:not([disabled]).is-active,
-.field.has-addons .control .select select:not([disabled]):focus,
-.field.has-addons .control .select select:not([disabled]).is-focused,
-.field.has-addons .control .select select:not([disabled]):active,
-.field.has-addons .control .select select:not([disabled]).is-active {
-  z-index: 3;
-}
-.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover,
-.field.has-addons .control .input:not([disabled]):focus:hover,
-.field.has-addons .control .input:not([disabled]).is-focused:hover,
-.field.has-addons .control .input:not([disabled]):active:hover,
-.field.has-addons .control .input:not([disabled]).is-active:hover,
-.field.has-addons .control .select select:not([disabled]):focus:hover,
-.field.has-addons .control .select select:not([disabled]).is-focused:hover,
-.field.has-addons .control .select select:not([disabled]):active:hover,
-.field.has-addons .control .select select:not([disabled]).is-active:hover {
-  z-index: 4;
-}
-.field.has-addons .control.is-expanded {
-  flex-grow: 1;
-  flex-shrink: 1;
-}
-.field.has-addons.has-addons-centered {
-  justify-content: center;
-}
-.field.has-addons.has-addons-right {
-  justify-content: flex-end;
-}
-.field.has-addons.has-addons-fullwidth .control {
-  flex-grow: 1;
-  flex-shrink: 0;
-}
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
+  justify-content: flex-start; }
+  .field.has-addons .control:not(:last-child) {
+    margin-right: -1px; }
+  .field.has-addons .control:not(:first-child):not(:last-child) .button,
+  .field.has-addons .control:not(:first-child):not(:last-child) .input,
+  .field.has-addons .control:not(:first-child):not(:last-child) .select select {
+    border-radius: 0; }
+  .field.has-addons .control:first-child:not(:only-child) .button,
+  .field.has-addons .control:first-child:not(:only-child) .input,
+  .field.has-addons .control:first-child:not(:only-child) .select select {
+    border-bottom-right-radius: 0;
+    border-top-right-radius: 0; }
+  .field.has-addons .control:last-child:not(:only-child) .button,
+  .field.has-addons .control:last-child:not(:only-child) .input,
+  .field.has-addons .control:last-child:not(:only-child) .select select {
+    border-bottom-left-radius: 0;
+    border-top-left-radius: 0; }
+  .field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered,
+  .field.has-addons .control .input:not([disabled]):hover,
+  .field.has-addons .control .input:not([disabled]).is-hovered,
+  .field.has-addons .control .select select:not([disabled]):hover,
+  .field.has-addons .control .select select:not([disabled]).is-hovered {
+    z-index: 2; }
+  .field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active,
+  .field.has-addons .control .input:not([disabled]):focus,
+  .field.has-addons .control .input:not([disabled]).is-focused,
+  .field.has-addons .control .input:not([disabled]):active,
+  .field.has-addons .control .input:not([disabled]).is-active,
+  .field.has-addons .control .select select:not([disabled]):focus,
+  .field.has-addons .control .select select:not([disabled]).is-focused,
+  .field.has-addons .control .select select:not([disabled]):active,
+  .field.has-addons .control .select select:not([disabled]).is-active {
+    z-index: 3; }
+    .field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover,
+    .field.has-addons .control .input:not([disabled]):focus:hover,
+    .field.has-addons .control .input:not([disabled]).is-focused:hover,
+    .field.has-addons .control .input:not([disabled]):active:hover,
+    .field.has-addons .control .input:not([disabled]).is-active:hover,
+    .field.has-addons .control .select select:not([disabled]):focus:hover,
+    .field.has-addons .control .select select:not([disabled]).is-focused:hover,
+    .field.has-addons .control .select select:not([disabled]):active:hover,
+    .field.has-addons .control .select select:not([disabled]).is-active:hover {
+      z-index: 4; }
+  .field.has-addons .control.is-expanded {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 1;
+    flex-shrink: 1; }
+  .field.has-addons.has-addons-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+  .field.has-addons.has-addons-right {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+  .field.has-addons.has-addons-fullwidth .control {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 0;
+    flex-shrink: 0; }
+
 .field.is-grouped {
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
-  gap: 0.75rem;
-  justify-content: flex-start;
-}
-.field.is-grouped > .control {
-  flex-shrink: 0;
-}
-.field.is-grouped > .control.is-expanded {
-  flex-grow: 1;
-  flex-shrink: 1;
-}
-.field.is-grouped.is-grouped-centered {
-  justify-content: center;
-}
-.field.is-grouped.is-grouped-right {
-  justify-content: flex-end;
-}
-.field.is-grouped.is-grouped-multiline {
-  flex-wrap: wrap;
-}
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
+  justify-content: flex-start; }
+  .field.is-grouped > .control {
+    -ms-flex-negative: 0;
+    flex-shrink: 0; }
+    .field.is-grouped > .control:not(:last-child) {
+      margin-bottom: 0;
+      margin-right: 0.75rem; }
+    .field.is-grouped > .control.is-expanded {
+      -webkit-box-flex: 1;
+      -ms-flex-positive: 1;
+      flex-grow: 1;
+      -ms-flex-negative: 1;
+      flex-shrink: 1; }
+  .field.is-grouped.is-grouped-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+  .field.is-grouped.is-grouped-right {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+  .field.is-grouped.is-grouped-multiline {
+    -ms-flex-wrap: wrap;
+    flex-wrap: wrap; }
+    .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
+      margin-bottom: 0.75rem; }
+    .field.is-grouped.is-grouped-multiline:last-child {
+      margin-bottom: -0.75rem; }
+    .field.is-grouped.is-grouped-multiline:not(:last-child) {
+      margin-bottom: 0; }
+
 @media screen and (min-width: 769px), print {
   .field.is-horizontal {
-    display: flex;
-  }
-}
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; } }
 
 .field-label .label {
-  font-size: inherit;
-}
+  font-size: inherit; }
+
 @media screen and (max-width: 768px) {
   .field-label {
-    margin-bottom: 0.5rem;
-  }
-}
+    margin-bottom: 0.5rem; } }
+
 @media screen and (min-width: 769px), print {
   .field-label {
+    -ms-flex-preferred-size: 0;
     flex-basis: 0;
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
     flex-grow: 1;
+    -ms-flex-negative: 0;
     flex-shrink: 0;
-    margin-inline-end: 1.5rem;
-    text-align: right;
-  }
-  .field-label.is-small {
-    font-size: var(--bulma-size-small);
-    padding-top: 0.375em;
-  }
-  .field-label.is-normal {
-    padding-top: 0.375em;
-  }
-  .field-label.is-medium {
-    font-size: var(--bulma-size-medium);
-    padding-top: 0.375em;
-  }
-  .field-label.is-large {
-    font-size: var(--bulma-size-large);
-    padding-top: 0.375em;
-  }
-}
+    margin-right: 1.5rem;
+    text-align: right; }
+    .field-label.is-small {
+      font-size: 0.75rem;
+      padding-top: 0.375em; }
+    .field-label.is-normal {
+      padding-top: 0.375em; }
+    .field-label.is-medium {
+      font-size: 1.25rem;
+      padding-top: 0.375em; }
+    .field-label.is-large {
+      font-size: 1.5rem;
+      padding-top: 0.375em; } }
 
 .field-body .field .field {
-  margin-bottom: 0;
-}
+  margin-bottom: 0; }
+
 @media screen and (min-width: 769px), print {
   .field-body {
+    display: -webkit-box;
+    display: -ms-flexbox;
     display: flex;
+    -ms-flex-preferred-size: 0;
     flex-basis: 0;
+    -webkit-box-flex: 5;
+    -ms-flex-positive: 5;
     flex-grow: 5;
-    flex-shrink: 1;
-  }
-  .field-body .field {
-    margin-bottom: 0;
-  }
-  .field-body > .field {
-    flex-shrink: 1;
-  }
-  .field-body > .field:not(.is-narrow) {
-    flex-grow: 1;
-  }
-  .field-body > .field:not(:last-child) {
-    margin-inline-end: 0.75rem;
-  }
-}
+    -ms-flex-negative: 1;
+    flex-shrink: 1; }
+    .field-body .field {
+      margin-bottom: 0; }
+    .field-body > .field {
+      -ms-flex-negative: 1;
+      flex-shrink: 1; }
+      .field-body > .field:not(.is-narrow) {
+        -webkit-box-flex: 1;
+        -ms-flex-positive: 1;
+        flex-grow: 1; }
+      .field-body > .field:not(:last-child) {
+        margin-right: 0.75rem; } }
 
 .control {
+  -webkit-box-sizing: border-box;
   box-sizing: border-box;
   clear: both;
-  font-size: var(--bulma-size-normal);
+  font-size: 1rem;
   position: relative;
-  text-align: inherit;
-}
-.control.has-icons-left .input:hover ~ .icon,
-.control.has-icons-left .select:hover ~ .icon, .control.has-icons-right .input:hover ~ .icon,
-.control.has-icons-right .select:hover ~ .icon {
-  color: var(--bulma-input-icon-hover-color);
-}
-.control.has-icons-left .input:focus ~ .icon,
-.control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon,
-.control.has-icons-right .select:focus ~ .icon {
-  color: var(--bulma-input-icon-focus-color);
-}
-.control.has-icons-left .input.is-small ~ .icon,
-.control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon,
-.control.has-icons-right .select.is-small ~ .icon {
-  font-size: var(--bulma-size-small);
-}
-.control.has-icons-left .input.is-medium ~ .icon,
-.control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon,
-.control.has-icons-right .select.is-medium ~ .icon {
-  font-size: var(--bulma-size-medium);
-}
-.control.has-icons-left .input.is-large ~ .icon,
-.control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon,
-.control.has-icons-right .select.is-large ~ .icon {
-  font-size: var(--bulma-size-large);
-}
-.control.has-icons-left .icon, .control.has-icons-right .icon {
-  color: var(--bulma-input-icon-color);
-  height: var(--bulma-input-height);
-  pointer-events: none;
-  position: absolute;
-  top: 0;
-  width: var(--bulma-input-height);
-  z-index: 4;
-}
-.control.has-icons-left .input,
-.control.has-icons-left .select select {
-  padding-left: var(--bulma-input-height);
-}
-.control.has-icons-left .icon.is-left {
-  left: 0;
-}
-.control.has-icons-right .input,
-.control.has-icons-right .select select {
-  padding-right: var(--bulma-input-height);
-}
-.control.has-icons-right .icon.is-right {
-  right: 0;
-}
-.control.is-loading::after {
-  inset-inline-end: 0.75em;
-  position: absolute !important;
-  top: 0.75em;
-  z-index: 4;
-}
-.control.is-loading.is-small:after {
-  font-size: var(--bulma-size-small);
-}
-.control.is-loading.is-medium:after {
-  font-size: var(--bulma-size-medium);
-}
-.control.is-loading.is-large:after {
-  font-size: var(--bulma-size-large);
-}
-
-/* Bulma Components */
-.breadcrumb {
-  --bulma-breadcrumb-item-color: var(--bulma-link-text);
-  --bulma-breadcrumb-item-hover-color: var(--bulma-link-text-hover);
-  --bulma-breadcrumb-item-active-color: var(--bulma-link-text-active);
-  --bulma-breadcrumb-item-padding-vertical: 0;
-  --bulma-breadcrumb-item-padding-horizontal: 0.75em;
-  --bulma-breadcrumb-item-separator-color: var(--bulma-border);
-}
+  text-align: left; }
+  .control.has-icons-left .input:focus ~ .icon,
+  .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon,
+  .control.has-icons-right .select:focus ~ .icon {
+    color: #7a7a7a; }
+  .control.has-icons-left .input.is-small ~ .icon,
+  .control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon,
+  .control.has-icons-right .select.is-small ~ .icon {
+    font-size: 0.75rem; }
+  .control.has-icons-left .input.is-medium ~ .icon,
+  .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon,
+  .control.has-icons-right .select.is-medium ~ .icon {
+    font-size: 1.25rem; }
+  .control.has-icons-left .input.is-large ~ .icon,
+  .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon,
+  .control.has-icons-right .select.is-large ~ .icon {
+    font-size: 1.5rem; }
+  .control.has-icons-left .icon, .control.has-icons-right .icon {
+    color: #dbdbdb;
+    height: 2.25em;
+    pointer-events: none;
+    position: absolute;
+    top: 0;
+    width: 2.25em;
+    z-index: 4; }
+  .control.has-icons-left .input,
+  .control.has-icons-left .select select {
+    padding-left: 2.25em; }
+  .control.has-icons-left .icon.is-left {
+    left: 0; }
+  .control.has-icons-right .input,
+  .control.has-icons-right .select select {
+    padding-right: 2.25em; }
+  .control.has-icons-right .icon.is-right {
+    right: 0; }
+  .control.is-loading::after {
+    position: absolute !important;
+    right: 0.625em;
+    top: 0.625em;
+    z-index: 4; }
+  .control.is-loading.is-small:after {
+    font-size: 0.75rem; }
+  .control.is-loading.is-medium:after {
+    font-size: 1.25rem; }
+  .control.is-loading.is-large:after {
+    font-size: 1.5rem; }
 
 .breadcrumb {
-  font-size: var(--bulma-size-normal);
-  white-space: nowrap;
-}
-.breadcrumb a {
-  align-items: center;
-  color: var(--bulma-breadcrumb-item-color);
-  display: flex;
-  justify-content: center;
-  padding: var(--bulma-breadcrumb-item-padding-vertical) var(--bulma-breadcrumb-item-padding-horizontal);
-}
-.breadcrumb a:hover {
-  color: var(--bulma-breadcrumb-item-hover-color);
-}
-.breadcrumb li {
-  align-items: center;
-  display: flex;
-}
-.breadcrumb li:first-child a {
-  padding-inline-start: 0;
-}
-.breadcrumb li.is-active a {
-  color: var(--bulma-breadcrumb-item-active-color);
-  cursor: default;
-  pointer-events: none;
-}
-.breadcrumb li + li::before {
-  color: var(--bulma-breadcrumb-item-separator-color);
-  content: "/";
-}
-.breadcrumb ul,
-.breadcrumb ol {
-  align-items: flex-start;
-  display: flex;
-  flex-wrap: wrap;
-  justify-content: flex-start;
-}
-.breadcrumb .icon:first-child {
-  margin-inline-end: 0.5em;
-}
-.breadcrumb .icon:last-child {
-  margin-inline-start: 0.5em;
-}
-.breadcrumb.is-centered ol,
-.breadcrumb.is-centered ul {
-  justify-content: center;
-}
-.breadcrumb.is-right ol,
-.breadcrumb.is-right ul {
-  justify-content: flex-end;
-}
-.breadcrumb.is-small {
-  font-size: var(--bulma-size-small);
-}
-.breadcrumb.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.breadcrumb.is-large {
-  font-size: var(--bulma-size-large);
-}
-.breadcrumb.has-arrow-separator li + li::before {
-  content: "→";
-}
-.breadcrumb.has-bullet-separator li + li::before {
-  content: "•";
-}
-.breadcrumb.has-dot-separator li + li::before {
-  content: "·";
-}
-.breadcrumb.has-succeeds-separator li + li::before {
-  content: "≻";
-}
+  font-size: 1rem;
+  white-space: nowrap; }
+  .breadcrumb a {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
+    align-items: center;
+    color: #4391E0;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center;
+    padding: 0 0.75em; }
+    .breadcrumb a:hover {
+      color: #363636; }
+  .breadcrumb li {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
+    align-items: center;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
+    .breadcrumb li:first-child a {
+      padding-left: 0; }
+    .breadcrumb li.is-active a {
+      color: #363636;
+      cursor: default;
+      pointer-events: none; }
+    .breadcrumb li + li::before {
+      color: #b5b5b5;
+      content: "\0002f"; }
+  .breadcrumb ul,
+  .breadcrumb ol {
+    -webkit-box-align: start;
+    -ms-flex-align: start;
+    align-items: flex-start;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    -ms-flex-wrap: wrap;
+    flex-wrap: wrap;
+    -webkit-box-pack: start;
+    -ms-flex-pack: start;
+    justify-content: flex-start; }
+  .breadcrumb .icon:first-child {
+    margin-right: 0.5em; }
+  .breadcrumb .icon:last-child {
+    margin-left: 0.5em; }
+  .breadcrumb.is-centered ol,
+  .breadcrumb.is-centered ul {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+  .breadcrumb.is-right ol,
+  .breadcrumb.is-right ul {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+  .breadcrumb.is-small {
+    font-size: 0.75rem; }
+  .breadcrumb.is-medium {
+    font-size: 1.25rem; }
+  .breadcrumb.is-large {
+    font-size: 1.5rem; }
+  .breadcrumb.has-arrow-separator li + li::before {
+    content: "\02192"; }
+  .breadcrumb.has-bullet-separator li + li::before {
+    content: "\02022"; }
+  .breadcrumb.has-dot-separator li + li::before {
+    content: "\000b7"; }
+  .breadcrumb.has-succeeds-separator li + li::before {
+    content: "\0227B"; }
 
 .card {
-  --bulma-card-color: var(--bulma-text);
-  --bulma-card-background-color: var(--bulma-scheme-main);
-  --bulma-card-shadow: var(--bulma-shadow);
-  --bulma-card-radius: 0.75rem;
-  --bulma-card-header-background-color: transparent;
-  --bulma-card-header-color: var(--bulma-text-strong);
-  --bulma-card-header-padding: 0.75rem 1rem;
-  --bulma-card-header-shadow: 0 0.125em 0.25em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
-  --bulma-card-header-weight: var(--bulma-weight-bold);
-  --bulma-card-content-background-color: transparent;
-  --bulma-card-content-padding: 1.5rem;
-  --bulma-card-footer-background-color: transparent;
-  --bulma-card-footer-border-top: 1px solid var(--bulma-border-weak);
-  --bulma-card-footer-padding: 0.75rem;
-  --bulma-card-media-margin: var(--bulma-block-spacing);
-}
-
-.card {
-  background-color: var(--bulma-card-background-color);
-  border-radius: var(--bulma-card-radius);
-  box-shadow: var(--bulma-card-shadow);
-  color: var(--bulma-card-color);
+  background-color: white;
+  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  color: #4a4a4a;
   max-width: 100%;
-  position: relative;
-}
-
-.card-footer:first-child, .card-content:first-child, .card-header:first-child {
-  border-start-start-radius: var(--bulma-card-radius);
-  border-start-end-radius: var(--bulma-card-radius);
-}
-.card-footer:last-child, .card-content:last-child, .card-header:last-child {
-  border-end-start-radius: var(--bulma-card-radius);
-  border-end-end-radius: var(--bulma-card-radius);
-}
+  position: relative; }
 
 .card-header {
-  background-color: var(--bulma-card-header-background-color);
+  background-color: transparent;
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
-  box-shadow: var(--bulma-card-header-shadow);
-  display: flex;
-}
+  -webkit-box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
+  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex; }
 
 .card-header-title {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
-  color: var(--bulma-card-header-color);
+  color: #363636;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
-  font-weight: var(--bulma-card-header-weight);
-  padding: var(--bulma-card-header-padding);
-}
-.card-header-title.is-centered {
-  justify-content: center;
-}
+  font-weight: 700;
+  padding: 0.75rem; }
+  .card-header-title.is-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
 
 .card-header-icon {
-  appearance: none;
-  background: none;
-  border: none;
-  color: inherit;
-  font-family: inherit;
-  font-size: 1em;
-  margin: 0;
-  padding: 0;
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
   cursor: pointer;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  padding: var(--bulma-card-header-padding);
-}
+  padding: 0.75rem; }
 
 .card-image {
   display: block;
-  position: relative;
-}
-.card-image:first-child img {
-  border-start-start-radius: var(--bulma-card-radius);
-  border-start-end-radius: var(--bulma-card-radius);
-}
-.card-image:last-child img {
-  border-end-start-radius: var(--bulma-card-radius);
-  border-end-end-radius: var(--bulma-card-radius);
-}
+  position: relative; }
 
 .card-content {
-  background-color: var(--bulma-card-content-background-color);
-  padding: var(--bulma-card-content-padding);
-}
+  background-color: transparent;
+  padding: 1.5rem; }
 
 .card-footer {
-  background-color: var(--bulma-card-footer-background-color);
-  border-top: var(--bulma-card-footer-border-top);
+  background-color: transparent;
+  border-top: 1px solid #dbdbdb;
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
-  display: flex;
-}
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex; }
 
 .card-footer-item {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -ms-flex-preferred-size: 0;
   flex-basis: 0;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
+  -ms-flex-negative: 0;
   flex-shrink: 0;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  padding: var(--bulma-card-footer-padding);
-}
-.card-footer-item:not(:last-child) {
-  border-inline-end: var(--bulma-card-footer-border-top);
-}
+  padding: 0.75rem; }
+  .card-footer-item:not(:last-child) {
+    border-right: 1px solid #dbdbdb; }
 
 .card .media:not(:last-child) {
-  margin-bottom: var(--bulma-card-media-margin);
-}
-
-.dropdown {
-  --bulma-dropdown-menu-min-width: 12rem;
-  --bulma-dropdown-content-background-color: var(--bulma-scheme-main);
-  --bulma-dropdown-content-offset: 0.25rem;
-  --bulma-dropdown-content-padding-bottom: 0.5rem;
-  --bulma-dropdown-content-padding-top: 0.5rem;
-  --bulma-dropdown-content-radius: var(--bulma-radius);
-  --bulma-dropdown-content-shadow: var(--bulma-shadow);
-  --bulma-dropdown-content-z: 20;
-  --bulma-dropdown-item-h: var(--bulma-scheme-h);
-  --bulma-dropdown-item-s: var(--bulma-scheme-s);
-  --bulma-dropdown-item-l: var(--bulma-scheme-main-l);
-  --bulma-dropdown-item-background-l: var(--bulma-scheme-main-l);
-  --bulma-dropdown-item-background-l-delta: 0%;
-  --bulma-dropdown-item-hover-background-l-delta: var(--bulma-hover-background-l-delta);
-  --bulma-dropdown-item-active-background-l-delta: var(--bulma-active-background-l-delta);
-  --bulma-dropdown-item-color-l: var(--bulma-text-strong-l);
-  --bulma-dropdown-item-selected-h: var(--bulma-link-h);
-  --bulma-dropdown-item-selected-s: var(--bulma-link-s);
-  --bulma-dropdown-item-selected-l: var(--bulma-link-l);
-  --bulma-dropdown-item-selected-background-l: var(--bulma-link-l);
-  --bulma-dropdown-item-selected-color-l: var(--bulma-link-invert-l);
-  --bulma-dropdown-divider-background-color: var(--bulma-border-weak);
-}
+  margin-bottom: 1.5rem; }
 
 .dropdown {
+  display: -webkit-inline-box;
+  display: -ms-inline-flexbox;
   display: inline-flex;
   position: relative;
-  vertical-align: top;
-}
-.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
-  display: block;
-}
-.dropdown.is-right .dropdown-menu {
-  left: auto;
-  right: 0;
-}
-.dropdown.is-up .dropdown-menu {
-  bottom: 100%;
-  padding-bottom: var(--bulma-dropdown-content-offset);
-  padding-top: initial;
-  top: auto;
-}
+  vertical-align: top; }
+  .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
+    display: block; }
+  .dropdown.is-right .dropdown-menu {
+    left: auto;
+    right: 0; }
+  .dropdown.is-up .dropdown-menu {
+    bottom: 100%;
+    padding-bottom: 4px;
+    padding-top: initial;
+    top: auto; }
 
 .dropdown-menu {
   display: none;
   left: 0;
-  min-width: var(--bulma-dropdown-menu-min-width);
-  padding-top: var(--bulma-dropdown-content-offset);
+  min-width: 12rem;
+  padding-top: 4px;
   position: absolute;
   top: 100%;
-  z-index: var(--bulma-dropdown-content-z);
-}
+  z-index: 20; }
 
 .dropdown-content {
-  background-color: var(--bulma-dropdown-content-background-color);
-  border-radius: var(--bulma-dropdown-content-radius);
-  box-shadow: var(--bulma-dropdown-content-shadow);
-  padding-bottom: var(--bulma-dropdown-content-padding-bottom);
-  padding-top: var(--bulma-dropdown-content-padding-top);
-}
+  background-color: white;
+  border-radius: 4px;
+  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  padding-bottom: 0.5rem;
+  padding-top: 0.5rem; }
 
 .dropdown-item {
-  color: hsl(var(--bulma-dropdown-item-h), var(--bulma-dropdown-item-s), var(--bulma-dropdown-item-color-l));
+  color: #4a4a4a;
   display: block;
   font-size: 0.875rem;
   line-height: 1.5;
   padding: 0.375rem 1rem;
-}
+  position: relative; }
 
 a.dropdown-item,
 button.dropdown-item {
-  background-color: hsl(var(--bulma-dropdown-item-h), var(--bulma-dropdown-item-s), calc(var(--bulma-dropdown-item-background-l) + var(--bulma-dropdown-item-background-l-delta)));
-  padding-inline-end: 3rem;
-  text-align: inherit;
+  padding-right: 3rem;
+  text-align: left;
   white-space: nowrap;
-  width: 100%;
-}
-a.dropdown-item:hover,
-button.dropdown-item:hover {
-  --bulma-dropdown-item-background-l-delta: var(--bulma-dropdown-item-hover-background-l-delta);
-  --bulma-dropdown-item-border-l-delta: var(--bulma-dropdown-item-hover-border-l-delta);
-}
-a.dropdown-item:active,
-button.dropdown-item:active {
-  --bulma-dropdown-item-background-l-delta: var(--bulma-dropdown-item-active-background-l-delta);
-  --bulma-dropdown-item-border-l-delta: var(--bulma-dropdown-item-active-border-l-delta);
-}
-a.dropdown-item.is-active, a.dropdown-item.is-selected,
-button.dropdown-item.is-active,
-button.dropdown-item.is-selected {
-  --bulma-dropdown-item-h: var(--bulma-dropdown-item-selected-h);
-  --bulma-dropdown-item-s: var(--bulma-dropdown-item-selected-s);
-  --bulma-dropdown-item-l: var(--bulma-dropdown-item-selected-l);
-  --bulma-dropdown-item-background-l: var(--bulma-dropdown-item-selected-background-l);
-  --bulma-dropdown-item-color-l: var(--bulma-dropdown-item-selected-color-l);
-}
+  width: 100%; }
+  a.dropdown-item:hover,
+  button.dropdown-item:hover {
+    background-color: whitesmoke;
+    color: #0a0a0a; }
+  a.dropdown-item.is-active,
+  button.dropdown-item.is-active {
+    background-color: #4391E0;
+    color: #fff; }
 
 .dropdown-divider {
-  background-color: var(--bulma-dropdown-divider-background-color);
+  background-color: #dbdbdb;
   border: none;
   display: block;
   height: 1px;
-  margin: 0.5rem 0;
-}
+  margin: 0.5rem 0; }
+
+.level {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
+  align-items: center;
+  -webkit-box-pack: justify;
+  -ms-flex-pack: justify;
+  justify-content: space-between; }
+  .level code {
+    border-radius: 4px; }
+  .level img {
+    display: inline-block;
+    vertical-align: top; }
+  .level.is-mobile {
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
+    .level.is-mobile .level-left,
+    .level.is-mobile .level-right {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; }
+    .level.is-mobile .level-left + .level-right {
+      margin-top: 0; }
+    .level.is-mobile .level-item:not(:last-child) {
+      margin-bottom: 0;
+      margin-right: 0.75rem; }
+    .level.is-mobile .level-item:not(.is-narrow) {
+      -webkit-box-flex: 1;
+      -ms-flex-positive: 1;
+      flex-grow: 1; }
+  @media screen and (min-width: 769px), print {
+    .level {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; }
+      .level > .level-item:not(.is-narrow) {
+        -webkit-box-flex: 1;
+        -ms-flex-positive: 1;
+        flex-grow: 1; } }
+
+.level-item {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
+  align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-preferred-size: auto;
+  flex-basis: auto;
+  -webkit-box-flex: 0;
+  -ms-flex-positive: 0;
+  flex-grow: 0;
+  -ms-flex-negative: 0;
+  flex-shrink: 0;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
+  justify-content: center; }
+  .level-item .title,
+  .level-item .subtitle {
+    margin-bottom: 0; }
+  @media screen and (max-width: 768px) {
+    .level-item:not(:last-child) {
+      margin-bottom: 0.75rem; } }
+
+.level-left,
+.level-right {
+  -ms-flex-preferred-size: auto;
+  flex-basis: auto;
+  -webkit-box-flex: 0;
+  -ms-flex-positive: 0;
+  flex-grow: 0;
+  -ms-flex-negative: 0;
+  flex-shrink: 0; }
+  .level-left .level-item.is-flexible,
+  .level-right .level-item.is-flexible {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1; }
+  @media screen and (min-width: 769px), print {
+    .level-left .level-item:not(:last-child),
+    .level-right .level-item:not(:last-child) {
+      margin-right: 0.75rem; } }
+
+.level-left {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
+  align-items: center;
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
+  justify-content: flex-start; }
+  @media screen and (max-width: 768px) {
+    .level-left + .level-right {
+      margin-top: 1.5rem; } }
+  @media screen and (min-width: 769px), print {
+    .level-left {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; } }
+
+.level-right {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
+  align-items: center;
+  -webkit-box-pack: end;
+  -ms-flex-pack: end;
+  justify-content: flex-end; }
+  @media screen and (min-width: 769px), print {
+    .level-right {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; } }
+
+.list {
+  background-color: white;
+  border-radius: 4px;
+  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); }
+
+.list-item {
+  display: block;
+  padding: 0.5em 1em; }
+  .list-item:not(a) {
+    color: #4a4a4a; }
+  .list-item:first-child {
+    border-top-left-radius: 4px;
+    border-top-right-radius: 4px; }
+  .list-item:last-child {
+    border-bottom-left-radius: 4px;
+    border-bottom-right-radius: 4px; }
+  .list-item:not(:last-child) {
+    border-bottom: 1px solid #dbdbdb; }
+  .list-item.is-active {
+    background-color: #4391E0;
+    color: #fff; }
+
+a.list-item {
+  background-color: whitesmoke;
+  cursor: pointer; }
+
+.media {
+  -webkit-box-align: start;
+  -ms-flex-align: start;
+  align-items: flex-start;
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  text-align: left; }
+  .media .content:not(:last-child) {
+    margin-bottom: 0.75rem; }
+  .media .media {
+    border-top: 1px solid rgba(219, 219, 219, 0.5);
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    padding-top: 0.75rem; }
+    .media .media .content:not(:last-child),
+    .media .media .control:not(:last-child) {
+      margin-bottom: 0.5rem; }
+    .media .media .media {
+      padding-top: 0.5rem; }
+      .media .media .media + .media {
+        margin-top: 0.5rem; }
+  .media + .media {
+    border-top: 1px solid rgba(219, 219, 219, 0.5);
+    margin-top: 1rem;
+    padding-top: 1rem; }
+  .media.is-large + .media {
+    margin-top: 1.5rem;
+    padding-top: 1.5rem; }
+
+.media-left,
+.media-right {
+  -ms-flex-preferred-size: auto;
+  flex-basis: auto;
+  -webkit-box-flex: 0;
+  -ms-flex-positive: 0;
+  flex-grow: 0;
+  -ms-flex-negative: 0;
+  flex-shrink: 0; }
+
+.media-left {
+  margin-right: 1rem; }
+
+.media-right {
+  margin-left: 1rem; }
+
+.media-content {
+  -ms-flex-preferred-size: auto;
+  flex-basis: auto;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
+  flex-grow: 1;
+  -ms-flex-negative: 1;
+  flex-shrink: 1;
+  text-align: left; }
+
+@media screen and (max-width: 768px) {
+  .media-content {
+    overflow-x: auto; } }
 
 .menu {
-  --bulma-menu-item-h: var(--bulma-scheme-h);
-  --bulma-menu-item-s: var(--bulma-scheme-s);
-  --bulma-menu-item-l: var(--bulma-scheme-main-l);
-  --bulma-menu-item-background-l: var(--bulma-scheme-main-l);
-  --bulma-menu-item-background-l-delta: 0%;
-  --bulma-menu-item-hover-background-l-delta: var(--bulma-hover-background-l-delta);
-  --bulma-menu-item-active-background-l-delta: var(--bulma-active-background-l-delta);
-  --bulma-menu-item-color-l: var(--bulma-text-l);
-  --bulma-menu-item-radius: var(--bulma-radius-small);
-  --bulma-menu-item-selected-h: var(--bulma-link-h);
-  --bulma-menu-item-selected-s: var(--bulma-link-s);
-  --bulma-menu-item-selected-l: var(--bulma-link-l);
-  --bulma-menu-item-selected-background-l: var(--bulma-link-l);
-  --bulma-menu-item-selected-color-l: var(--bulma-link-invert-l);
-  --bulma-menu-list-border-left: 1px solid var(--bulma-border);
-  --bulma-menu-list-line-height: 1.25;
-  --bulma-menu-list-link-padding: 0.5em 0.75em;
-  --bulma-menu-nested-list-margin: 0.75em;
-  --bulma-menu-nested-list-padding-left: 0.75em;
-  --bulma-menu-label-color: var(--bulma-text-weak);
-  --bulma-menu-label-font-size: 0.75em;
-  --bulma-menu-label-letter-spacing: 0.1em;
-  --bulma-menu-label-spacing: 1em;
-}
-
-.menu {
-  font-size: var(--bulma-size-normal);
-}
-.menu.is-small {
-  font-size: var(--bulma-size-small);
-}
-.menu.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.menu.is-large {
-  font-size: var(--bulma-size-large);
-}
+  font-size: 1rem; }
+  .menu.is-small {
+    font-size: 0.75rem; }
+  .menu.is-medium {
+    font-size: 1.25rem; }
+  .menu.is-large {
+    font-size: 1.5rem; }
 
 .menu-list {
-  line-height: var(--bulma-menu-list-line-height);
-}
-.menu-list a,
-.menu-list button,
-.menu-list .menu-item {
-  background-color: hsl(var(--bulma-menu-item-h), var(--bulma-menu-item-s), calc(var(--bulma-menu-item-background-l) + var(--bulma-menu-item-background-l-delta)));
-  border-radius: var(--bulma-menu-item-radius);
-  color: hsl(var(--bulma-menu-item-h), var(--bulma-menu-item-s), var(--bulma-menu-item-color-l));
-  display: block;
-  padding: var(--bulma-menu-list-link-padding);
-  text-align: left;
-  width: 100%;
-}
-.menu-list a:hover,
-.menu-list button:hover,
-.menu-list .menu-item:hover {
-  --bulma-menu-item-background-l-delta: var(--bulma-menu-item-hover-background-l-delta);
-}
-.menu-list a:active,
-.menu-list button:active,
-.menu-list .menu-item:active {
-  --bulma-menu-item-background-l-delta: var(--bulma-menu-item-active-background-l-delta);
-}
-.menu-list a.is-active, .menu-list a.is-selected,
-.menu-list button.is-active,
-.menu-list button.is-selected,
-.menu-list .menu-item.is-active,
-.menu-list .menu-item.is-selected {
-  --bulma-menu-item-h: var(--bulma-menu-item-selected-h);
-  --bulma-menu-item-s: var(--bulma-menu-item-selected-s);
-  --bulma-menu-item-l: var(--bulma-menu-item-selected-l);
-  --bulma-menu-item-background-l: var(--bulma-menu-item-selected-background-l);
-  --bulma-menu-item-color-l: var(--bulma-menu-item-selected-color-l);
-}
-.menu-list li ul {
-  border-inline-start: var(--bulma-menu-list-border-left);
-  margin: var(--bulma-menu-nested-list-margin);
-  padding-inline-start: var(--bulma-menu-nested-list-padding-left);
-}
+  line-height: 1.25; }
+  .menu-list a {
+    border-radius: 2px;
+    color: #4a4a4a;
+    display: block;
+    padding: 0.5em 0.75em; }
+    .menu-list a:hover {
+      background-color: whitesmoke;
+      color: #363636; }
+    .menu-list a.is-active {
+      background-color: #4391E0;
+      color: #fff; }
+  .menu-list li ul {
+    border-left: 1px solid #dbdbdb;
+    margin: 0.75em;
+    padding-left: 0.75em; }
 
 .menu-label {
-  color: var(--bulma-menu-label-color);
-  font-size: var(--bulma-menu-label-font-size);
-  letter-spacing: var(--bulma-menu-label-letter-spacing);
-  text-transform: uppercase;
-}
-.menu-label:not(:first-child) {
-  margin-top: var(--bulma-menu-label-spacing);
-}
-.menu-label:not(:last-child) {
-  margin-bottom: var(--bulma-menu-label-spacing);
-}
+  color: #7a7a7a;
+  font-size: 0.75em;
+  letter-spacing: 0.1em;
+  text-transform: uppercase; }
+  .menu-label:not(:first-child) {
+    margin-top: 1em; }
+  .menu-label:not(:last-child) {
+    margin-bottom: 1em; }
 
 .message {
-  --bulma-message-border-l-delta: -20%;
-  --bulma-message-radius: var(--bulma-radius);
-  --bulma-message-header-weight: var(--bulma-weight-semibold);
-  --bulma-message-header-padding: 1em 1.25em;
-  --bulma-message-header-radius: var(--bulma-radius);
-  --bulma-message-body-border-width: 0 0 0 4px;
-  --bulma-message-body-color: var(--bulma-text);
-  --bulma-message-body-padding: 1.25em 1.5em;
-  --bulma-message-body-radius: var(--bulma-radius-small);
-  --bulma-message-body-pre-code-background-color: transparent;
-  --bulma-message-header-body-border-width: 0;
-  --bulma-message-h: var(--bulma-scheme-h);
-  --bulma-message-s: var(--bulma-scheme-s);
-  --bulma-message-background-l: var(--bulma-background-l);
-  --bulma-message-border-l: var(--bulma-border-l);
-  --bulma-message-border-style: solid;
-  --bulma-message-border-width: 0.25em;
-  --bulma-message-color-l: var(--bulma-text-l);
-  --bulma-message-header-background-l: var(--bulma-dark-l);
-  --bulma-message-header-color-l: var(--bulma-text-dark-invert-l);
-}
-
-.message {
-  border-radius: var(--bulma-message-radius);
-  color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-color-l));
-  font-size: var(--bulma-size-normal);
-}
-.message strong {
-  color: currentColor;
-}
-.message a:not(.button):not(.tag):not(.dropdown-item) {
-  color: currentColor;
-  text-decoration: underline;
-}
-.message.is-small {
-  font-size: var(--bulma-size-small);
-}
-.message.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.message.is-large {
-  font-size: var(--bulma-size-large);
-}
-.message.is-white {
-  --bulma-message-h: var(--bulma-white-h);
-  --bulma-message-s: var(--bulma-white-s);
-  --bulma-message-border-l: calc(var(--bulma-white-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-white-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-white-l);
-  --bulma-message-header-color-l: var(--bulma-white-invert-l);
-}
-.message.is-black {
-  --bulma-message-h: var(--bulma-black-h);
-  --bulma-message-s: var(--bulma-black-s);
-  --bulma-message-border-l: calc(var(--bulma-black-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-black-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-black-l);
-  --bulma-message-header-color-l: var(--bulma-black-invert-l);
-}
-.message.is-light {
-  --bulma-message-h: var(--bulma-light-h);
-  --bulma-message-s: var(--bulma-light-s);
-  --bulma-message-border-l: calc(var(--bulma-light-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-light-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-light-l);
-  --bulma-message-header-color-l: var(--bulma-light-invert-l);
-}
-.message.is-dark {
-  --bulma-message-h: var(--bulma-dark-h);
-  --bulma-message-s: var(--bulma-dark-s);
-  --bulma-message-border-l: calc(var(--bulma-dark-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-dark-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-dark-l);
-  --bulma-message-header-color-l: var(--bulma-dark-invert-l);
-}
-.message.is-text {
-  --bulma-message-h: var(--bulma-text-h);
-  --bulma-message-s: var(--bulma-text-s);
-  --bulma-message-border-l: calc(var(--bulma-text-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-text-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-text-l);
-  --bulma-message-header-color-l: var(--bulma-text-invert-l);
-}
-.message.is-primary {
-  --bulma-message-h: var(--bulma-primary-h);
-  --bulma-message-s: var(--bulma-primary-s);
-  --bulma-message-border-l: calc(var(--bulma-primary-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-primary-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-primary-l);
-  --bulma-message-header-color-l: var(--bulma-primary-invert-l);
-}
-.message.is-link {
-  --bulma-message-h: var(--bulma-link-h);
-  --bulma-message-s: var(--bulma-link-s);
-  --bulma-message-border-l: calc(var(--bulma-link-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-link-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-link-l);
-  --bulma-message-header-color-l: var(--bulma-link-invert-l);
-}
-.message.is-info {
-  --bulma-message-h: var(--bulma-info-h);
-  --bulma-message-s: var(--bulma-info-s);
-  --bulma-message-border-l: calc(var(--bulma-info-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-info-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-info-l);
-  --bulma-message-header-color-l: var(--bulma-info-invert-l);
-}
-.message.is-success {
-  --bulma-message-h: var(--bulma-success-h);
-  --bulma-message-s: var(--bulma-success-s);
-  --bulma-message-border-l: calc(var(--bulma-success-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-success-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-success-l);
-  --bulma-message-header-color-l: var(--bulma-success-invert-l);
-}
-.message.is-warning {
-  --bulma-message-h: var(--bulma-warning-h);
-  --bulma-message-s: var(--bulma-warning-s);
-  --bulma-message-border-l: calc(var(--bulma-warning-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-warning-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-warning-l);
-  --bulma-message-header-color-l: var(--bulma-warning-invert-l);
-}
-.message.is-danger {
-  --bulma-message-h: var(--bulma-danger-h);
-  --bulma-message-s: var(--bulma-danger-s);
-  --bulma-message-border-l: calc(var(--bulma-danger-l) + var(--bulma-message-border-l-delta));
-  --bulma-message-color-l: var(--bulma-danger-on-scheme-l);
-  --bulma-message-header-background-l: var(--bulma-danger-l);
-  --bulma-message-header-color-l: var(--bulma-danger-invert-l);
-}
+  background-color: whitesmoke;
+  border-radius: 4px;
+  font-size: 1rem; }
+  .message strong {
+    color: currentColor; }
+  .message a:not(.button):not(.tag):not(.dropdown-item) {
+    color: currentColor;
+    text-decoration: underline; }
+  .message.is-small {
+    font-size: 0.75rem; }
+  .message.is-medium {
+    font-size: 1.25rem; }
+  .message.is-large {
+    font-size: 1.5rem; }
+  .message.is-white {
+    background-color: white; }
+    .message.is-white .message-header {
+      background-color: white;
+      color: #0a0a0a; }
+    .message.is-white .message-body {
+      border-color: white;
+      color: #4d4d4d; }
+  .message.is-black {
+    background-color: #fafafa; }
+    .message.is-black .message-header {
+      background-color: #0a0a0a;
+      color: white; }
+    .message.is-black .message-body {
+      border-color: #0a0a0a;
+      color: #090909; }
+  .message.is-light {
+    background-color: #fafafa; }
+    .message.is-light .message-header {
+      background-color: whitesmoke;
+      color: #363636; }
+    .message.is-light .message-body {
+      border-color: whitesmoke;
+      color: #505050; }
+  .message.is-dark {
+    background-color: #fafafa; }
+    .message.is-dark .message-header {
+      background-color: #363636;
+      color: whitesmoke; }
+    .message.is-dark .message-body {
+      border-color: #363636;
+      color: #2a2a2a; }
+  .message.is-primary {
+    background-color: #fafff5; }
+    .message.is-primary .message-header {
+      background-color: #478D00;
+      color: #fff; }
+    .message.is-primary .message-body {
+      border-color: #478D00;
+      color: #182f02; }
+  .message.is-link {
+    background-color: #f6fafe; }
+    .message.is-link .message-header {
+      background-color: #4391E0;
+      color: #fff; }
+    .message.is-link .message-body {
+      border-color: #4391E0;
+      color: #21578d; }
+  .message.is-info {
+    background-color: #f6fbfe; }
+    .message.is-info .message-header {
+      background-color: #209cee;
+      color: #fff; }
+    .message.is-info .message-body {
+      border-color: #209cee;
+      color: #12537e; }
+  .message.is-success {
+    background-color: #fafff5; }
+    .message.is-success .message-header {
+      background-color: #478D00;
+      color: #fff; }
+    .message.is-success .message-body {
+      border-color: #478D00;
+      color: #182f02; }
+  .message.is-warning {
+    background-color: #fffdf5; }
+    .message.is-warning .message-header {
+      background-color: #ffdd57;
+      color: rgba(0, 0, 0, 0.7); }
+    .message.is-warning .message-body {
+      border-color: #ffdd57;
+      color: #3b3108; }
+  .message.is-danger {
+    background-color: #fef5f7; }
+    .message.is-danger .message-header {
+      background-color: #a70c20;
+      color: #fff; }
+    .message.is-danger .message-body {
+      border-color: #a70c20;
+      color: #820c1b; }
 
 .message-header {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
-  background-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-background-l));
-  border-start-start-radius: var(--bulma-message-header-radius);
-  border-start-end-radius: var(--bulma-message-header-radius);
-  color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-color-l));
+  background-color: #4a4a4a;
+  border-radius: 4px 4px 0 0;
+  color: #fff;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
-  font-weight: var(--bulma-message-header-weight);
+  font-weight: 700;
+  -webkit-box-pack: justify;
+  -ms-flex-pack: justify;
   justify-content: space-between;
   line-height: 1.25;
-  padding: var(--bulma-message-header-padding);
-  position: relative;
-}
-.message-header .delete {
-  flex-grow: 0;
-  flex-shrink: 0;
-  margin-inline-start: 0.75em;
-}
-.message-header + .message-body {
-  border-width: var(--bulma-message-header-body-border-width);
-  border-start-start-radius: 0;
-  border-start-end-radius: 0;
-}
+  padding: 0.75em 1em;
+  position: relative; }
+  .message-header .delete {
+    -webkit-box-flex: 0;
+    -ms-flex-positive: 0;
+    flex-grow: 0;
+    -ms-flex-negative: 0;
+    flex-shrink: 0;
+    margin-left: 0.75em; }
+  .message-header + .message-body {
+    border-width: 0;
+    border-top-left-radius: 0;
+    border-top-right-radius: 0; }
 
 .message-body {
-  background-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-background-l));
-  border-inline-start-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-border-l));
-  border-inline-start-style: var(--bulma-message-border-style);
-  border-inline-start-width: var(--bulma-message-border-width);
-  border-radius: var(--bulma-message-body-radius);
-  padding: var(--bulma-message-body-padding);
-}
-.message-body code,
-.message-body pre {
-  background-color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-color-l));
-  color: hsl(var(--bulma-message-h), var(--bulma-message-s), var(--bulma-message-header-background-l));
-}
-.message-body pre code {
-  background-color: var(--bulma-message-body-pre-code-background-color);
-}
-
-.modal {
-  --bulma-modal-z: 40;
-  --bulma-modal-background-background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.86);
-  --bulma-modal-content-width: 40rem;
-  --bulma-modal-content-margin-mobile: 1.25rem;
-  --bulma-modal-content-spacing-mobile: 10rem;
-  --bulma-modal-content-spacing-tablet: 2.5rem;
-  --bulma-modal-close-dimensions: 2.5rem;
-  --bulma-modal-close-right: 1.25rem;
-  --bulma-modal-close-top: 1.25rem;
-  --bulma-modal-card-spacing: 2.5rem;
-  --bulma-modal-card-head-background-color: var(--bulma-scheme-main);
-  --bulma-modal-card-head-padding: 2rem;
-  --bulma-modal-card-head-radius: var(--bulma-radius-large);
-  --bulma-modal-card-title-color: var(--bulma-text-strong);
-  --bulma-modal-card-title-line-height: 1;
-  --bulma-modal-card-title-size: var(--bulma-size-4);
-  --bulma-modal-card-foot-background-color: var(--bulma-scheme-main-bis);
-  --bulma-modal-card-foot-radius: var(--bulma-radius-large);
-  --bulma-modal-card-body-background-color: var(--bulma-scheme-main);
-  --bulma-modal-card-body-padding: 2rem;
-}
+  border-color: #dbdbdb;
+  border-radius: 4px;
+  border-style: solid;
+  border-width: 0 0 0 4px;
+  color: #4a4a4a;
+  padding: 1.25em 1.5em; }
+  .message-body code,
+  .message-body pre {
+    background-color: white; }
+  .message-body pre code {
+    background-color: transparent; }
 
 .modal {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
   display: none;
+  -webkit-box-orient: vertical;
+  -webkit-box-direction: normal;
+  -ms-flex-direction: column;
   flex-direction: column;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
   overflow: hidden;
   position: fixed;
-  z-index: var(--bulma-modal-z);
-}
-.modal.is-active {
-  display: flex;
-}
+  z-index: 40; }
+  .modal.is-active {
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
 
 .modal-background {
-  background-color: var(--bulma-modal-background-background-color);
-}
+  background-color: rgba(10, 10, 10, 0.86); }
 
 .modal-content,
 .modal-card {
-  margin: 0 var(--bulma-modal-content-margin-mobile);
-  max-height: calc(100vh - var(--bulma-modal-content-spacing-mobile));
+  margin: 0 20px;
+  max-height: calc(100vh - 160px);
   overflow: auto;
   position: relative;
-  width: 100%;
-}
-@media screen and (min-width: 769px) {
-  .modal-content,
-  .modal-card {
-    margin: 0 auto;
-    max-height: calc(100vh - var(--bulma-modal-content-spacing-tablet));
-    width: var(--bulma-modal-content-width);
-  }
-}
+  width: 100%; }
+  @media screen and (min-width: 769px), print {
+    .modal-content,
+    .modal-card {
+      margin: 0 auto;
+      max-height: calc(100vh - 40px);
+      width: 640px; } }
 
 .modal-close {
   background: none;
-  height: var(--bulma-modal-close-dimensions);
-  inset-inline-end: var(--bulma-modal-close-right);
+  height: 40px;
   position: fixed;
-  top: var(--bulma-modal-close-top);
-  width: var(--bulma-modal-close-dimensions);
-}
+  right: 20px;
+  top: 20px;
+  width: 40px; }
 
 .modal-card {
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -webkit-box-orient: vertical;
+  -webkit-box-direction: normal;
+  -ms-flex-direction: column;
   flex-direction: column;
-  max-height: calc(100vh - var(--bulma-modal-card-spacing));
+  max-height: calc(100vh - 40px);
   overflow: hidden;
-  overflow-y: visible;
-}
+  -ms-overflow-y: visible; }
 
 .modal-card-head,
 .modal-card-foot {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
+  background-color: whitesmoke;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -ms-flex-negative: 0;
   flex-shrink: 0;
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
   justify-content: flex-start;
-  padding: var(--bulma-modal-card-head-padding);
-  position: relative;
-}
+  padding: 20px;
+  position: relative; }
 
 .modal-card-head {
-  background-color: var(--bulma-modal-card-head-background-color);
-  border-start-start-radius: var(--bulma-modal-card-head-radius);
-  border-start-end-radius: var(--bulma-modal-card-head-radius);
-  box-shadow: var(--bulma-shadow);
-}
+  border-bottom: 1px solid #dbdbdb;
+  border-top-left-radius: 6px;
+  border-top-right-radius: 6px; }
 
 .modal-card-title {
-  color: var(--bulma-modal-card-title-color);
+  color: #363636;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
+  -ms-flex-negative: 0;
   flex-shrink: 0;
-  font-size: var(--bulma-modal-card-title-size);
-  line-height: var(--bulma-modal-card-title-line-height);
-}
+  font-size: 1.5rem;
+  line-height: 1; }
 
 .modal-card-foot {
-  background-color: var(--bulma-modal-card-foot-background-color);
-  border-end-start-radius: var(--bulma-modal-card-foot-radius);
-  border-end-end-radius: var(--bulma-modal-card-foot-radius);
-}
+  border-bottom-left-radius: 6px;
+  border-bottom-right-radius: 6px;
+  border-top: 1px solid #dbdbdb; }
+  .modal-card-foot .button:not(:last-child) {
+    margin-right: 0.5em; }
 
 .modal-card-body {
   -webkit-overflow-scrolling: touch;
-  background-color: var(--bulma-modal-card-body-background-color);
+  background-color: white;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
+  -ms-flex-negative: 1;
   flex-shrink: 1;
   overflow: auto;
-  padding: var(--bulma-modal-card-body-padding);
-}
-
-:root {
-  --bulma-navbar-height: 3.25rem;
-}
+  padding: 20px; }
 
 .navbar {
-  --bulma-navbar-h: var(--bulma-scheme-h);
-  --bulma-navbar-s: var(--bulma-scheme-s);
-  --bulma-navbar-l: var(--bulma-scheme-main-l);
-  --bulma-navbar-background-color: var(--bulma-scheme-main);
-  --bulma-navbar-box-shadow-size: 0 0.125em 0 0;
-  --bulma-navbar-box-shadow-color: var(--bulma-background);
-  --bulma-navbar-padding-vertical: 1rem;
-  --bulma-navbar-padding-horizontal: 2rem;
-  --bulma-navbar-z: 30;
-  --bulma-navbar-fixed-z: 30;
-  --bulma-navbar-item-background-a: 0;
-  --bulma-navbar-item-background-l: var(--bulma-scheme-main-l);
-  --bulma-navbar-item-background-l-delta: 0%;
-  --bulma-navbar-item-hover-background-l-delta: var(--bulma-hover-background-l-delta);
-  --bulma-navbar-item-active-background-l-delta: var(--bulma-active-background-l-delta);
-  --bulma-navbar-item-color-l: var(--bulma-text-l);
-  --bulma-navbar-item-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), var(--bulma-navbar-item-color-l));
-  --bulma-navbar-item-selected-h: var(--bulma-link-h);
-  --bulma-navbar-item-selected-s: var(--bulma-link-s);
-  --bulma-navbar-item-selected-l: var(--bulma-link-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-link-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-link-invert-l);
-  --bulma-navbar-item-img-max-height: 1.75rem;
-  --bulma-navbar-burger-color: var(--bulma-link);
-  --bulma-navbar-tab-hover-background-color: transparent;
-  --bulma-navbar-tab-hover-border-bottom-color: var(--bulma-link);
-  --bulma-navbar-tab-active-color: var(--bulma-link);
-  --bulma-navbar-tab-active-background-color: transparent;
-  --bulma-navbar-tab-active-border-bottom-color: var(--bulma-link);
-  --bulma-navbar-tab-active-border-bottom-style: solid;
-  --bulma-navbar-tab-active-border-bottom-width: 0.1875em;
-  --bulma-navbar-dropdown-background-color: var(--bulma-scheme-main);
-  --bulma-navbar-dropdown-border-l: var(--bulma-border-l);
-  --bulma-navbar-dropdown-border-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), var(--bulma-navbar-dropdown-border-l));
-  --bulma-navbar-dropdown-border-style: solid;
-  --bulma-navbar-dropdown-border-width: 0.125em;
-  --bulma-navbar-dropdown-offset: -0.25em;
-  --bulma-navbar-dropdown-arrow: var(--bulma-link);
-  --bulma-navbar-dropdown-radius: var(--bulma-radius-large);
-  --bulma-navbar-dropdown-z: 20;
-  --bulma-navbar-dropdown-boxed-radius: var(--bulma-radius-large);
-  --bulma-navbar-dropdown-boxed-shadow: 0 0.5em 0.5em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1), 0 0 0 1px hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
-  --bulma-navbar-dropdown-item-h: var(--bulma-scheme-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-scheme-s);
-  --bulma-navbar-dropdown-item-l: var(--bulma-scheme-main-l);
-  --bulma-navbar-dropdown-item-background-l: var(--bulma-scheme-main-l);
-  --bulma-navbar-dropdown-item-color-l: var(--bulma-text-l);
-  --bulma-navbar-divider-background-l: var(--bulma-background-l);
-  --bulma-navbar-divider-height: 0.125em;
-  --bulma-navbar-bottom-box-shadow-size: 0 -0.125em 0 0;
-}
-
-.navbar {
-  background-color: var(--bulma-navbar-background-color);
-  min-height: var(--bulma-navbar-height);
+  background-color: white;
+  min-height: 3.25rem;
   position: relative;
-  z-index: var(--bulma-navbar-z);
-}
-.navbar.is-white {
-  --bulma-navbar-h: var(--bulma-white-h);
-  --bulma-navbar-s: var(--bulma-white-s);
-  --bulma-navbar-l: var(--bulma-white-l);
-  --bulma-burger-h: var(--bulma-white-h);
-  --bulma-burger-s: var(--bulma-white-s);
-  --bulma-burger-l: var(--bulma-white-invert-l);
-  --bulma-navbar-background-color: var(--bulma-white);
-  --bulma-navbar-item-background-l: var(--bulma-white-l);
-  --bulma-navbar-item-color-l: var(--bulma-white-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-white-h);
-  --bulma-navbar-item-selected-s: var(--bulma-white-s);
-  --bulma-navbar-item-selected-l: var(--bulma-white-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-white-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-white-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-white-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-white-h), var(--bulma-white-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-white-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-white-s);
-}
-.navbar.is-black {
-  --bulma-navbar-h: var(--bulma-black-h);
-  --bulma-navbar-s: var(--bulma-black-s);
-  --bulma-navbar-l: var(--bulma-black-l);
-  --bulma-burger-h: var(--bulma-black-h);
-  --bulma-burger-s: var(--bulma-black-s);
-  --bulma-burger-l: var(--bulma-black-invert-l);
-  --bulma-navbar-background-color: var(--bulma-black);
-  --bulma-navbar-item-background-l: var(--bulma-black-l);
-  --bulma-navbar-item-color-l: var(--bulma-black-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-black-h);
-  --bulma-navbar-item-selected-s: var(--bulma-black-s);
-  --bulma-navbar-item-selected-l: var(--bulma-black-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-black-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-black-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-black-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-black-h), var(--bulma-black-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-black-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-black-s);
-}
-.navbar.is-light {
-  --bulma-navbar-h: var(--bulma-light-h);
-  --bulma-navbar-s: var(--bulma-light-s);
-  --bulma-navbar-l: var(--bulma-light-l);
-  --bulma-burger-h: var(--bulma-light-h);
-  --bulma-burger-s: var(--bulma-light-s);
-  --bulma-burger-l: var(--bulma-light-invert-l);
-  --bulma-navbar-background-color: var(--bulma-light);
-  --bulma-navbar-item-background-l: var(--bulma-light-l);
-  --bulma-navbar-item-color-l: var(--bulma-light-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-light-h);
-  --bulma-navbar-item-selected-s: var(--bulma-light-s);
-  --bulma-navbar-item-selected-l: var(--bulma-light-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-light-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-light-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-light-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-light-h), var(--bulma-light-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-light-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-light-s);
-}
-.navbar.is-dark {
-  --bulma-navbar-h: var(--bulma-dark-h);
-  --bulma-navbar-s: var(--bulma-dark-s);
-  --bulma-navbar-l: var(--bulma-dark-l);
-  --bulma-burger-h: var(--bulma-dark-h);
-  --bulma-burger-s: var(--bulma-dark-s);
-  --bulma-burger-l: var(--bulma-dark-invert-l);
-  --bulma-navbar-background-color: var(--bulma-dark);
-  --bulma-navbar-item-background-l: var(--bulma-dark-l);
-  --bulma-navbar-item-color-l: var(--bulma-dark-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-dark-h);
-  --bulma-navbar-item-selected-s: var(--bulma-dark-s);
-  --bulma-navbar-item-selected-l: var(--bulma-dark-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-dark-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-dark-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-dark-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-dark-h), var(--bulma-dark-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-dark-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-dark-s);
-}
-.navbar.is-text {
-  --bulma-navbar-h: var(--bulma-text-h);
-  --bulma-navbar-s: var(--bulma-text-s);
-  --bulma-navbar-l: var(--bulma-text-l);
-  --bulma-burger-h: var(--bulma-text-h);
-  --bulma-burger-s: var(--bulma-text-s);
-  --bulma-burger-l: var(--bulma-text-invert-l);
-  --bulma-navbar-background-color: var(--bulma-text);
-  --bulma-navbar-item-background-l: var(--bulma-text-l);
-  --bulma-navbar-item-color-l: var(--bulma-text-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-text-h);
-  --bulma-navbar-item-selected-s: var(--bulma-text-s);
-  --bulma-navbar-item-selected-l: var(--bulma-text-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-text-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-text-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-text-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-text-h), var(--bulma-text-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-text-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-text-s);
-}
-.navbar.is-primary {
-  --bulma-navbar-h: var(--bulma-primary-h);
-  --bulma-navbar-s: var(--bulma-primary-s);
-  --bulma-navbar-l: var(--bulma-primary-l);
-  --bulma-burger-h: var(--bulma-primary-h);
-  --bulma-burger-s: var(--bulma-primary-s);
-  --bulma-burger-l: var(--bulma-primary-invert-l);
-  --bulma-navbar-background-color: var(--bulma-primary);
-  --bulma-navbar-item-background-l: var(--bulma-primary-l);
-  --bulma-navbar-item-color-l: var(--bulma-primary-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-primary-h);
-  --bulma-navbar-item-selected-s: var(--bulma-primary-s);
-  --bulma-navbar-item-selected-l: var(--bulma-primary-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-primary-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-primary-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-primary-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-primary-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-primary-s);
-}
-.navbar.is-link {
-  --bulma-navbar-h: var(--bulma-link-h);
-  --bulma-navbar-s: var(--bulma-link-s);
-  --bulma-navbar-l: var(--bulma-link-l);
-  --bulma-burger-h: var(--bulma-link-h);
-  --bulma-burger-s: var(--bulma-link-s);
-  --bulma-burger-l: var(--bulma-link-invert-l);
-  --bulma-navbar-background-color: var(--bulma-link);
-  --bulma-navbar-item-background-l: var(--bulma-link-l);
-  --bulma-navbar-item-color-l: var(--bulma-link-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-link-h);
-  --bulma-navbar-item-selected-s: var(--bulma-link-s);
-  --bulma-navbar-item-selected-l: var(--bulma-link-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-link-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-link-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-link-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-link-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-link-s);
-}
-.navbar.is-info {
-  --bulma-navbar-h: var(--bulma-info-h);
-  --bulma-navbar-s: var(--bulma-info-s);
-  --bulma-navbar-l: var(--bulma-info-l);
-  --bulma-burger-h: var(--bulma-info-h);
-  --bulma-burger-s: var(--bulma-info-s);
-  --bulma-burger-l: var(--bulma-info-invert-l);
-  --bulma-navbar-background-color: var(--bulma-info);
-  --bulma-navbar-item-background-l: var(--bulma-info-l);
-  --bulma-navbar-item-color-l: var(--bulma-info-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-info-h);
-  --bulma-navbar-item-selected-s: var(--bulma-info-s);
-  --bulma-navbar-item-selected-l: var(--bulma-info-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-info-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-info-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-info-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-info-h), var(--bulma-info-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-info-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-info-s);
-}
-.navbar.is-success {
-  --bulma-navbar-h: var(--bulma-success-h);
-  --bulma-navbar-s: var(--bulma-success-s);
-  --bulma-navbar-l: var(--bulma-success-l);
-  --bulma-burger-h: var(--bulma-success-h);
-  --bulma-burger-s: var(--bulma-success-s);
-  --bulma-burger-l: var(--bulma-success-invert-l);
-  --bulma-navbar-background-color: var(--bulma-success);
-  --bulma-navbar-item-background-l: var(--bulma-success-l);
-  --bulma-navbar-item-color-l: var(--bulma-success-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-success-h);
-  --bulma-navbar-item-selected-s: var(--bulma-success-s);
-  --bulma-navbar-item-selected-l: var(--bulma-success-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-success-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-success-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-success-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-success-h), var(--bulma-success-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-success-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-success-s);
-}
-.navbar.is-warning {
-  --bulma-navbar-h: var(--bulma-warning-h);
-  --bulma-navbar-s: var(--bulma-warning-s);
-  --bulma-navbar-l: var(--bulma-warning-l);
-  --bulma-burger-h: var(--bulma-warning-h);
-  --bulma-burger-s: var(--bulma-warning-s);
-  --bulma-burger-l: var(--bulma-warning-invert-l);
-  --bulma-navbar-background-color: var(--bulma-warning);
-  --bulma-navbar-item-background-l: var(--bulma-warning-l);
-  --bulma-navbar-item-color-l: var(--bulma-warning-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-warning-h);
-  --bulma-navbar-item-selected-s: var(--bulma-warning-s);
-  --bulma-navbar-item-selected-l: var(--bulma-warning-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-warning-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-warning-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-warning-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-warning-h), var(--bulma-warning-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-warning-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-warning-s);
-}
-.navbar.is-danger {
-  --bulma-navbar-h: var(--bulma-danger-h);
-  --bulma-navbar-s: var(--bulma-danger-s);
-  --bulma-navbar-l: var(--bulma-danger-l);
-  --bulma-burger-h: var(--bulma-danger-h);
-  --bulma-burger-s: var(--bulma-danger-s);
-  --bulma-burger-l: var(--bulma-danger-invert-l);
-  --bulma-navbar-background-color: var(--bulma-danger);
-  --bulma-navbar-item-background-l: var(--bulma-danger-l);
-  --bulma-navbar-item-color-l: var(--bulma-danger-invert-l);
-  --bulma-navbar-item-selected-h: var(--bulma-danger-h);
-  --bulma-navbar-item-selected-s: var(--bulma-danger-s);
-  --bulma-navbar-item-selected-l: var(--bulma-danger-l);
-  --bulma-navbar-item-selected-background-l: var(--bulma-danger-l);
-  --bulma-navbar-item-selected-color-l: var(--bulma-danger-invert-l);
-  --bulma-navbar-dropdown-arrow: var(--bulma-danger-invert-l);
-  --bulma-navbar-dropdown-background-color: hsl(var(--bulma-danger-h), var(--bulma-danger-s), var(--bulma-navbar-dropdown-item-background-l));
-  --bulma-navbar-dropdown-item-h: var(--bulma-danger-h);
-  --bulma-navbar-dropdown-item-s: var(--bulma-danger-s);
-}
-.navbar > .container {
-  align-items: stretch;
-  display: flex;
-  min-height: var(--bulma-navbar-height);
-  width: 100%;
-}
-.navbar.has-shadow {
-  box-shadow: var(--bulma-navbar-box-shadow-size) var(--bulma-navbar-box-shadow-color);
-}
-.navbar.is-fixed-bottom, .navbar.is-fixed-top {
-  left: 0;
-  position: fixed;
-  right: 0;
-  z-index: var(--bulma-navbar-fixed-z);
-}
-.navbar.is-fixed-bottom {
-  bottom: 0;
-}
-.navbar.is-fixed-bottom.has-shadow {
-  box-shadow: var(--bulma-navbar-bottom-box-shadow-size) var(--bulma-navbar-box-shadow-color);
-}
-.navbar.is-fixed-top {
-  top: 0;
-}
+  z-index: 30; }
+  .navbar.is-white {
+    background-color: white;
+    color: #0a0a0a; }
+    .navbar.is-white .navbar-brand > .navbar-item,
+    .navbar.is-white .navbar-brand .navbar-link {
+      color: #0a0a0a; }
+    .navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-white .navbar-brand .navbar-link:focus,
+    .navbar.is-white .navbar-brand .navbar-link:hover,
+    .navbar.is-white .navbar-brand .navbar-link.is-active {
+      background-color: #f2f2f2;
+      color: #0a0a0a; }
+    .navbar.is-white .navbar-brand .navbar-link::after {
+      border-color: #0a0a0a; }
+    .navbar.is-white .navbar-burger {
+      color: #0a0a0a; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-white .navbar-start > .navbar-item,
+      .navbar.is-white .navbar-start .navbar-link,
+      .navbar.is-white .navbar-end > .navbar-item,
+      .navbar.is-white .navbar-end .navbar-link {
+        color: #0a0a0a; }
+      .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active,
+      .navbar.is-white .navbar-start .navbar-link:focus,
+      .navbar.is-white .navbar-start .navbar-link:hover,
+      .navbar.is-white .navbar-start .navbar-link.is-active,
+      .navbar.is-white .navbar-end > a.navbar-item:focus,
+      .navbar.is-white .navbar-end > a.navbar-item:hover,
+      .navbar.is-white .navbar-end > a.navbar-item.is-active,
+      .navbar.is-white .navbar-end .navbar-link:focus,
+      .navbar.is-white .navbar-end .navbar-link:hover,
+      .navbar.is-white .navbar-end .navbar-link.is-active {
+        background-color: #f2f2f2;
+        color: #0a0a0a; }
+      .navbar.is-white .navbar-start .navbar-link::after,
+      .navbar.is-white .navbar-end .navbar-link::after {
+        border-color: #0a0a0a; }
+      .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #f2f2f2;
+        color: #0a0a0a; }
+      .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
+        background-color: white;
+        color: #0a0a0a; } }
+  .navbar.is-black {
+    background-color: #0a0a0a;
+    color: white; }
+    .navbar.is-black .navbar-brand > .navbar-item,
+    .navbar.is-black .navbar-brand .navbar-link {
+      color: white; }
+    .navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-black .navbar-brand .navbar-link:focus,
+    .navbar.is-black .navbar-brand .navbar-link:hover,
+    .navbar.is-black .navbar-brand .navbar-link.is-active {
+      background-color: black;
+      color: white; }
+    .navbar.is-black .navbar-brand .navbar-link::after {
+      border-color: white; }
+    .navbar.is-black .navbar-burger {
+      color: white; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-black .navbar-start > .navbar-item,
+      .navbar.is-black .navbar-start .navbar-link,
+      .navbar.is-black .navbar-end > .navbar-item,
+      .navbar.is-black .navbar-end .navbar-link {
+        color: white; }
+      .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active,
+      .navbar.is-black .navbar-start .navbar-link:focus,
+      .navbar.is-black .navbar-start .navbar-link:hover,
+      .navbar.is-black .navbar-start .navbar-link.is-active,
+      .navbar.is-black .navbar-end > a.navbar-item:focus,
+      .navbar.is-black .navbar-end > a.navbar-item:hover,
+      .navbar.is-black .navbar-end > a.navbar-item.is-active,
+      .navbar.is-black .navbar-end .navbar-link:focus,
+      .navbar.is-black .navbar-end .navbar-link:hover,
+      .navbar.is-black .navbar-end .navbar-link.is-active {
+        background-color: black;
+        color: white; }
+      .navbar.is-black .navbar-start .navbar-link::after,
+      .navbar.is-black .navbar-end .navbar-link::after {
+        border-color: white; }
+      .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: black;
+        color: white; }
+      .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
+        background-color: #0a0a0a;
+        color: white; } }
+  .navbar.is-light {
+    background-color: whitesmoke;
+    color: #363636; }
+    .navbar.is-light .navbar-brand > .navbar-item,
+    .navbar.is-light .navbar-brand .navbar-link {
+      color: #363636; }
+    .navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-light .navbar-brand .navbar-link:focus,
+    .navbar.is-light .navbar-brand .navbar-link:hover,
+    .navbar.is-light .navbar-brand .navbar-link.is-active {
+      background-color: #e8e8e8;
+      color: #363636; }
+    .navbar.is-light .navbar-brand .navbar-link::after {
+      border-color: #363636; }
+    .navbar.is-light .navbar-burger {
+      color: #363636; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-light .navbar-start > .navbar-item,
+      .navbar.is-light .navbar-start .navbar-link,
+      .navbar.is-light .navbar-end > .navbar-item,
+      .navbar.is-light .navbar-end .navbar-link {
+        color: #363636; }
+      .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active,
+      .navbar.is-light .navbar-start .navbar-link:focus,
+      .navbar.is-light .navbar-start .navbar-link:hover,
+      .navbar.is-light .navbar-start .navbar-link.is-active,
+      .navbar.is-light .navbar-end > a.navbar-item:focus,
+      .navbar.is-light .navbar-end > a.navbar-item:hover,
+      .navbar.is-light .navbar-end > a.navbar-item.is-active,
+      .navbar.is-light .navbar-end .navbar-link:focus,
+      .navbar.is-light .navbar-end .navbar-link:hover,
+      .navbar.is-light .navbar-end .navbar-link.is-active {
+        background-color: #e8e8e8;
+        color: #363636; }
+      .navbar.is-light .navbar-start .navbar-link::after,
+      .navbar.is-light .navbar-end .navbar-link::after {
+        border-color: #363636; }
+      .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #e8e8e8;
+        color: #363636; }
+      .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
+        background-color: whitesmoke;
+        color: #363636; } }
+  .navbar.is-dark {
+    background-color: #363636;
+    color: whitesmoke; }
+    .navbar.is-dark .navbar-brand > .navbar-item,
+    .navbar.is-dark .navbar-brand .navbar-link {
+      color: whitesmoke; }
+    .navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-dark .navbar-brand .navbar-link:focus,
+    .navbar.is-dark .navbar-brand .navbar-link:hover,
+    .navbar.is-dark .navbar-brand .navbar-link.is-active {
+      background-color: #292929;
+      color: whitesmoke; }
+    .navbar.is-dark .navbar-brand .navbar-link::after {
+      border-color: whitesmoke; }
+    .navbar.is-dark .navbar-burger {
+      color: whitesmoke; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-dark .navbar-start > .navbar-item,
+      .navbar.is-dark .navbar-start .navbar-link,
+      .navbar.is-dark .navbar-end > .navbar-item,
+      .navbar.is-dark .navbar-end .navbar-link {
+        color: whitesmoke; }
+      .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active,
+      .navbar.is-dark .navbar-start .navbar-link:focus,
+      .navbar.is-dark .navbar-start .navbar-link:hover,
+      .navbar.is-dark .navbar-start .navbar-link.is-active,
+      .navbar.is-dark .navbar-end > a.navbar-item:focus,
+      .navbar.is-dark .navbar-end > a.navbar-item:hover,
+      .navbar.is-dark .navbar-end > a.navbar-item.is-active,
+      .navbar.is-dark .navbar-end .navbar-link:focus,
+      .navbar.is-dark .navbar-end .navbar-link:hover,
+      .navbar.is-dark .navbar-end .navbar-link.is-active {
+        background-color: #292929;
+        color: whitesmoke; }
+      .navbar.is-dark .navbar-start .navbar-link::after,
+      .navbar.is-dark .navbar-end .navbar-link::after {
+        border-color: whitesmoke; }
+      .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #292929;
+        color: whitesmoke; }
+      .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
+        background-color: #363636;
+        color: whitesmoke; } }
+  .navbar.is-primary {
+    background-color: #478D00;
+    color: #fff; }
+    .navbar.is-primary .navbar-brand > .navbar-item,
+    .navbar.is-primary .navbar-brand .navbar-link {
+      color: #fff; }
+    .navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-primary .navbar-brand .navbar-link:focus,
+    .navbar.is-primary .navbar-brand .navbar-link:hover,
+    .navbar.is-primary .navbar-brand .navbar-link.is-active {
+      background-color: #3a7400;
+      color: #fff; }
+    .navbar.is-primary .navbar-brand .navbar-link::after {
+      border-color: #fff; }
+    .navbar.is-primary .navbar-burger {
+      color: #fff; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-primary .navbar-start > .navbar-item,
+      .navbar.is-primary .navbar-start .navbar-link,
+      .navbar.is-primary .navbar-end > .navbar-item,
+      .navbar.is-primary .navbar-end .navbar-link {
+        color: #fff; }
+      .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active,
+      .navbar.is-primary .navbar-start .navbar-link:focus,
+      .navbar.is-primary .navbar-start .navbar-link:hover,
+      .navbar.is-primary .navbar-start .navbar-link.is-active,
+      .navbar.is-primary .navbar-end > a.navbar-item:focus,
+      .navbar.is-primary .navbar-end > a.navbar-item:hover,
+      .navbar.is-primary .navbar-end > a.navbar-item.is-active,
+      .navbar.is-primary .navbar-end .navbar-link:focus,
+      .navbar.is-primary .navbar-end .navbar-link:hover,
+      .navbar.is-primary .navbar-end .navbar-link.is-active {
+        background-color: #3a7400;
+        color: #fff; }
+      .navbar.is-primary .navbar-start .navbar-link::after,
+      .navbar.is-primary .navbar-end .navbar-link::after {
+        border-color: #fff; }
+      .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #3a7400;
+        color: #fff; }
+      .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
+        background-color: #478D00;
+        color: #fff; } }
+  .navbar.is-link {
+    background-color: #4391E0;
+    color: #fff; }
+    .navbar.is-link .navbar-brand > .navbar-item,
+    .navbar.is-link .navbar-brand .navbar-link {
+      color: #fff; }
+    .navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-link .navbar-brand .navbar-link:focus,
+    .navbar.is-link .navbar-brand .navbar-link:hover,
+    .navbar.is-link .navbar-brand .navbar-link.is-active {
+      background-color: #2d84dc;
+      color: #fff; }
+    .navbar.is-link .navbar-brand .navbar-link::after {
+      border-color: #fff; }
+    .navbar.is-link .navbar-burger {
+      color: #fff; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-link .navbar-start > .navbar-item,
+      .navbar.is-link .navbar-start .navbar-link,
+      .navbar.is-link .navbar-end > .navbar-item,
+      .navbar.is-link .navbar-end .navbar-link {
+        color: #fff; }
+      .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active,
+      .navbar.is-link .navbar-start .navbar-link:focus,
+      .navbar.is-link .navbar-start .navbar-link:hover,
+      .navbar.is-link .navbar-start .navbar-link.is-active,
+      .navbar.is-link .navbar-end > a.navbar-item:focus,
+      .navbar.is-link .navbar-end > a.navbar-item:hover,
+      .navbar.is-link .navbar-end > a.navbar-item.is-active,
+      .navbar.is-link .navbar-end .navbar-link:focus,
+      .navbar.is-link .navbar-end .navbar-link:hover,
+      .navbar.is-link .navbar-end .navbar-link.is-active {
+        background-color: #2d84dc;
+        color: #fff; }
+      .navbar.is-link .navbar-start .navbar-link::after,
+      .navbar.is-link .navbar-end .navbar-link::after {
+        border-color: #fff; }
+      .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #2d84dc;
+        color: #fff; }
+      .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
+        background-color: #4391E0;
+        color: #fff; } }
+  .navbar.is-info {
+    background-color: #209cee;
+    color: #fff; }
+    .navbar.is-info .navbar-brand > .navbar-item,
+    .navbar.is-info .navbar-brand .navbar-link {
+      color: #fff; }
+    .navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-info .navbar-brand .navbar-link:focus,
+    .navbar.is-info .navbar-brand .navbar-link:hover,
+    .navbar.is-info .navbar-brand .navbar-link.is-active {
+      background-color: #118fe4;
+      color: #fff; }
+    .navbar.is-info .navbar-brand .navbar-link::after {
+      border-color: #fff; }
+    .navbar.is-info .navbar-burger {
+      color: #fff; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-info .navbar-start > .navbar-item,
+      .navbar.is-info .navbar-start .navbar-link,
+      .navbar.is-info .navbar-end > .navbar-item,
+      .navbar.is-info .navbar-end .navbar-link {
+        color: #fff; }
+      .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active,
+      .navbar.is-info .navbar-start .navbar-link:focus,
+      .navbar.is-info .navbar-start .navbar-link:hover,
+      .navbar.is-info .navbar-start .navbar-link.is-active,
+      .navbar.is-info .navbar-end > a.navbar-item:focus,
+      .navbar.is-info .navbar-end > a.navbar-item:hover,
+      .navbar.is-info .navbar-end > a.navbar-item.is-active,
+      .navbar.is-info .navbar-end .navbar-link:focus,
+      .navbar.is-info .navbar-end .navbar-link:hover,
+      .navbar.is-info .navbar-end .navbar-link.is-active {
+        background-color: #118fe4;
+        color: #fff; }
+      .navbar.is-info .navbar-start .navbar-link::after,
+      .navbar.is-info .navbar-end .navbar-link::after {
+        border-color: #fff; }
+      .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #118fe4;
+        color: #fff; }
+      .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
+        background-color: #209cee;
+        color: #fff; } }
+  .navbar.is-success {
+    background-color: #478D00;
+    color: #fff; }
+    .navbar.is-success .navbar-brand > .navbar-item,
+    .navbar.is-success .navbar-brand .navbar-link {
+      color: #fff; }
+    .navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-success .navbar-brand .navbar-link:focus,
+    .navbar.is-success .navbar-brand .navbar-link:hover,
+    .navbar.is-success .navbar-brand .navbar-link.is-active {
+      background-color: #3a7400;
+      color: #fff; }
+    .navbar.is-success .navbar-brand .navbar-link::after {
+      border-color: #fff; }
+    .navbar.is-success .navbar-burger {
+      color: #fff; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-success .navbar-start > .navbar-item,
+      .navbar.is-success .navbar-start .navbar-link,
+      .navbar.is-success .navbar-end > .navbar-item,
+      .navbar.is-success .navbar-end .navbar-link {
+        color: #fff; }
+      .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active,
+      .navbar.is-success .navbar-start .navbar-link:focus,
+      .navbar.is-success .navbar-start .navbar-link:hover,
+      .navbar.is-success .navbar-start .navbar-link.is-active,
+      .navbar.is-success .navbar-end > a.navbar-item:focus,
+      .navbar.is-success .navbar-end > a.navbar-item:hover,
+      .navbar.is-success .navbar-end > a.navbar-item.is-active,
+      .navbar.is-success .navbar-end .navbar-link:focus,
+      .navbar.is-success .navbar-end .navbar-link:hover,
+      .navbar.is-success .navbar-end .navbar-link.is-active {
+        background-color: #3a7400;
+        color: #fff; }
+      .navbar.is-success .navbar-start .navbar-link::after,
+      .navbar.is-success .navbar-end .navbar-link::after {
+        border-color: #fff; }
+      .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #3a7400;
+        color: #fff; }
+      .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
+        background-color: #478D00;
+        color: #fff; } }
+  .navbar.is-warning {
+    background-color: #ffdd57;
+    color: rgba(0, 0, 0, 0.7); }
+    .navbar.is-warning .navbar-brand > .navbar-item,
+    .navbar.is-warning .navbar-brand .navbar-link {
+      color: rgba(0, 0, 0, 0.7); }
+    .navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-warning .navbar-brand .navbar-link:focus,
+    .navbar.is-warning .navbar-brand .navbar-link:hover,
+    .navbar.is-warning .navbar-brand .navbar-link.is-active {
+      background-color: #ffd83d;
+      color: rgba(0, 0, 0, 0.7); }
+    .navbar.is-warning .navbar-brand .navbar-link::after {
+      border-color: rgba(0, 0, 0, 0.7); }
+    .navbar.is-warning .navbar-burger {
+      color: rgba(0, 0, 0, 0.7); }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-warning .navbar-start > .navbar-item,
+      .navbar.is-warning .navbar-start .navbar-link,
+      .navbar.is-warning .navbar-end > .navbar-item,
+      .navbar.is-warning .navbar-end .navbar-link {
+        color: rgba(0, 0, 0, 0.7); }
+      .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active,
+      .navbar.is-warning .navbar-start .navbar-link:focus,
+      .navbar.is-warning .navbar-start .navbar-link:hover,
+      .navbar.is-warning .navbar-start .navbar-link.is-active,
+      .navbar.is-warning .navbar-end > a.navbar-item:focus,
+      .navbar.is-warning .navbar-end > a.navbar-item:hover,
+      .navbar.is-warning .navbar-end > a.navbar-item.is-active,
+      .navbar.is-warning .navbar-end .navbar-link:focus,
+      .navbar.is-warning .navbar-end .navbar-link:hover,
+      .navbar.is-warning .navbar-end .navbar-link.is-active {
+        background-color: #ffd83d;
+        color: rgba(0, 0, 0, 0.7); }
+      .navbar.is-warning .navbar-start .navbar-link::after,
+      .navbar.is-warning .navbar-end .navbar-link::after {
+        border-color: rgba(0, 0, 0, 0.7); }
+      .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #ffd83d;
+        color: rgba(0, 0, 0, 0.7); }
+      .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
+        background-color: #ffdd57;
+        color: rgba(0, 0, 0, 0.7); } }
+  .navbar.is-danger {
+    background-color: #a70c20;
+    color: #fff; }
+    .navbar.is-danger .navbar-brand > .navbar-item,
+    .navbar.is-danger .navbar-brand .navbar-link {
+      color: #fff; }
+    .navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active,
+    .navbar.is-danger .navbar-brand .navbar-link:focus,
+    .navbar.is-danger .navbar-brand .navbar-link:hover,
+    .navbar.is-danger .navbar-brand .navbar-link.is-active {
+      background-color: #8f0a1b;
+      color: #fff; }
+    .navbar.is-danger .navbar-brand .navbar-link::after {
+      border-color: #fff; }
+    .navbar.is-danger .navbar-burger {
+      color: #fff; }
+    @media screen and (min-width: 181.5px) {
+      .navbar.is-danger .navbar-start > .navbar-item,
+      .navbar.is-danger .navbar-start .navbar-link,
+      .navbar.is-danger .navbar-end > .navbar-item,
+      .navbar.is-danger .navbar-end .navbar-link {
+        color: #fff; }
+      .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active,
+      .navbar.is-danger .navbar-start .navbar-link:focus,
+      .navbar.is-danger .navbar-start .navbar-link:hover,
+      .navbar.is-danger .navbar-start .navbar-link.is-active,
+      .navbar.is-danger .navbar-end > a.navbar-item:focus,
+      .navbar.is-danger .navbar-end > a.navbar-item:hover,
+      .navbar.is-danger .navbar-end > a.navbar-item.is-active,
+      .navbar.is-danger .navbar-end .navbar-link:focus,
+      .navbar.is-danger .navbar-end .navbar-link:hover,
+      .navbar.is-danger .navbar-end .navbar-link.is-active {
+        background-color: #8f0a1b;
+        color: #fff; }
+      .navbar.is-danger .navbar-start .navbar-link::after,
+      .navbar.is-danger .navbar-end .navbar-link::after {
+        border-color: #fff; }
+      .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,
+      .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
+      .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
+        background-color: #8f0a1b;
+        color: #fff; }
+      .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
+        background-color: #a70c20;
+        color: #fff; } }
+  .navbar > .container {
+    -webkit-box-align: stretch;
+    -ms-flex-align: stretch;
+    align-items: stretch;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    min-height: 3.25rem;
+    width: 100%; }
+  .navbar.has-shadow {
+    -webkit-box-shadow: 0 2px 0 0 whitesmoke;
+    box-shadow: 0 2px 0 0 whitesmoke; }
+  .navbar.is-fixed-bottom, .navbar.is-fixed-top {
+    left: 0;
+    position: fixed;
+    right: 0;
+    z-index: 30; }
+  .navbar.is-fixed-bottom {
+    bottom: 0; }
+    .navbar.is-fixed-bottom.has-shadow {
+      -webkit-box-shadow: 0 -2px 0 0 whitesmoke;
+      box-shadow: 0 -2px 0 0 whitesmoke; }
+  .navbar.is-fixed-top {
+    top: 0; }
 
 html.has-navbar-fixed-top,
 body.has-navbar-fixed-top {
-  padding-top: var(--bulma-navbar-height);
-}
+  padding-top: 3.25rem; }
+
 html.has-navbar-fixed-bottom,
 body.has-navbar-fixed-bottom {
-  padding-bottom: var(--bulma-navbar-height);
-}
+  padding-bottom: 3.25rem; }
 
 .navbar-brand,
 .navbar-tabs {
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -ms-flex-negative: 0;
   flex-shrink: 0;
-  min-height: var(--bulma-navbar-height);
-}
+  min-height: 3.25rem; }
+
+.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover {
+  background-color: transparent; }
 
 .navbar-tabs {
   -webkit-overflow-scrolling: touch;
   max-width: 100vw;
   overflow-x: auto;
-  overflow-y: hidden;
-}
+  overflow-y: hidden; }
 
 .navbar-burger {
-  align-items: center;
-  appearance: none;
-  background: none;
-  border: none;
-  border-radius: var(--bulma-burger-border-radius);
-  color: hsl(var(--bulma-burger-h), var(--bulma-burger-s), var(--bulma-burger-l));
+  color: #4a4a4a;
   cursor: pointer;
-  display: inline-flex;
-  flex-direction: column;
-  flex-shrink: 0;
-  height: 2.5rem;
-  justify-content: center;
-  position: relative;
-  vertical-align: top;
-  width: 2.5rem;
-}
-.navbar-burger span {
-  background-color: currentColor;
   display: block;
-  height: var(--bulma-burger-item-height);
-  left: calc(50% - (var(--bulma-burger-item-width)) / 2);
-  position: absolute;
-  transform-origin: center;
-  transition-duration: var(--bulma-duration);
-  transition-property: background-color, color, opacity, transform;
-  transition-timing-function: var(--bulma-easing);
-  width: var(--bulma-burger-item-width);
-}
-.navbar-burger span:nth-child(1), .navbar-burger span:nth-child(2) {
-  top: calc(50% - (var(--bulma-burger-item-height)) / 2);
-}
-.navbar-burger span:nth-child(3) {
-  bottom: calc(50% + var(--bulma-burger-gap));
-}
-.navbar-burger span:nth-child(4) {
-  top: calc(50% + var(--bulma-burger-gap));
-}
-.navbar-burger:hover {
-  background-color: hsla(var(--bulma-burger-h), var(--bulma-burger-s), var(--bulma-burger-l), 0.1);
-}
-.navbar-burger:active {
-  background-color: hsla(var(--bulma-burger-h), var(--bulma-burger-s), var(--bulma-burger-l), 0.2);
-}
-.navbar-burger.is-active span:nth-child(1) {
-  transform: rotate(-45deg);
-}
-.navbar-burger.is-active span:nth-child(2) {
-  transform: rotate(45deg);
-}
-.navbar-burger.is-active span:nth-child(3), .navbar-burger.is-active span:nth-child(4) {
-  opacity: 0;
-}
-.navbar-burger {
-  align-self: center;
-  color: var(--bulma-navbar-burger-color);
-  margin-inline-start: auto;
-  margin-inline-end: 0.375rem;
-}
+  height: 3.25rem;
+  position: relative;
+  width: 3.25rem;
+  margin-left: auto; }
+  .navbar-burger span {
+    background-color: currentColor;
+    display: block;
+    height: 1px;
+    left: calc(50% - 8px);
+    position: absolute;
+    -webkit-transform-origin: center;
+    -ms-transform-origin: center;
+    transform-origin: center;
+    -webkit-transition-duration: 86ms;
+    -o-transition-duration: 86ms;
+    transition-duration: 86ms;
+    -webkit-transition-property: background-color, opacity, -webkit-transform;
+    transition-property: background-color, opacity, -webkit-transform;
+    -o-transition-property: background-color, opacity, transform;
+    transition-property: background-color, opacity, transform;
+    transition-property: background-color, opacity, transform, -webkit-transform;
+    -webkit-transition-timing-function: ease-out;
+    -o-transition-timing-function: ease-out;
+    transition-timing-function: ease-out;
+    width: 16px; }
+    .navbar-burger span:nth-child(1) {
+      top: calc(50% - 6px); }
+    .navbar-burger span:nth-child(2) {
+      top: calc(50% - 1px); }
+    .navbar-burger span:nth-child(3) {
+      top: calc(50% + 4px); }
+  .navbar-burger:hover {
+    background-color: rgba(0, 0, 0, 0.05); }
+  .navbar-burger.is-active span:nth-child(1) {
+    -webkit-transform: translateY(5px) rotate(45deg);
+    -ms-transform: translateY(5px) rotate(45deg);
+    transform: translateY(5px) rotate(45deg); }
+  .navbar-burger.is-active span:nth-child(2) {
+    opacity: 0; }
+  .navbar-burger.is-active span:nth-child(3) {
+    -webkit-transform: translateY(-5px) rotate(-45deg);
+    -ms-transform: translateY(-5px) rotate(-45deg);
+    transform: translateY(-5px) rotate(-45deg); }
 
 .navbar-menu {
-  display: none;
-}
+  display: none; }
 
 .navbar-item,
 .navbar-link {
-  color: var(--bulma-navbar-item-color);
+  color: #4a4a4a;
   display: block;
-  gap: 0.75rem;
   line-height: 1.5;
   padding: 0.5rem 0.75rem;
-  position: relative;
-}
-.navbar-item .icon:only-child,
-.navbar-link .icon:only-child {
-  margin-left: -0.25rem;
-  margin-right: -0.25rem;
-}
+  position: relative; }
+  .navbar-item .icon:only-child,
+  .navbar-link .icon:only-child {
+    margin-left: -0.25rem;
+    margin-right: -0.25rem; }
 
 a.navbar-item,
 .navbar-link {
-  background-color: hsla(var(--bulma-navbar-h), var(--bulma-navbar-s), calc(var(--bulma-navbar-item-background-l) + var(--bulma-navbar-item-background-l-delta)), var(--bulma-navbar-item-background-a));
-  cursor: pointer;
-}
-a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover,
-.navbar-link:focus,
-.navbar-link:focus-within,
-.navbar-link:hover {
-  --bulma-navbar-item-background-l-delta: var(--bulma-navbar-item-hover-background-l-delta);
-  --bulma-navbar-item-background-a: 1;
-}
-a.navbar-item:active,
-.navbar-link:active {
-  --bulma-navbar-item-background-l-delta: var(--bulma-navbar-item-active-background-l-delta);
-  --bulma-navbar-item-background-a: 1;
-}
-a.navbar-item.is-active, a.navbar-item.is-selected,
-.navbar-link.is-active,
-.navbar-link.is-selected {
-  --bulma-navbar-h: var(--bulma-navbar-item-selected-h);
-  --bulma-navbar-s: var(--bulma-navbar-item-selected-s);
-  --bulma-navbar-l: var(--bulma-navbar-item-selected-l);
-  --bulma-navbar-item-background-l: var(--bulma-navbar-item-selected-background-l);
-  --bulma-navbar-item-background-a: 1;
-  --bulma-navbar-item-color-l: var(--bulma-navbar-item-selected-color-l);
-}
+  cursor: pointer; }
+  a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active,
+  .navbar-link:focus,
+  .navbar-link:focus-within,
+  .navbar-link:hover,
+  .navbar-link.is-active {
+    background-color: #fafafa;
+    color: #4391E0; }
 
 .navbar-item {
+  display: block;
+  -webkit-box-flex: 0;
+  -ms-flex-positive: 0;
   flex-grow: 0;
-  flex-shrink: 0;
-}
-.navbar-item img,
-.navbar-item svg {
-  max-height: var(--bulma-navbar-item-img-max-height);
-}
-.navbar-item.has-dropdown {
-  padding: 0;
-}
-.navbar-item.is-expanded {
-  flex-grow: 1;
-  flex-shrink: 1;
-}
-.navbar-item.is-tab {
-  border-bottom: 1px solid transparent;
-  min-height: var(--bulma-navbar-height);
-  padding-bottom: calc(0.5rem - 1px);
-}
-.navbar-item.is-tab:focus, .navbar-item.is-tab:hover {
-  background-color: var(--bulma-navbar-tab-hover-background-color);
-  border-bottom-color: var(--bulma-navbar-tab-hover-border-bottom-color);
-}
-.navbar-item.is-tab.is-active {
-  background-color: var(--bulma-navbar-tab-active-background-color);
-  border-bottom-color: var(--bulma-navbar-tab-active-border-bottom-color);
-  border-bottom-style: var(--bulma-navbar-tab-active-border-bottom-style);
-  border-bottom-width: var(--bulma-navbar-tab-active-border-bottom-width);
-  color: var(--bulma-navbar-tab-active-color);
-  padding-bottom: calc(0.5rem - var(--bulma-navbar-tab-active-border-bottom-width));
-}
+  -ms-flex-negative: 0;
+  flex-shrink: 0; }
+  .navbar-item img {
+    max-height: 1.75rem; }
+  .navbar-item.has-dropdown {
+    padding: 0; }
+  .navbar-item.is-expanded {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 1;
+    flex-shrink: 1; }
+  .navbar-item.is-tab {
+    border-bottom: 1px solid transparent;
+    min-height: 3.25rem;
+    padding-bottom: calc(0.5rem - 1px); }
+    .navbar-item.is-tab:focus, .navbar-item.is-tab:hover {
+      background-color: transparent;
+      border-bottom-color: #4391E0; }
+    .navbar-item.is-tab.is-active {
+      background-color: transparent;
+      border-bottom-color: #4391E0;
+      border-bottom-style: solid;
+      border-bottom-width: 3px;
+      color: #4391E0;
+      padding-bottom: calc(0.5rem - 3px); }
 
 .navbar-content {
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
-  flex-shrink: 1;
-}
+  -ms-flex-negative: 1;
+  flex-shrink: 1; }
 
 .navbar-link:not(.is-arrowless) {
-  padding-inline-end: 2.5em;
-}
-.navbar-link:not(.is-arrowless)::after {
-  border-color: var(--bulma-navbar-dropdown-arrow);
-  margin-top: -0.375em;
-  inset-inline-end: 1.125em;
-}
+  padding-right: 2.5em; }
+  .navbar-link:not(.is-arrowless)::after {
+    border-color: #4391E0;
+    margin-top: -0.375em;
+    right: 1.125em; }
 
 .navbar-dropdown {
   font-size: 0.875rem;
-  padding-bottom: 0.75rem;
-  padding-top: 0.5rem;
-}
-.navbar-dropdown .navbar-item {
-  padding-left: 1.5rem;
-  padding-right: 1.5rem;
-}
-.navbar-dropdown .navbar-item:not(.is-active, .is-selected) {
-  background-color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), calc(var(--bulma-navbar-dropdown-item-background-l) + var(--bulma-navbar-item-background-l-delta)));
-  color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), var(--bulma-navbar-dropdown-item-color-l));
-}
+  padding-bottom: 0.5rem;
+  padding-top: 0.5rem; }
+  .navbar-dropdown .navbar-item {
+    padding-left: 1.5rem;
+    padding-right: 1.5rem; }
 
 .navbar-divider {
-  background-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), var(--bulma-navbar-divider-background-l));
+  background-color: whitesmoke;
   border: none;
   display: none;
-  height: var(--bulma-navbar-divider-height);
-  margin: 0.5rem 0;
-}
+  height: 2px;
+  margin: 0.5rem 0; }
 
-@media screen and (max-width: 1023px) {
+@media screen and (max-width: 180.5px) {
   .navbar > .container {
-    display: block;
-  }
+    display: block; }
   .navbar-brand .navbar-item,
   .navbar-tabs .navbar-item {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
     align-items: center;
-    display: flex;
-  }
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
   .navbar-link::after {
-    display: none;
-  }
+    display: none; }
   .navbar-menu {
-    background-color: var(--bulma-navbar-background-color);
-    box-shadow: 0 0.5em 1em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
-    padding: 0.5rem 0;
-  }
-  .navbar-menu.is-active {
-    display: block;
-  }
+    background-color: white;
+    -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
+    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
+    padding: 0.5rem 0; }
+    .navbar-menu.is-active {
+      display: block; }
   .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
     left: 0;
     position: fixed;
     right: 0;
-    z-index: var(--bulma-navbar-fixed-z);
-  }
+    z-index: 30; }
   .navbar.is-fixed-bottom-touch {
-    bottom: 0;
-  }
-  .navbar.is-fixed-bottom-touch.has-shadow {
-    box-shadow: 0 -0.125em 0.1875em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
-  }
+    bottom: 0; }
+    .navbar.is-fixed-bottom-touch.has-shadow {
+      -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
+      box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); }
   .navbar.is-fixed-top-touch {
-    top: 0;
-  }
+    top: 0; }
   .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
     -webkit-overflow-scrolling: touch;
-    max-height: calc(100vh - var(--bulma-navbar-height));
-    overflow: auto;
-  }
+    max-height: calc(100vh - 3.25rem);
+    overflow: auto; }
   html.has-navbar-fixed-top-touch,
   body.has-navbar-fixed-top-touch {
-    padding-top: var(--bulma-navbar-height);
-  }
+    padding-top: 3.25rem; }
   html.has-navbar-fixed-bottom-touch,
   body.has-navbar-fixed-bottom-touch {
-    padding-bottom: var(--bulma-navbar-height);
-  }
-}
-@media screen and (min-width: 1024px) {
+    padding-bottom: 3.25rem; } }
+
+@media screen and (min-width: 181.5px) {
   .navbar,
   .navbar-menu,
   .navbar-start,
   .navbar-end {
+    -webkit-box-align: stretch;
+    -ms-flex-align: stretch;
     align-items: stretch;
-    display: flex;
-  }
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
   .navbar {
-    min-height: var(--bulma-navbar-height);
-  }
-  .navbar.is-spaced {
-    padding: var(--bulma-navbar-padding-vertical) var(--bulma-navbar-padding-horizontal);
-  }
-  .navbar.is-spaced .navbar-start,
-  .navbar.is-spaced .navbar-end {
-    align-items: center;
-  }
-  .navbar.is-spaced a.navbar-item,
-  .navbar.is-spaced .navbar-link {
-    border-radius: var(--bulma-radius);
-  }
-  .navbar.is-transparent {
-    --bulma-navbar-item-background-a: 0;
-  }
-  .navbar.is-transparent .navbar-dropdown a.navbar-item {
-    background-color: hsl(var(--bulma-navbar-h), var(--bulma-navbar-s), calc(var(--bulma-navbar-item-background-l) + var(--bulma-navbar-item-background-l-delta)));
-  }
-  .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active, .navbar.is-transparent .navbar-dropdown a.navbar-item.is-selected {
-    --bulma-navbar-h: var(--bulma-navbar-item-selected-h);
-    --bulma-navbar-s: var(--bulma-navbar-item-selected-s);
-    --bulma-navbar-l: var(--bulma-navbar-item-selected-l);
-    --bulma-navbar-item-background-l: var(--bulma-navbar-item-selected-background-l);
-    --bulma-navbar-item-color-l: var(--bulma-navbar-item-selected-color-l);
-  }
+    min-height: 3.25rem; }
+    .navbar.is-spaced {
+      padding: 1rem 2rem; }
+      .navbar.is-spaced .navbar-start,
+      .navbar.is-spaced .navbar-end {
+        -webkit-box-align: center;
+        -ms-flex-align: center;
+        align-items: center; }
+      .navbar.is-spaced a.navbar-item,
+      .navbar.is-spaced .navbar-link {
+        border-radius: 4px; }
+    .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
+    .navbar.is-transparent .navbar-link:focus,
+    .navbar.is-transparent .navbar-link:hover,
+    .navbar.is-transparent .navbar-link.is-active {
+      background-color: transparent !important; }
+    .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
+      background-color: transparent !important; }
+    .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
+      background-color: whitesmoke;
+      color: #0a0a0a; }
+    .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
+      background-color: whitesmoke;
+      color: #4391E0; }
   .navbar-burger {
-    display: none;
-  }
+    display: none; }
   .navbar-item,
   .navbar-link {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
     align-items: center;
-    display: flex;
-  }
-  .navbar-item.has-dropdown {
-    align-items: stretch;
-  }
-  .navbar-item.has-dropdown-up .navbar-link::after {
-    transform: rotate(135deg) translate(0.25em, -0.25em);
-  }
-  .navbar-item.has-dropdown-up .navbar-dropdown {
-    border-bottom-color: var(--bulma-navbar-dropdown-border-color);
-    border-bottom-style: var(--bulma-navbar-dropdown-border-style);
-    border-bottom-width: var(--bulma-navbar-dropdown-border-width);
-    border-radius: var(--bulma-navbar-dropdown-radius) var(--bulma-navbar-dropdown-radius) 0 0;
-    border-top: none;
-    bottom: 100%;
-    box-shadow: 0 -0.5em 0.5em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
-    top: auto;
-  }
-  .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
-    display: block;
-  }
-  .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
-    opacity: 1;
-    pointer-events: auto;
-    transform: translateY(0);
-  }
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
+  .navbar-item {
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
+    .navbar-item.has-dropdown {
+      -webkit-box-align: stretch;
+      -ms-flex-align: stretch;
+      align-items: stretch; }
+    .navbar-item.has-dropdown-up .navbar-link::after {
+      -webkit-transform: rotate(135deg) translate(0.25em, -0.25em);
+      -ms-transform: rotate(135deg) translate(0.25em, -0.25em);
+      transform: rotate(135deg) translate(0.25em, -0.25em); }
+    .navbar-item.has-dropdown-up .navbar-dropdown {
+      border-bottom: 2px solid #dbdbdb;
+      border-radius: 6px 6px 0 0;
+      border-top: none;
+      bottom: 100%;
+      -webkit-box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
+      box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
+      top: auto; }
+    .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
+      display: block; }
+      .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
+        opacity: 1;
+        pointer-events: auto;
+        -webkit-transform: translateY(0);
+        -ms-transform: translateY(0);
+        transform: translateY(0); }
   .navbar-menu {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
     flex-grow: 1;
-    flex-shrink: 0;
-  }
+    -ms-flex-negative: 0;
+    flex-shrink: 0; }
   .navbar-start {
+    -webkit-box-pack: start;
+    -ms-flex-pack: start;
     justify-content: flex-start;
-    margin-inline-end: auto;
-  }
+    margin-right: auto; }
   .navbar-end {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
     justify-content: flex-end;
-    margin-inline-start: auto;
-  }
+    margin-left: auto; }
   .navbar-dropdown {
-    background-color: var(--bulma-navbar-dropdown-background-color);
-    border-end-start-radius: var(--bulma-navbar-dropdown-radius);
-    border-end-end-radius: var(--bulma-navbar-dropdown-radius);
-    border-top-color: var(--bulma-navbar-dropdown-border-color);
-    border-top-style: var(--bulma-navbar-dropdown-border-style);
-    border-top-width: var(--bulma-navbar-dropdown-border-width);
-    box-shadow: 0 0.5em 0.5em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
+    background-color: white;
+    border-bottom-left-radius: 6px;
+    border-bottom-right-radius: 6px;
+    border-top: 2px solid #dbdbdb;
+    -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
+    box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
     display: none;
     font-size: 0.875rem;
-    inset-inline-start: 0;
+    left: 0;
     min-width: 100%;
     position: absolute;
     top: 100%;
-    z-index: var(--bulma-navbar-dropdown-z);
-  }
-  .navbar-dropdown .navbar-item {
-    padding: 0.375rem 1rem;
-    white-space: nowrap;
-  }
-  .navbar-dropdown a.navbar-item {
-    padding-inline-end: 3rem;
-  }
-  .navbar-dropdown a.navbar-item:not(.is-active, .is-selected) {
-    background-color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), calc(var(--bulma-navbar-dropdown-item-background-l) + var(--bulma-navbar-item-background-l-delta)));
-    color: hsl(var(--bulma-navbar-dropdown-item-h), var(--bulma-navbar-dropdown-item-s), var(--bulma-navbar-dropdown-item-color-l));
-  }
-  .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
-    border-radius: var(--bulma-navbar-dropdown-boxed-radius);
-    border-top: none;
-    box-shadow: var(--bulma-navbar-dropdown-boxed-shadow);
-    display: block;
-    opacity: 0;
-    pointer-events: none;
-    top: calc(100% + (var(--bulma-navbar-dropdown-offset)));
-    transform: translateY(-5px);
-    transition-duration: var(--bulma-duration);
-    transition-property: opacity, transform;
-  }
-  .navbar-dropdown.is-right {
-    left: auto;
-    right: 0;
-  }
+    z-index: 20; }
+    .navbar-dropdown .navbar-item {
+      padding: 0.375rem 1rem;
+      white-space: nowrap; }
+    .navbar-dropdown a.navbar-item {
+      padding-right: 3rem; }
+      .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
+        background-color: whitesmoke;
+        color: #0a0a0a; }
+      .navbar-dropdown a.navbar-item.is-active {
+        background-color: whitesmoke;
+        color: #4391E0; }
+    .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
+      border-radius: 6px;
+      border-top: none;
+      -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+      box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+      display: block;
+      opacity: 0;
+      pointer-events: none;
+      top: calc(100% + (-4px));
+      -webkit-transform: translateY(-5px);
+      -ms-transform: translateY(-5px);
+      transform: translateY(-5px);
+      -webkit-transition-duration: 86ms;
+      -o-transition-duration: 86ms;
+      transition-duration: 86ms;
+      -webkit-transition-property: opacity, -webkit-transform;
+      transition-property: opacity, -webkit-transform;
+      -o-transition-property: opacity, transform;
+      transition-property: opacity, transform;
+      transition-property: opacity, transform, -webkit-transform; }
+    .navbar-dropdown.is-right {
+      left: auto;
+      right: 0; }
   .navbar-divider {
-    display: block;
-  }
+    display: block; }
   .navbar > .container .navbar-brand,
   .container > .navbar .navbar-brand {
-    margin-inline-start: -0.75rem;
-  }
+    margin-left: -.75rem; }
   .navbar > .container .navbar-menu,
   .container > .navbar .navbar-menu {
-    margin-inline-end: -0.75rem;
-  }
+    margin-right: -.75rem; }
   .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
     left: 0;
     position: fixed;
     right: 0;
-    z-index: var(--bulma-navbar-fixed-z);
-  }
+    z-index: 30; }
   .navbar.is-fixed-bottom-desktop {
-    bottom: 0;
-  }
-  .navbar.is-fixed-bottom-desktop.has-shadow {
-    box-shadow: 0 -0.125em 0.1875em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
-  }
+    bottom: 0; }
+    .navbar.is-fixed-bottom-desktop.has-shadow {
+      -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
+      box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); }
   .navbar.is-fixed-top-desktop {
-    top: 0;
-  }
+    top: 0; }
   html.has-navbar-fixed-top-desktop,
   body.has-navbar-fixed-top-desktop {
-    padding-top: var(--bulma-navbar-height);
-  }
+    padding-top: 3.25rem; }
   html.has-navbar-fixed-bottom-desktop,
   body.has-navbar-fixed-bottom-desktop {
-    padding-bottom: var(--bulma-navbar-height);
-  }
+    padding-bottom: 3.25rem; }
   html.has-spaced-navbar-fixed-top,
   body.has-spaced-navbar-fixed-top {
-    padding-top: calc(var(--bulma-navbar-height) + var(--bulma-navbar-padding-vertical) * 2);
-  }
+    padding-top: 5.25rem; }
   html.has-spaced-navbar-fixed-bottom,
   body.has-spaced-navbar-fixed-bottom {
-    padding-bottom: calc(var(--bulma-navbar-height) + var(--bulma-navbar-padding-vertical) * 2);
-  }
-}
+    padding-bottom: 5.25rem; }
+  a.navbar-item.is-active,
+  .navbar-link.is-active {
+    color: #0a0a0a; }
+  a.navbar-item.is-active:not(:focus):not(:hover),
+  .navbar-link.is-active:not(:focus):not(:hover) {
+    background-color: transparent; }
+  .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
+    background-color: #fafafa; } }
+
 .hero.is-fullheight-with-navbar {
-  min-height: calc(100vh - var(--bulma-navbar-height));
-}
+  min-height: calc(100vh - 3.25rem); }
 
 .pagination {
-  --bulma-pagination-margin: -0.25rem;
-  --bulma-pagination-min-width: var(--bulma-control-height);
-  --bulma-pagination-item-h: var(--bulma-scheme-h);
-  --bulma-pagination-item-s: var(--bulma-scheme-s);
-  --bulma-pagination-item-l: var(--bulma-scheme-main-l);
-  --bulma-pagination-item-background-l-delta: 0%;
-  --bulma-pagination-item-hover-background-l-delta: var(--bulma-hover-background-l-delta);
-  --bulma-pagination-item-active-background-l-delta: var(--bulma-active-background-l-delta);
-  --bulma-pagination-item-border-style: solid;
-  --bulma-pagination-item-border-width: var(--bulma-control-border-width);
-  --bulma-pagination-item-border-l: var(--bulma-border-l);
-  --bulma-pagination-item-border-l-delta: 0%;
-  --bulma-pagination-item-hover-border-l-delta: var(--bulma-hover-border-l-delta);
-  --bulma-pagination-item-active-border-l-delta: var(--bulma-active-border-l-delta);
-  --bulma-pagination-item-focus-border-l-delta: var(--bulma-focus-border-l-delta);
-  --bulma-pagination-item-color-l: var(--bulma-text-strong-l);
-  --bulma-pagination-item-font-size: 1em;
-  --bulma-pagination-item-margin: 0.25rem;
-  --bulma-pagination-item-padding-left: 0.5em;
-  --bulma-pagination-item-padding-right: 0.5em;
-  --bulma-pagination-item-outer-shadow-h: 0;
-  --bulma-pagination-item-outer-shadow-s: 0%;
-  --bulma-pagination-item-outer-shadow-l: 20%;
-  --bulma-pagination-item-outer-shadow-a: 0.05;
-  --bulma-pagination-nav-padding-left: 0.75em;
-  --bulma-pagination-nav-padding-right: 0.75em;
-  --bulma-pagination-disabled-color: var(--bulma-text-weak);
-  --bulma-pagination-disabled-background-color: var(--bulma-border);
-  --bulma-pagination-disabled-border-color: var(--bulma-border);
-  --bulma-pagination-current-color: var(--bulma-link-invert);
-  --bulma-pagination-current-background-color: var(--bulma-link);
-  --bulma-pagination-current-border-color: var(--bulma-link);
-  --bulma-pagination-ellipsis-color: var(--bulma-text-weak);
-  --bulma-pagination-shadow-inset: inset 0 0.0625em 0.125em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.2);
-  --bulma-pagination-selected-item-h: var(--bulma-link-h);
-  --bulma-pagination-selected-item-s: var(--bulma-link-s);
-  --bulma-pagination-selected-item-l: var(--bulma-link-l);
-  --bulma-pagination-selected-item-background-l: var(--bulma-link-l);
-  --bulma-pagination-selected-item-border-l: var(--bulma-link-l);
-  --bulma-pagination-selected-item-color-l: var(--bulma-link-invert-l);
-}
-
-.pagination {
-  font-size: var(--bulma-size-normal);
-  margin: var(--bulma-pagination-margin);
-}
-.pagination.is-small {
-  font-size: var(--bulma-size-small);
-}
-.pagination.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.pagination.is-large {
-  font-size: var(--bulma-size-large);
-}
-.pagination.is-rounded .pagination-previous,
-.pagination.is-rounded .pagination-next {
-  padding-left: 1em;
-  padding-right: 1em;
-  border-radius: var(--bulma-radius-rounded);
-}
-.pagination.is-rounded .pagination-link {
-  border-radius: var(--bulma-radius-rounded);
-}
+  font-size: 1rem;
+  margin: -0.25rem; }
+  .pagination.is-small {
+    font-size: 0.75rem; }
+  .pagination.is-medium {
+    font-size: 1.25rem; }
+  .pagination.is-large {
+    font-size: 1.5rem; }
+  .pagination.is-rounded .pagination-previous,
+  .pagination.is-rounded .pagination-next {
+    padding-left: 1em;
+    padding-right: 1em;
+    border-radius: 290486px; }
+  .pagination.is-rounded .pagination-link {
+    border-radius: 290486px; }
 
 .pagination,
 .pagination-list {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  text-align: center;
-}
+  text-align: center; }
 
 .pagination-previous,
 .pagination-next,
 .pagination-link,
 .pagination-ellipsis {
-  color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), var(--bulma-pagination-item-color-l));
-  font-size: var(--bulma-pagination-item-font-size);
+  font-size: 1em;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
   justify-content: center;
-  margin: var(--bulma-pagination-item-margin);
-  padding-left: var(--bulma-pagination-item-padding-left);
-  padding-right: var(--bulma-pagination-item-padding-right);
-  text-align: center;
-}
+  margin: 0.25rem;
+  padding-left: 0.5em;
+  padding-right: 0.5em;
+  text-align: center; }
 
 .pagination-previous,
 .pagination-next,
 .pagination-link {
-  background-color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), calc(var(--bulma-pagination-item-background-l) + var(--bulma-pagination-item-background-l-delta)));
-  border-color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), calc(var(--bulma-pagination-item-border-l) + var(--bulma-pagination-item-border-l-delta)));
-  border-style: var(--bulma-pagination-item-border-style);
-  border-width: var(--bulma-pagination-item-border-width);
-  box-shadow: 0px 0.0625em 0.125em hsla(var(--bulma-pagination-item-outer-shadow-h), var(--bulma-pagination-item-outer-shadow-s), var(--bulma-pagination-item-outer-shadow-l), var(--bulma-pagination-item-outer-shadow-a)), 0px 0.125em 0.25em hsla(var(--bulma-pagination-item-outer-shadow-h), var(--bulma-pagination-item-outer-shadow-s), var(--bulma-pagination-item-outer-shadow-l), var(--bulma-pagination-item-outer-shadow-a));
-  color: hsl(var(--bulma-pagination-item-h), var(--bulma-pagination-item-s), var(--bulma-pagination-item-color-l));
-  min-width: var(--bulma-pagination-min-width);
-  transition-duration: var(--bulma-duration);
-  transition-property: background-color, border-color, box-shadow, color;
-}
-.pagination-previous:hover,
-.pagination-next:hover,
-.pagination-link:hover {
-  --bulma-pagination-item-background-l-delta: var(--bulma-pagination-item-hover-background-l-delta);
-  --bulma-pagination-item-border-l-delta: var(--bulma-pagination-item-hover-border-l-delta);
-}
-.pagination-previous:focus,
-.pagination-next:focus,
-.pagination-link:focus {
-  --bulma-pagination-item-background-l-delta: var(--bulma-pagination-item-hover-background-l-delta);
-  --bulma-pagination-item-border-l-delta: var(--bulma-pagination-item-hover-border-l-delta);
-}
-.pagination-previous:active,
-.pagination-next:active,
-.pagination-link:active {
-  box-shadow: var(--bulma-pagination-shadow-inset);
-}
-.pagination-previous[disabled], .pagination-previous.is-disabled,
-.pagination-next[disabled],
-.pagination-next.is-disabled,
-.pagination-link[disabled],
-.pagination-link.is-disabled {
-  background-color: var(--bulma-pagination-disabled-background-color);
-  border-color: var(--bulma-pagination-disabled-border-color);
-  box-shadow: none;
-  color: var(--bulma-pagination-disabled-color);
-  opacity: 0.5;
-}
+  border-color: #dbdbdb;
+  color: #363636;
+  min-width: 2.25em; }
+  .pagination-previous:hover,
+  .pagination-next:hover,
+  .pagination-link:hover {
+    border-color: #b5b5b5;
+    color: #363636; }
+  .pagination-previous:focus,
+  .pagination-next:focus,
+  .pagination-link:focus {
+    border-color: #4391E0; }
+  .pagination-previous:active,
+  .pagination-next:active,
+  .pagination-link:active {
+    -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
+    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); }
+  .pagination-previous[disabled],
+  .pagination-next[disabled],
+  .pagination-link[disabled] {
+    background-color: #dbdbdb;
+    border-color: #dbdbdb;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    color: #7a7a7a;
+    opacity: 0.5; }
 
 .pagination-previous,
 .pagination-next {
-  padding-left: var(--bulma-pagination-nav-padding-left);
-  padding-right: var(--bulma-pagination-nav-padding-right);
-  white-space: nowrap;
-}
+  padding-left: 0.75em;
+  padding-right: 0.75em;
+  white-space: nowrap; }
 
-.pagination-link.is-current, .pagination-link.is-selected {
-  --bulma-pagination-item-h: var(--bulma-pagination-selected-item-h);
-  --bulma-pagination-item-s: var(--bulma-pagination-selected-item-s);
-  --bulma-pagination-item-l: var(--bulma-pagination-selected-item-l);
-  --bulma-pagination-item-background-l: var(--bulma-pagination-selected-item-background-l);
-  --bulma-pagination-item-border-l: var(--bulma-pagination-selected-item-border-l);
-  --bulma-pagination-item-color-l: var(--bulma-pagination-selected-item-color-l);
-}
+.pagination-link.is-current {
+  background-color: #4391E0;
+  border-color: #4391E0;
+  color: #fff; }
 
 .pagination-ellipsis {
-  color: var(--bulma-pagination-ellipsis-color);
-  pointer-events: none;
-}
+  color: #b5b5b5;
+  pointer-events: none; }
 
 .pagination-list {
-  flex-wrap: wrap;
-}
-.pagination-list li {
-  list-style: none;
-}
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap; }
 
 @media screen and (max-width: 768px) {
   .pagination {
-    flex-wrap: wrap;
-  }
+    -ms-flex-wrap: wrap;
+    flex-wrap: wrap; }
   .pagination-previous,
   .pagination-next {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
     flex-grow: 1;
-    flex-shrink: 1;
-  }
+    -ms-flex-negative: 1;
+    flex-shrink: 1; }
   .pagination-list li {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
     flex-grow: 1;
-    flex-shrink: 1;
-  }
-}
+    -ms-flex-negative: 1;
+    flex-shrink: 1; } }
+
 @media screen and (min-width: 769px), print {
   .pagination-list {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
     flex-grow: 1;
+    -ms-flex-negative: 1;
     flex-shrink: 1;
+    -webkit-box-pack: start;
+    -ms-flex-pack: start;
     justify-content: flex-start;
-    order: 1;
-  }
-  .pagination-previous,
-  .pagination-next,
-  .pagination-link,
-  .pagination-ellipsis {
-    margin-bottom: 0;
-    margin-top: 0;
-  }
+    -webkit-box-ordinal-group: 2;
+    -ms-flex-order: 1;
+    order: 1; }
   .pagination-previous {
-    order: 2;
-  }
+    -webkit-box-ordinal-group: 3;
+    -ms-flex-order: 2;
+    order: 2; }
   .pagination-next {
-    order: 3;
-  }
+    -webkit-box-ordinal-group: 4;
+    -ms-flex-order: 3;
+    order: 3; }
   .pagination {
-    justify-content: space-between;
-    margin-bottom: 0;
-    margin-top: 0;
-  }
-  .pagination.is-centered .pagination-previous {
-    order: 1;
-  }
-  .pagination.is-centered .pagination-list {
-    justify-content: center;
-    order: 2;
-  }
-  .pagination.is-centered .pagination-next {
-    order: 3;
-  }
-  .pagination.is-right .pagination-previous {
-    order: 1;
-  }
-  .pagination.is-right .pagination-next {
-    order: 2;
-  }
-  .pagination.is-right .pagination-list {
-    justify-content: flex-end;
-    order: 3;
-  }
-}
-.panel {
-  --bulma-panel-margin: var(--bulma-block-spacing);
-  --bulma-panel-item-border: 1px solid var(--bulma-border-weak);
-  --bulma-panel-radius: var(--bulma-radius-large);
-  --bulma-panel-shadow: var(--bulma-shadow);
-  --bulma-panel-heading-line-height: 1.25;
-  --bulma-panel-heading-padding: 1em 1.25em;
-  --bulma-panel-heading-radius: var(--bulma-radius);
-  --bulma-panel-heading-size: 1.25em;
-  --bulma-panel-heading-weight: var(--bulma-weight-bold);
-  --bulma-panel-tabs-font-size: 1em;
-  --bulma-panel-tab-border-bottom-color: var(--bulma-border);
-  --bulma-panel-tab-border-bottom-style: solid;
-  --bulma-panel-tab-border-bottom-width: 1px;
-  --bulma-panel-tab-active-color: var(--bulma-link-active);
-  --bulma-panel-list-item-color: var(--bulma-text);
-  --bulma-panel-list-item-hover-color: var(--bulma-link);
-  --bulma-panel-block-color: var(--bulma-text-strong);
-  --bulma-panel-block-hover-background-color: var(--bulma-background);
-  --bulma-panel-block-active-border-left-color: var(--bulma-link);
-  --bulma-panel-block-active-color: var(--bulma-link-active);
-  --bulma-panel-block-active-icon-color: var(--bulma-link);
-  --bulma-panel-icon-color: var(--bulma-text-weak);
-}
+    -webkit-box-pack: justify;
+    -ms-flex-pack: justify;
+    justify-content: space-between; }
+    .pagination.is-centered .pagination-previous {
+      -webkit-box-ordinal-group: 2;
+      -ms-flex-order: 1;
+      order: 1; }
+    .pagination.is-centered .pagination-list {
+      -webkit-box-pack: center;
+      -ms-flex-pack: center;
+      justify-content: center;
+      -webkit-box-ordinal-group: 3;
+      -ms-flex-order: 2;
+      order: 2; }
+    .pagination.is-centered .pagination-next {
+      -webkit-box-ordinal-group: 4;
+      -ms-flex-order: 3;
+      order: 3; }
+    .pagination.is-right .pagination-previous {
+      -webkit-box-ordinal-group: 2;
+      -ms-flex-order: 1;
+      order: 1; }
+    .pagination.is-right .pagination-next {
+      -webkit-box-ordinal-group: 3;
+      -ms-flex-order: 2;
+      order: 2; }
+    .pagination.is-right .pagination-list {
+      -webkit-box-pack: end;
+      -ms-flex-pack: end;
+      justify-content: flex-end;
+      -webkit-box-ordinal-group: 4;
+      -ms-flex-order: 3;
+      order: 3; } }
 
 .panel {
-  --bulma-panel-h: var(--bulma-scheme-h);
-  --bulma-panel-s: var(--bulma-scheme-s);
-  --bulma-panel-color-l: var(--bulma-text-l);
-  --bulma-panel-heading-background-l: var(--bulma-text-l);
-  --bulma-panel-heading-color-l: var(--bulma-text-invert-l);
-  border-radius: var(--bulma-panel-radius);
-  box-shadow: var(--bulma-panel-shadow);
-  font-size: var(--bulma-size-normal);
-}
-.panel:not(:last-child) {
-  margin-bottom: var(--bulma-panel-margin);
-}
-.panel.is-white {
-  --bulma-panel-h: var(--bulma-white-h);
-  --bulma-panel-s: var(--bulma-white-s);
-  --bulma-panel-color-l: var(--bulma-white-l);
-  --bulma-panel-heading-background-l: var(--bulma-white-l);
-  --bulma-panel-heading-color-l: var(--bulma-white-invert-l);
-}
-.panel.is-black {
-  --bulma-panel-h: var(--bulma-black-h);
-  --bulma-panel-s: var(--bulma-black-s);
-  --bulma-panel-color-l: var(--bulma-black-l);
-  --bulma-panel-heading-background-l: var(--bulma-black-l);
-  --bulma-panel-heading-color-l: var(--bulma-black-invert-l);
-}
-.panel.is-light {
-  --bulma-panel-h: var(--bulma-light-h);
-  --bulma-panel-s: var(--bulma-light-s);
-  --bulma-panel-color-l: var(--bulma-light-l);
-  --bulma-panel-heading-background-l: var(--bulma-light-l);
-  --bulma-panel-heading-color-l: var(--bulma-light-invert-l);
-}
-.panel.is-dark {
-  --bulma-panel-h: var(--bulma-dark-h);
-  --bulma-panel-s: var(--bulma-dark-s);
-  --bulma-panel-color-l: var(--bulma-dark-l);
-  --bulma-panel-heading-background-l: var(--bulma-dark-l);
-  --bulma-panel-heading-color-l: var(--bulma-dark-invert-l);
-}
-.panel.is-text {
-  --bulma-panel-h: var(--bulma-text-h);
-  --bulma-panel-s: var(--bulma-text-s);
-  --bulma-panel-color-l: var(--bulma-text-l);
-  --bulma-panel-heading-background-l: var(--bulma-text-l);
-  --bulma-panel-heading-color-l: var(--bulma-text-invert-l);
-}
-.panel.is-primary {
-  --bulma-panel-h: var(--bulma-primary-h);
-  --bulma-panel-s: var(--bulma-primary-s);
-  --bulma-panel-color-l: var(--bulma-primary-l);
-  --bulma-panel-heading-background-l: var(--bulma-primary-l);
-  --bulma-panel-heading-color-l: var(--bulma-primary-invert-l);
-}
-.panel.is-link {
-  --bulma-panel-h: var(--bulma-link-h);
-  --bulma-panel-s: var(--bulma-link-s);
-  --bulma-panel-color-l: var(--bulma-link-l);
-  --bulma-panel-heading-background-l: var(--bulma-link-l);
-  --bulma-panel-heading-color-l: var(--bulma-link-invert-l);
-}
-.panel.is-info {
-  --bulma-panel-h: var(--bulma-info-h);
-  --bulma-panel-s: var(--bulma-info-s);
-  --bulma-panel-color-l: var(--bulma-info-l);
-  --bulma-panel-heading-background-l: var(--bulma-info-l);
-  --bulma-panel-heading-color-l: var(--bulma-info-invert-l);
-}
-.panel.is-success {
-  --bulma-panel-h: var(--bulma-success-h);
-  --bulma-panel-s: var(--bulma-success-s);
-  --bulma-panel-color-l: var(--bulma-success-l);
-  --bulma-panel-heading-background-l: var(--bulma-success-l);
-  --bulma-panel-heading-color-l: var(--bulma-success-invert-l);
-}
-.panel.is-warning {
-  --bulma-panel-h: var(--bulma-warning-h);
-  --bulma-panel-s: var(--bulma-warning-s);
-  --bulma-panel-color-l: var(--bulma-warning-l);
-  --bulma-panel-heading-background-l: var(--bulma-warning-l);
-  --bulma-panel-heading-color-l: var(--bulma-warning-invert-l);
-}
-.panel.is-danger {
-  --bulma-panel-h: var(--bulma-danger-h);
-  --bulma-panel-s: var(--bulma-danger-s);
-  --bulma-panel-color-l: var(--bulma-danger-l);
-  --bulma-panel-heading-background-l: var(--bulma-danger-l);
-  --bulma-panel-heading-color-l: var(--bulma-danger-invert-l);
-}
+  font-size: 1rem; }
+  .panel:not(:last-child) {
+    margin-bottom: 1.5rem; }
 
-.panel-tabs:not(:last-child),
-.panel-block:not(:last-child) {
-  border-bottom: var(--bulma-panel-item-border);
-}
+.panel-heading,
+.panel-tabs,
+.panel-block {
+  border-bottom: 1px solid #dbdbdb;
+  border-left: 1px solid #dbdbdb;
+  border-right: 1px solid #dbdbdb; }
+  .panel-heading:first-child,
+  .panel-tabs:first-child,
+  .panel-block:first-child {
+    border-top: 1px solid #dbdbdb; }
 
 .panel-heading {
-  background-color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-heading-background-l));
-  border-radius: var(--bulma-panel-radius) var(--bulma-panel-radius) 0 0;
-  color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-heading-color-l));
-  font-size: var(--bulma-panel-heading-size);
-  font-weight: var(--bulma-panel-heading-weight);
-  line-height: var(--bulma-panel-heading-line-height);
-  padding: var(--bulma-panel-heading-padding);
-}
+  background-color: whitesmoke;
+  border-radius: 4px 4px 0 0;
+  color: #363636;
+  font-size: 1.25em;
+  font-weight: 300;
+  line-height: 1.25;
+  padding: 0.5em 0.75em; }
 
 .panel-tabs {
+  -webkit-box-align: end;
+  -ms-flex-align: end;
   align-items: flex-end;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
-  font-size: var(--bulma-panel-tabs-font-size);
-  justify-content: center;
-}
-.panel-tabs a {
-  border-bottom-color: var(--bulma-panel-tab-border-bottom-color);
-  border-bottom-style: var(--bulma-panel-tab-border-bottom-style);
-  border-bottom-width: var(--bulma-panel-tab-border-bottom-width);
-  margin-bottom: calc(-1 * 1px);
-  padding: 0.75em;
-}
-.panel-tabs a.is-active {
-  border-bottom-color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-color-l));
-  color: var(--bulma-panel-tab-active-color);
-}
+  font-size: 0.875em;
+  -webkit-box-pack: center;
+  -ms-flex-pack: center;
+  justify-content: center; }
+  .panel-tabs a {
+    border-bottom: 1px solid #dbdbdb;
+    margin-bottom: -1px;
+    padding: 0.5em; }
+    .panel-tabs a.is-active {
+      border-bottom-color: #4a4a4a;
+      color: #363636; }
 
 .panel-list a {
-  color: var(--bulma-panel-list-item-color);
-}
-.panel-list a:hover {
-  color: var(--bulma-panel-list-item-hover-color);
-}
+  color: #4a4a4a; }
+  .panel-list a:hover {
+    color: #4391E0; }
 
 .panel-block {
+  -webkit-box-align: center;
+  -ms-flex-align: center;
   align-items: center;
-  color: var(--bulma-panel-block-color);
+  color: #363636;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
+  -webkit-box-pack: start;
+  -ms-flex-pack: start;
   justify-content: flex-start;
-  padding: 0.75em 1em;
-}
-.panel-block input[type=checkbox] {
-  margin-inline-end: 0.75em;
-}
-.panel-block > .control {
-  flex-grow: 1;
-  flex-shrink: 1;
-  width: 100%;
-}
-.panel-block.is-wrapped {
-  flex-wrap: wrap;
-}
-.panel-block.is-active {
-  border-left-color: var(--bulma-panel-block-active-border-left-color);
-  color: var(--bulma-panel-block-active-color);
-}
-.panel-block.is-active .panel-icon {
-  color: hsl(var(--bulma-panel-h), var(--bulma-panel-s), var(--bulma-panel-color-l));
-}
-.panel-block:last-child {
-  border-end-start-radius: var(--bulma-panel-radius);
-  border-end-end-radius: var(--bulma-panel-radius);
-}
+  padding: 0.5em 0.75em; }
+  .panel-block input[type="checkbox"] {
+    margin-right: 0.75em; }
+  .panel-block > .control {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 1;
+    flex-shrink: 1;
+    width: 100%; }
+  .panel-block.is-wrapped {
+    -ms-flex-wrap: wrap;
+    flex-wrap: wrap; }
+  .panel-block.is-active {
+    border-left-color: #4391E0;
+    color: #363636; }
+    .panel-block.is-active .panel-icon {
+      color: #4391E0; }
 
 a.panel-block,
 label.panel-block {
-  cursor: pointer;
-}
-a.panel-block:hover,
-label.panel-block:hover {
-  background-color: var(--bulma-panel-block-hover-background-color);
-}
+  cursor: pointer; }
+  a.panel-block:hover,
+  label.panel-block:hover {
+    background-color: whitesmoke; }
 
 .panel-icon {
   display: inline-block;
-  font-size: 1em;
+  font-size: 14px;
   height: 1em;
   line-height: 1em;
   text-align: center;
   vertical-align: top;
   width: 1em;
-  color: var(--bulma-panel-icon-color);
-  margin-inline-end: 0.75em;
-}
-.panel-icon .fa {
-  font-size: inherit;
-  line-height: inherit;
-}
-
-.tabs {
-  --bulma-tabs-border-bottom-color: var(--bulma-border);
-  --bulma-tabs-border-bottom-style: solid;
-  --bulma-tabs-border-bottom-width: 1px;
-  --bulma-tabs-link-color: var(--bulma-text);
-  --bulma-tabs-link-hover-border-bottom-color: var(--bulma-text-strong);
-  --bulma-tabs-link-hover-color: var(--bulma-text-strong);
-  --bulma-tabs-link-active-border-bottom-color: var(--bulma-link-text);
-  --bulma-tabs-link-active-color: var(--bulma-link-text);
-  --bulma-tabs-link-padding: 0.5em 1em;
-  --bulma-tabs-boxed-link-radius: var(--bulma-radius);
-  --bulma-tabs-boxed-link-hover-background-color: var(--bulma-background);
-  --bulma-tabs-boxed-link-hover-border-bottom-color: var(--bulma-border);
-  --bulma-tabs-boxed-link-active-background-color: var(--bulma-scheme-main);
-  --bulma-tabs-boxed-link-active-border-color: var(--bulma-border);
-  --bulma-tabs-boxed-link-active-border-bottom-color: transparent;
-  --bulma-tabs-toggle-link-border-color: var(--bulma-border);
-  --bulma-tabs-toggle-link-border-style: solid;
-  --bulma-tabs-toggle-link-border-width: 1px;
-  --bulma-tabs-toggle-link-hover-background-color: var(--bulma-background);
-  --bulma-tabs-toggle-link-hover-border-color: var(--bulma-border-hover);
-  --bulma-tabs-toggle-link-radius: var(--bulma-radius);
-  --bulma-tabs-toggle-link-active-background-color: var(--bulma-link);
-  --bulma-tabs-toggle-link-active-border-color: var(--bulma-link);
-  --bulma-tabs-toggle-link-active-color: var(--bulma-link-invert);
-}
+  color: #7a7a7a;
+  margin-right: 0.75em; }
+  .panel-icon .fa {
+    font-size: inherit;
+    line-height: inherit; }
 
 .tabs {
   -webkit-overflow-scrolling: touch;
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
+  display: -webkit-box;
+  display: -ms-flexbox;
   display: flex;
-  font-size: var(--bulma-size-normal);
+  font-size: 1rem;
+  -webkit-box-pack: justify;
+  -ms-flex-pack: justify;
   justify-content: space-between;
   overflow: hidden;
   overflow-x: auto;
-  white-space: nowrap;
-}
-.tabs a {
-  align-items: center;
-  border-bottom-color: var(--bulma-tabs-border-bottom-color);
-  border-bottom-style: var(--bulma-tabs-border-bottom-style);
-  border-bottom-width: var(--bulma-tabs-border-bottom-width);
-  color: var(--bulma-tabs-link-color);
-  display: flex;
-  justify-content: center;
-  margin-bottom: calc(-1 * var(--bulma-tabs-border-bottom-width));
-  padding: var(--bulma-tabs-link-padding);
-  transition-duration: var(--bulma-duration);
-  transition-property: background-color, border-color, color;
-  vertical-align: top;
-}
-.tabs a:hover {
-  border-bottom-color: var(--bulma-tabs-link-hover-border-bottom-color);
-  color: var(--bulma-tabs-link-hover-color);
-}
-.tabs li {
-  display: block;
-}
-.tabs li.is-active a {
-  border-bottom-color: var(--bulma-tabs-link-active-border-bottom-color);
-  color: var(--bulma-tabs-link-active-color);
-}
-.tabs ul {
-  align-items: center;
-  border-bottom-color: var(--bulma-tabs-border-bottom-color);
-  border-bottom-style: var(--bulma-tabs-border-bottom-style);
-  border-bottom-width: var(--bulma-tabs-border-bottom-width);
-  display: flex;
-  flex-grow: 1;
-  flex-shrink: 0;
-  justify-content: flex-start;
-}
-.tabs ul.is-left {
-  padding-right: 0.75em;
-}
-.tabs ul.is-center {
-  flex: none;
-  justify-content: center;
-  padding-left: 0.75em;
-  padding-right: 0.75em;
-}
-.tabs ul.is-right {
-  justify-content: flex-end;
-  padding-left: 0.75em;
-}
-.tabs .icon:first-child {
-  margin-inline-end: 0.5em;
-}
-.tabs .icon:last-child {
-  margin-inline-start: 0.5em;
-}
-.tabs.is-centered ul {
-  justify-content: center;
-}
-.tabs.is-right ul {
-  justify-content: flex-end;
-}
-.tabs.is-boxed a {
-  border: 1px solid transparent;
-  border-start-start-radius: var(--bulma-tabs-boxed-link-radius);
-  border-start-end-radius: var(--bulma-tabs-boxed-link-radius);
-}
-.tabs.is-boxed a:hover {
-  background-color: var(--bulma-tabs-boxed-link-hover-background-color);
-  border-bottom-color: var(--bulma-tabs-boxed-link-hover-border-bottom-color);
-}
-.tabs.is-boxed li.is-active a {
-  background-color: var(--bulma-tabs-boxed-link-active-background-color);
-  border-color: var(--bulma-tabs-boxed-link-active-border-color);
-  border-bottom-color: var(--bulma-tabs-boxed-link-active-border-bottom-color) !important;
-}
-.tabs.is-fullwidth li {
-  flex-grow: 1;
-  flex-shrink: 0;
-}
-.tabs.is-toggle a {
-  border-color: var(--bulma-tabs-toggle-link-border-color);
-  border-style: var(--bulma-tabs-toggle-link-border-style);
-  border-width: var(--bulma-tabs-toggle-link-border-width);
-  margin-bottom: 0;
-  position: relative;
-}
-.tabs.is-toggle a:hover {
-  background-color: var(--bulma-tabs-toggle-link-hover-background-color);
-  border-color: var(--bulma-tabs-toggle-link-hover-border-color);
-  z-index: 2;
-}
-.tabs.is-toggle li + li {
-  margin-inline-start: calc(-1 * var(--bulma-tabs-toggle-link-border-width));
-}
-.tabs.is-toggle li:first-child a {
-  border-start-start-radius: var(--bulma-tabs-toggle-link-radius);
-  border-end-start-radius: var(--bulma-tabs-toggle-link-radius);
-}
-.tabs.is-toggle li:last-child a {
-  border-start-end-radius: var(--bulma-tabs-toggle-link-radius);
-  border-end-end-radius: var(--bulma-tabs-toggle-link-radius);
-}
-.tabs.is-toggle li.is-active a {
-  background-color: var(--bulma-tabs-toggle-link-active-background-color);
-  border-color: var(--bulma-tabs-toggle-link-active-border-color);
-  color: var(--bulma-tabs-toggle-link-active-color);
-  z-index: 1;
-}
-.tabs.is-toggle ul {
-  border-bottom: none;
-}
-.tabs.is-toggle.is-toggle-rounded li:first-child a {
-  border-start-start-radius: var(--bulma-radius-rounded);
-  border-end-start-radius: var(--bulma-radius-rounded);
-  padding-inline-start: 1.25em;
-}
-.tabs.is-toggle.is-toggle-rounded li:last-child a {
-  border-start-end-radius: var(--bulma-radius-rounded);
-  border-end-end-radius: var(--bulma-radius-rounded);
-  padding-inline-end: 1.25em;
-}
-.tabs.is-small {
-  font-size: var(--bulma-size-small);
-}
-.tabs.is-medium {
-  font-size: var(--bulma-size-medium);
-}
-.tabs.is-large {
-  font-size: var(--bulma-size-large);
-}
+  white-space: nowrap; }
+  .tabs a {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
+    align-items: center;
+    border-bottom-color: #dbdbdb;
+    border-bottom-style: solid;
+    border-bottom-width: 1px;
+    color: #4a4a4a;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center;
+    margin-bottom: -1px;
+    padding: 0.5em 1em;
+    vertical-align: top; }
+    .tabs a:hover {
+      border-bottom-color: #363636;
+      color: #363636; }
+  .tabs li {
+    display: block; }
+    .tabs li.is-active a {
+      border-bottom-color: #4391E0;
+      color: #4391E0; }
+  .tabs ul {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
+    align-items: center;
+    border-bottom-color: #dbdbdb;
+    border-bottom-style: solid;
+    border-bottom-width: 1px;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex;
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 0;
+    flex-shrink: 0;
+    -webkit-box-pack: start;
+    -ms-flex-pack: start;
+    justify-content: flex-start; }
+    .tabs ul.is-left {
+      padding-right: 0.75em; }
+    .tabs ul.is-center {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      -webkit-box-pack: center;
+      -ms-flex-pack: center;
+      justify-content: center;
+      padding-left: 0.75em;
+      padding-right: 0.75em; }
+    .tabs ul.is-right {
+      -webkit-box-pack: end;
+      -ms-flex-pack: end;
+      justify-content: flex-end;
+      padding-left: 0.75em; }
+  .tabs .icon:first-child {
+    margin-right: 0.5em; }
+  .tabs .icon:last-child {
+    margin-left: 0.5em; }
+  .tabs.is-centered ul {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+  .tabs.is-right ul {
+    -webkit-box-pack: end;
+    -ms-flex-pack: end;
+    justify-content: flex-end; }
+  .tabs.is-boxed a {
+    border: 1px solid transparent;
+    border-radius: 4px 4px 0 0; }
+    .tabs.is-boxed a:hover {
+      background-color: whitesmoke;
+      border-bottom-color: #dbdbdb; }
+  .tabs.is-boxed li.is-active a {
+    background-color: white;
+    border-color: #dbdbdb;
+    border-bottom-color: transparent !important; }
+  .tabs.is-fullwidth li {
+    -webkit-box-flex: 1;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    -ms-flex-negative: 0;
+    flex-shrink: 0; }
+  .tabs.is-toggle a {
+    border-color: #dbdbdb;
+    border-style: solid;
+    border-width: 1px;
+    margin-bottom: 0;
+    position: relative; }
+    .tabs.is-toggle a:hover {
+      background-color: whitesmoke;
+      border-color: #b5b5b5;
+      z-index: 2; }
+  .tabs.is-toggle li + li {
+    margin-left: -1px; }
+  .tabs.is-toggle li:first-child a {
+    border-radius: 4px 0 0 4px; }
+  .tabs.is-toggle li:last-child a {
+    border-radius: 0 4px 4px 0; }
+  .tabs.is-toggle li.is-active a {
+    background-color: #4391E0;
+    border-color: #4391E0;
+    color: #fff;
+    z-index: 1; }
+  .tabs.is-toggle ul {
+    border-bottom: none; }
+  .tabs.is-toggle.is-toggle-rounded li:first-child a {
+    border-bottom-left-radius: 290486px;
+    border-top-left-radius: 290486px;
+    padding-left: 1.25em; }
+  .tabs.is-toggle.is-toggle-rounded li:last-child a {
+    border-bottom-right-radius: 290486px;
+    border-top-right-radius: 290486px;
+    padding-right: 1.25em; }
+  .tabs.is-small {
+    font-size: 0.75rem; }
+  .tabs.is-medium {
+    font-size: 1.25rem; }
+  .tabs.is-large {
+    font-size: 1.5rem; }
 
 /**
  * Extend or override Bulma's components,
@@ -5783,65 +5999,15 @@ label.panel-block:hover {
  * 'Community' on mid-size screens.
  * See https://gitlab.com/drutopia/octavia/issues/52
  */
-.navbar-item, .navbar-link {
-  padding-left: 0.75rem;
-  padding-right: 0.75rem;
-}
-@media screen and (min-width: 1216px) {
-  .navbar-item, .navbar-link {
-    padding-left: 1rem;
-    padding-right: 1rem;
-  }
-}
-
-.geo-logo-name {
-  display: flex !important;
-  overflow: hidden;
-  width: 100%;
-}
-.geo-logo-name .logo, .geo-logo-name .sitename {
-  display: table-cell;
-}
-.geo-logo-name .logo a {
-  display: block;
-  width: 199px;
-}
-@media screen and (min-width: 769px) {
-  .geo-logo-name {
-    width: fit-content;
-  }
-}
-@media screen and (max-width: 362px) {
-  .geo-logo-name {
-    justify-content: flex-end;
-  }
-}
-
-@media screen and (max-width: 1023px) {
-  .search-bar {
-    display: none !important;
-  }
-}
-.search-icon {
-  padding-right: 1rem;
-}
-
-#navbar-menu {
-  display: flex;
-  flex-wrap: wrap;
-}
-@media screen and (max-width: 768px) {
-  #navbar-menu {
-    width: 100%;
-    justify-content: space-around;
-  }
-}
-@media screen and (min-width: 1024px) {
-  #navbar-menu {
-    flex-wrap: nowrap;
-    margin-right: -1rem;
-  }
-}
+.navbar-item,
+.navbar-link {
+  padding-left: .75rem;
+  padding-right: .75rem; }
+  @media screen and (min-width: 1216px) {
+    .navbar-item,
+    .navbar-link {
+      padding-left: 1rem;
+      padding-right: 1rem; } }
 
 /* Featured images on article pages */
 .featured-image figure.image {
@@ -5850,85 +6016,26 @@ label.panel-block:hover {
   left: 50%;
   right: 50%;
   margin-left: -50vw;
-  margin-right: -50vw;
-  max-height: 27rem;
-  overflow-y: hidden;
-}
-.featured-image figure.image img {
-  width: 100%;
-}
-@media screen and (min-width: 1216px) {
-  .featured-image figure.image {
-    max-height: 36rem;
-  }
-}
+  margin-right: -50vw; }
+  .featured-image figure.image img {
+    width: 100%; }
 
 /* Hero image in hero block */
-.footer .paragraph {
-  margin-bottom: 0;
-}
-.footer .has-background-image.hero.is-medium {
-  background-color: black;
+.has-background-image.hero {
   width: 100vw;
   position: relative;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
-  margin-right: -50vw;
-  height: 200px;
-}
-@media screen and (min-width: 769px) {
-  .footer .has-background-image.hero.is-medium {
-    height: 400px;
-  }
-}
-.footer .has-background-image.hero.is-medium img {
-  opacity: 0.7;
-}
-.footer .has-background-image.hero.is-medium .hero-body {
-  padding: 3rem 1.5rem;
-}
-@media screen and (min-width: 769px) {
-  .footer .has-background-image.hero.is-medium .hero-body {
-    padding-top: 9rem;
-    padding-bottom: 7rem;
-  }
-}
-
-.has-background-image.hero.is-medium img {
-  height: 200px;
-  max-height: 400px;
-  object-fit: cover;
-  position: absolute;
-}
-@media screen and (min-width: 769px) {
-  .has-background-image.hero.is-medium img {
-    height: auto;
-  }
-}
-.has-background-image.hero.is-medium .hero-body {
-  padding: 5.5rem 1rem;
-}
-@media screen and (min-width: 769px) {
-  .has-background-image.hero.is-medium .hero-body {
-    padding-top: 12rem;
-    padding-bottom: 12rem;
-  }
-}
-.has-background-image.hero.is-medium .hero-body .container.is-fluid {
-  margin-left: 32px;
-  margin-right: 32px;
-}
+  margin-right: -50vw; }
 
 /* Slim down section vertical padding a bit.*/
 .section {
-  padding: 0.5rem 1.5rem 1.5rem;
-}
+  padding: 0.5rem 1.5rem 1.5rem; }
 
 /* Give titles, from which we removed the Hero classes, the same padding as sections. */
 .block-page-title-block {
-  padding: 1rem 1.5rem;
-}
+  padding: 1rem 1.5rem; }
 
 /**
  * Give enough of a background around text in the footer that it is legible on
@@ -5936,5563 +6043,2192 @@ label.panel-block:hover {
  *
  * The link and changed text are not dark so we need a pretty high opacity.
  */
-.footer .views-field {
-  /* We're not displaying this at all anymore
-  &.views-field-changed {
-    font-size: 0.8em;
-    color: $green-gray;
-    margin-top: 0.2rem;
-    margin-bottom: 0.4rem;
-    text-align: right;
-  }
-   */
-}
 .footer .views-field .field-content {
   background-color: rgba(248, 248, 248, 0.9);
   padding: 0.2em;
-  border-radius: 0.3em;
-}
+  border-radius: 0.3em; }
+
+.footer .views-field.views-field-changed {
+  font-size: 0.8em;
+  color: #8FB489;
+  margin-top: 0.2rem;
+  margin-bottom: 0.4rem;
+  text-align: right; }
 
 .page-title .title > span {
   background-color: rgba(248, 248, 248, 0.66);
   padding: 0.4em 0.3em 0.3em 0.3em;
-  border-radius: 0.4em;
-  line-height: 1.8;
-}
-
-.block--footer_menus {
-  background-color: rgba(248, 248, 248, 0.9);
-  padding: 0.2em;
-  border-radius: 0.3em;
-}
-
-@media screen and (max-width: 768px) {
-  .comment-section article {
-    display: block;
-    padding-bottom: 0;
-  }
-  .comment-section .content p:not(:last-child) {
-    margin-bottom: 0;
-  }
-}
-/* Bulma Grid */
-:root {
-  --bulma-column-gap: 0.75rem;
-}
+  border-radius: 0.4em; }
 
 .column {
   display: block;
+  -ms-flex-preferred-size: 0;
   flex-basis: 0;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
+  -ms-flex-negative: 1;
   flex-shrink: 1;
-  padding: var(--bulma-column-gap);
-}
-.columns.is-mobile > .column.is-narrow {
-  flex: none;
-  width: unset;
-}
-.columns.is-mobile > .column.is-full {
-  flex: none;
-  width: 100%;
-}
-.columns.is-mobile > .column.is-three-quarters {
-  flex: none;
-  width: 75%;
-}
-.columns.is-mobile > .column.is-two-thirds {
-  flex: none;
-  width: 66.6666%;
-}
-.columns.is-mobile > .column.is-half {
-  flex: none;
-  width: 50%;
-}
-.columns.is-mobile > .column.is-one-third {
-  flex: none;
-  width: 33.3333%;
-}
-.columns.is-mobile > .column.is-one-quarter {
-  flex: none;
-  width: 25%;
-}
-.columns.is-mobile > .column.is-one-fifth {
-  flex: none;
-  width: 20%;
-}
-.columns.is-mobile > .column.is-two-fifths {
-  flex: none;
-  width: 40%;
-}
-.columns.is-mobile > .column.is-three-fifths {
-  flex: none;
-  width: 60%;
-}
-.columns.is-mobile > .column.is-four-fifths {
-  flex: none;
-  width: 80%;
-}
-.columns.is-mobile > .column.is-offset-three-quarters {
-  margin-inline-start: 75%;
-}
-.columns.is-mobile > .column.is-offset-two-thirds {
-  margin-inline-start: 66.6666%;
-}
-.columns.is-mobile > .column.is-offset-half {
-  margin-inline-start: 50%;
-}
-.columns.is-mobile > .column.is-offset-one-third {
-  margin-inline-start: 0.3333%;
-}
-.columns.is-mobile > .column.is-offset-one-quarter {
-  margin-inline-start: 25%;
-}
-.columns.is-mobile > .column.is-offset-one-fifth {
-  margin-inline-start: 20%;
-}
-.columns.is-mobile > .column.is-offset-two-fifths {
-  margin-inline-start: 40%;
-}
-.columns.is-mobile > .column.is-offset-three-fifths {
-  margin-inline-start: 60%;
-}
-.columns.is-mobile > .column.is-offset-four-fifths {
-  margin-inline-start: 80%;
-}
-.columns.is-mobile > .column.is-0 {
-  flex: none;
-  width: 0%;
-}
-.columns.is-mobile > .column.is-offset-0 {
-  margin-inline-start: 0%;
-}
-.columns.is-mobile > .column.is-1 {
-  flex: none;
-  width: 8.3333333333%;
-}
-.columns.is-mobile > .column.is-offset-1 {
-  margin-inline-start: 8.3333333333%;
-}
-.columns.is-mobile > .column.is-2 {
-  flex: none;
-  width: 16.6666666667%;
-}
-.columns.is-mobile > .column.is-offset-2 {
-  margin-inline-start: 16.6666666667%;
-}
-.columns.is-mobile > .column.is-3 {
-  flex: none;
-  width: 25%;
-}
-.columns.is-mobile > .column.is-offset-3 {
-  margin-inline-start: 25%;
-}
-.columns.is-mobile > .column.is-4 {
-  flex: none;
-  width: 33.3333333333%;
-}
-.columns.is-mobile > .column.is-offset-4 {
-  margin-inline-start: 33.3333333333%;
-}
-.columns.is-mobile > .column.is-5 {
-  flex: none;
-  width: 41.6666666667%;
-}
-.columns.is-mobile > .column.is-offset-5 {
-  margin-inline-start: 41.6666666667%;
-}
-.columns.is-mobile > .column.is-6 {
-  flex: none;
-  width: 50%;
-}
-.columns.is-mobile > .column.is-offset-6 {
-  margin-inline-start: 50%;
-}
-.columns.is-mobile > .column.is-7 {
-  flex: none;
-  width: 58.3333333333%;
-}
-.columns.is-mobile > .column.is-offset-7 {
-  margin-inline-start: 58.3333333333%;
-}
-.columns.is-mobile > .column.is-8 {
-  flex: none;
-  width: 66.6666666667%;
-}
-.columns.is-mobile > .column.is-offset-8 {
-  margin-inline-start: 66.6666666667%;
-}
-.columns.is-mobile > .column.is-9 {
-  flex: none;
-  width: 75%;
-}
-.columns.is-mobile > .column.is-offset-9 {
-  margin-inline-start: 75%;
-}
-.columns.is-mobile > .column.is-10 {
-  flex: none;
-  width: 83.3333333333%;
-}
-.columns.is-mobile > .column.is-offset-10 {
-  margin-inline-start: 83.3333333333%;
-}
-.columns.is-mobile > .column.is-11 {
-  flex: none;
-  width: 91.6666666667%;
-}
-.columns.is-mobile > .column.is-offset-11 {
-  margin-inline-start: 91.6666666667%;
-}
-.columns.is-mobile > .column.is-12 {
-  flex: none;
-  width: 100%;
-}
-.columns.is-mobile > .column.is-offset-12 {
-  margin-inline-start: 100%;
-}
-@media screen and (max-width: 768px) {
-  .column.is-narrow-mobile {
-    flex: none;
-    width: unset;
-  }
-  .column.is-full-mobile {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-three-quarters-mobile {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-two-thirds-mobile {
-    flex: none;
-    width: 66.6666%;
-  }
-  .column.is-half-mobile {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-one-third-mobile {
-    flex: none;
-    width: 33.3333%;
-  }
-  .column.is-one-quarter-mobile {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-one-fifth-mobile {
-    flex: none;
-    width: 20%;
-  }
-  .column.is-two-fifths-mobile {
-    flex: none;
-    width: 40%;
-  }
-  .column.is-three-fifths-mobile {
-    flex: none;
-    width: 60%;
-  }
-  .column.is-four-fifths-mobile {
-    flex: none;
-    width: 80%;
-  }
-  .column.is-offset-three-quarters-mobile {
-    margin-inline-start: 75%;
-  }
-  .column.is-offset-two-thirds-mobile {
-    margin-inline-start: 66.6666%;
-  }
-  .column.is-offset-half-mobile {
-    margin-inline-start: 50%;
-  }
-  .column.is-offset-one-third-mobile {
-    margin-inline-start: 0.3333%;
-  }
-  .column.is-offset-one-quarter-mobile {
-    margin-inline-start: 25%;
-  }
-  .column.is-offset-one-fifth-mobile {
-    margin-inline-start: 20%;
-  }
-  .column.is-offset-two-fifths-mobile {
-    margin-inline-start: 40%;
-  }
-  .column.is-offset-three-fifths-mobile {
-    margin-inline-start: 60%;
-  }
-  .column.is-offset-four-fifths-mobile {
-    margin-inline-start: 80%;
-  }
-  .column.is-0-mobile {
-    flex: none;
-    width: 0%;
-  }
-  .column.is-offset-0-mobile {
-    margin-inline-start: 0%;
-  }
-  .column.is-1-mobile {
-    flex: none;
-    width: 8.3333333333%;
-  }
-  .column.is-offset-1-mobile {
-    margin-inline-start: 8.3333333333%;
-  }
-  .column.is-2-mobile {
-    flex: none;
-    width: 16.6666666667%;
-  }
-  .column.is-offset-2-mobile {
-    margin-inline-start: 16.6666666667%;
-  }
-  .column.is-3-mobile {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-offset-3-mobile {
-    margin-inline-start: 25%;
-  }
-  .column.is-4-mobile {
-    flex: none;
-    width: 33.3333333333%;
-  }
-  .column.is-offset-4-mobile {
-    margin-inline-start: 33.3333333333%;
-  }
-  .column.is-5-mobile {
-    flex: none;
-    width: 41.6666666667%;
-  }
-  .column.is-offset-5-mobile {
-    margin-inline-start: 41.6666666667%;
-  }
-  .column.is-6-mobile {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-offset-6-mobile {
-    margin-inline-start: 50%;
-  }
-  .column.is-7-mobile {
-    flex: none;
-    width: 58.3333333333%;
-  }
-  .column.is-offset-7-mobile {
-    margin-inline-start: 58.3333333333%;
-  }
-  .column.is-8-mobile {
-    flex: none;
-    width: 66.6666666667%;
-  }
-  .column.is-offset-8-mobile {
-    margin-inline-start: 66.6666666667%;
-  }
-  .column.is-9-mobile {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-offset-9-mobile {
-    margin-inline-start: 75%;
-  }
-  .column.is-10-mobile {
-    flex: none;
-    width: 83.3333333333%;
-  }
-  .column.is-offset-10-mobile {
-    margin-inline-start: 83.3333333333%;
-  }
-  .column.is-11-mobile {
-    flex: none;
-    width: 91.6666666667%;
-  }
-  .column.is-offset-11-mobile {
-    margin-inline-start: 91.6666666667%;
-  }
-  .column.is-12-mobile {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-offset-12-mobile {
-    margin-inline-start: 100%;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .column.is-narrow, .column.is-narrow-tablet {
-    flex: none;
-    width: unset;
-  }
-  .column.is-full, .column.is-full-tablet {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-three-quarters, .column.is-three-quarters-tablet {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-two-thirds, .column.is-two-thirds-tablet {
-    flex: none;
-    width: 66.6666%;
-  }
-  .column.is-half, .column.is-half-tablet {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-one-third, .column.is-one-third-tablet {
-    flex: none;
-    width: 33.3333%;
-  }
-  .column.is-one-quarter, .column.is-one-quarter-tablet {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-one-fifth, .column.is-one-fifth-tablet {
-    flex: none;
-    width: 20%;
-  }
-  .column.is-two-fifths, .column.is-two-fifths-tablet {
-    flex: none;
-    width: 40%;
-  }
-  .column.is-three-fifths, .column.is-three-fifths-tablet {
-    flex: none;
-    width: 60%;
-  }
-  .column.is-four-fifths, .column.is-four-fifths-tablet {
-    flex: none;
-    width: 80%;
-  }
-  .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
-    margin-inline-start: 75%;
-  }
-  .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
-    margin-inline-start: 66.6666%;
-  }
-  .column.is-offset-half, .column.is-offset-half-tablet {
-    margin-inline-start: 50%;
-  }
-  .column.is-offset-one-third, .column.is-offset-one-third-tablet {
-    margin-inline-start: 0.3333%;
-  }
-  .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
-    margin-inline-start: 25%;
-  }
-  .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
-    margin-inline-start: 20%;
-  }
-  .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
-    margin-inline-start: 40%;
-  }
-  .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
-    margin-inline-start: 60%;
-  }
-  .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
-    margin-inline-start: 80%;
-  }
-  .column.is-0, .column.is-0-tablet {
-    flex: none;
-    width: 0%;
-  }
-  .column.is-offset-0, .column.is-offset-0-tablet {
-    margin-inline-start: 0%;
-  }
-  .column.is-1, .column.is-1-tablet {
-    flex: none;
-    width: 8.3333333333%;
-  }
-  .column.is-offset-1, .column.is-offset-1-tablet {
-    margin-inline-start: 8.3333333333%;
-  }
-  .column.is-2, .column.is-2-tablet {
-    flex: none;
-    width: 16.6666666667%;
-  }
-  .column.is-offset-2, .column.is-offset-2-tablet {
-    margin-inline-start: 16.6666666667%;
-  }
-  .column.is-3, .column.is-3-tablet {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-offset-3, .column.is-offset-3-tablet {
-    margin-inline-start: 25%;
-  }
-  .column.is-4, .column.is-4-tablet {
-    flex: none;
-    width: 33.3333333333%;
-  }
-  .column.is-offset-4, .column.is-offset-4-tablet {
-    margin-inline-start: 33.3333333333%;
-  }
-  .column.is-5, .column.is-5-tablet {
-    flex: none;
-    width: 41.6666666667%;
-  }
-  .column.is-offset-5, .column.is-offset-5-tablet {
-    margin-inline-start: 41.6666666667%;
-  }
-  .column.is-6, .column.is-6-tablet {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-offset-6, .column.is-offset-6-tablet {
-    margin-inline-start: 50%;
-  }
-  .column.is-7, .column.is-7-tablet {
-    flex: none;
-    width: 58.3333333333%;
-  }
-  .column.is-offset-7, .column.is-offset-7-tablet {
-    margin-inline-start: 58.3333333333%;
-  }
-  .column.is-8, .column.is-8-tablet {
-    flex: none;
-    width: 66.6666666667%;
-  }
-  .column.is-offset-8, .column.is-offset-8-tablet {
-    margin-inline-start: 66.6666666667%;
-  }
-  .column.is-9, .column.is-9-tablet {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-offset-9, .column.is-offset-9-tablet {
-    margin-inline-start: 75%;
-  }
-  .column.is-10, .column.is-10-tablet {
-    flex: none;
-    width: 83.3333333333%;
-  }
-  .column.is-offset-10, .column.is-offset-10-tablet {
-    margin-inline-start: 83.3333333333%;
-  }
-  .column.is-11, .column.is-11-tablet {
-    flex: none;
-    width: 91.6666666667%;
-  }
-  .column.is-offset-11, .column.is-offset-11-tablet {
-    margin-inline-start: 91.6666666667%;
-  }
-  .column.is-12, .column.is-12-tablet {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-offset-12, .column.is-offset-12-tablet {
-    margin-inline-start: 100%;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .column.is-narrow-touch {
-    flex: none;
-    width: unset;
-  }
-  .column.is-full-touch {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-three-quarters-touch {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-two-thirds-touch {
-    flex: none;
-    width: 66.6666%;
-  }
-  .column.is-half-touch {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-one-third-touch {
-    flex: none;
-    width: 33.3333%;
-  }
-  .column.is-one-quarter-touch {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-one-fifth-touch {
-    flex: none;
-    width: 20%;
-  }
-  .column.is-two-fifths-touch {
-    flex: none;
-    width: 40%;
-  }
-  .column.is-three-fifths-touch {
-    flex: none;
-    width: 60%;
-  }
-  .column.is-four-fifths-touch {
-    flex: none;
-    width: 80%;
-  }
-  .column.is-offset-three-quarters-touch {
-    margin-inline-start: 75%;
-  }
-  .column.is-offset-two-thirds-touch {
-    margin-inline-start: 66.6666%;
-  }
-  .column.is-offset-half-touch {
-    margin-inline-start: 50%;
-  }
-  .column.is-offset-one-third-touch {
-    margin-inline-start: 0.3333%;
-  }
-  .column.is-offset-one-quarter-touch {
-    margin-inline-start: 25%;
-  }
-  .column.is-offset-one-fifth-touch {
-    margin-inline-start: 20%;
-  }
-  .column.is-offset-two-fifths-touch {
-    margin-inline-start: 40%;
-  }
-  .column.is-offset-three-fifths-touch {
-    margin-inline-start: 60%;
-  }
-  .column.is-offset-four-fifths-touch {
-    margin-inline-start: 80%;
-  }
-  .column.is-0-touch {
-    flex: none;
-    width: 0%;
-  }
-  .column.is-offset-0-touch {
-    margin-inline-start: 0%;
-  }
-  .column.is-1-touch {
-    flex: none;
-    width: 8.3333333333%;
-  }
-  .column.is-offset-1-touch {
-    margin-inline-start: 8.3333333333%;
-  }
-  .column.is-2-touch {
-    flex: none;
-    width: 16.6666666667%;
-  }
-  .column.is-offset-2-touch {
-    margin-inline-start: 16.6666666667%;
-  }
-  .column.is-3-touch {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-offset-3-touch {
-    margin-inline-start: 25%;
-  }
-  .column.is-4-touch {
-    flex: none;
-    width: 33.3333333333%;
-  }
-  .column.is-offset-4-touch {
-    margin-inline-start: 33.3333333333%;
-  }
-  .column.is-5-touch {
-    flex: none;
-    width: 41.6666666667%;
-  }
-  .column.is-offset-5-touch {
-    margin-inline-start: 41.6666666667%;
-  }
-  .column.is-6-touch {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-offset-6-touch {
-    margin-inline-start: 50%;
-  }
-  .column.is-7-touch {
-    flex: none;
-    width: 58.3333333333%;
-  }
-  .column.is-offset-7-touch {
-    margin-inline-start: 58.3333333333%;
-  }
-  .column.is-8-touch {
-    flex: none;
-    width: 66.6666666667%;
-  }
-  .column.is-offset-8-touch {
-    margin-inline-start: 66.6666666667%;
-  }
-  .column.is-9-touch {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-offset-9-touch {
-    margin-inline-start: 75%;
-  }
-  .column.is-10-touch {
-    flex: none;
-    width: 83.3333333333%;
-  }
-  .column.is-offset-10-touch {
-    margin-inline-start: 83.3333333333%;
-  }
-  .column.is-11-touch {
-    flex: none;
-    width: 91.6666666667%;
-  }
-  .column.is-offset-11-touch {
-    margin-inline-start: 91.6666666667%;
-  }
-  .column.is-12-touch {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-offset-12-touch {
-    margin-inline-start: 100%;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .column.is-narrow-desktop {
-    flex: none;
-    width: unset;
-  }
-  .column.is-full-desktop {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-three-quarters-desktop {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-two-thirds-desktop {
-    flex: none;
-    width: 66.6666%;
-  }
-  .column.is-half-desktop {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-one-third-desktop {
-    flex: none;
-    width: 33.3333%;
-  }
-  .column.is-one-quarter-desktop {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-one-fifth-desktop {
-    flex: none;
-    width: 20%;
-  }
-  .column.is-two-fifths-desktop {
-    flex: none;
-    width: 40%;
-  }
-  .column.is-three-fifths-desktop {
-    flex: none;
-    width: 60%;
-  }
-  .column.is-four-fifths-desktop {
-    flex: none;
-    width: 80%;
-  }
-  .column.is-offset-three-quarters-desktop {
-    margin-inline-start: 75%;
-  }
-  .column.is-offset-two-thirds-desktop {
-    margin-inline-start: 66.6666%;
-  }
-  .column.is-offset-half-desktop {
-    margin-inline-start: 50%;
-  }
-  .column.is-offset-one-third-desktop {
-    margin-inline-start: 0.3333%;
-  }
-  .column.is-offset-one-quarter-desktop {
-    margin-inline-start: 25%;
-  }
-  .column.is-offset-one-fifth-desktop {
-    margin-inline-start: 20%;
-  }
-  .column.is-offset-two-fifths-desktop {
-    margin-inline-start: 40%;
-  }
-  .column.is-offset-three-fifths-desktop {
-    margin-inline-start: 60%;
-  }
-  .column.is-offset-four-fifths-desktop {
-    margin-inline-start: 80%;
-  }
-  .column.is-0-desktop {
-    flex: none;
-    width: 0%;
-  }
-  .column.is-offset-0-desktop {
-    margin-inline-start: 0%;
-  }
-  .column.is-1-desktop {
-    flex: none;
-    width: 8.3333333333%;
-  }
-  .column.is-offset-1-desktop {
-    margin-inline-start: 8.3333333333%;
-  }
-  .column.is-2-desktop {
-    flex: none;
-    width: 16.6666666667%;
-  }
-  .column.is-offset-2-desktop {
-    margin-inline-start: 16.6666666667%;
-  }
-  .column.is-3-desktop {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-offset-3-desktop {
-    margin-inline-start: 25%;
-  }
-  .column.is-4-desktop {
-    flex: none;
-    width: 33.3333333333%;
-  }
-  .column.is-offset-4-desktop {
-    margin-inline-start: 33.3333333333%;
-  }
-  .column.is-5-desktop {
-    flex: none;
-    width: 41.6666666667%;
-  }
-  .column.is-offset-5-desktop {
-    margin-inline-start: 41.6666666667%;
-  }
-  .column.is-6-desktop {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-offset-6-desktop {
-    margin-inline-start: 50%;
-  }
-  .column.is-7-desktop {
-    flex: none;
-    width: 58.3333333333%;
-  }
-  .column.is-offset-7-desktop {
-    margin-inline-start: 58.3333333333%;
-  }
-  .column.is-8-desktop {
-    flex: none;
-    width: 66.6666666667%;
-  }
-  .column.is-offset-8-desktop {
-    margin-inline-start: 66.6666666667%;
-  }
-  .column.is-9-desktop {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-offset-9-desktop {
-    margin-inline-start: 75%;
-  }
-  .column.is-10-desktop {
-    flex: none;
-    width: 83.3333333333%;
-  }
-  .column.is-offset-10-desktop {
-    margin-inline-start: 83.3333333333%;
-  }
-  .column.is-11-desktop {
-    flex: none;
-    width: 91.6666666667%;
-  }
-  .column.is-offset-11-desktop {
-    margin-inline-start: 91.6666666667%;
-  }
-  .column.is-12-desktop {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-offset-12-desktop {
-    margin-inline-start: 100%;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .column.is-narrow-widescreen {
-    flex: none;
-    width: unset;
-  }
-  .column.is-full-widescreen {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-three-quarters-widescreen {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-two-thirds-widescreen {
-    flex: none;
-    width: 66.6666%;
-  }
-  .column.is-half-widescreen {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-one-third-widescreen {
-    flex: none;
-    width: 33.3333%;
-  }
-  .column.is-one-quarter-widescreen {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-one-fifth-widescreen {
-    flex: none;
-    width: 20%;
-  }
-  .column.is-two-fifths-widescreen {
-    flex: none;
-    width: 40%;
-  }
-  .column.is-three-fifths-widescreen {
-    flex: none;
-    width: 60%;
-  }
-  .column.is-four-fifths-widescreen {
-    flex: none;
-    width: 80%;
-  }
-  .column.is-offset-three-quarters-widescreen {
-    margin-inline-start: 75%;
-  }
-  .column.is-offset-two-thirds-widescreen {
-    margin-inline-start: 66.6666%;
-  }
-  .column.is-offset-half-widescreen {
-    margin-inline-start: 50%;
-  }
-  .column.is-offset-one-third-widescreen {
-    margin-inline-start: 0.3333%;
-  }
-  .column.is-offset-one-quarter-widescreen {
-    margin-inline-start: 25%;
-  }
-  .column.is-offset-one-fifth-widescreen {
-    margin-inline-start: 20%;
-  }
-  .column.is-offset-two-fifths-widescreen {
-    margin-inline-start: 40%;
-  }
-  .column.is-offset-three-fifths-widescreen {
-    margin-inline-start: 60%;
-  }
-  .column.is-offset-four-fifths-widescreen {
-    margin-inline-start: 80%;
-  }
-  .column.is-0-widescreen {
-    flex: none;
-    width: 0%;
-  }
-  .column.is-offset-0-widescreen {
-    margin-inline-start: 0%;
-  }
-  .column.is-1-widescreen {
-    flex: none;
-    width: 8.3333333333%;
-  }
-  .column.is-offset-1-widescreen {
-    margin-inline-start: 8.3333333333%;
-  }
-  .column.is-2-widescreen {
-    flex: none;
-    width: 16.6666666667%;
-  }
-  .column.is-offset-2-widescreen {
-    margin-inline-start: 16.6666666667%;
-  }
-  .column.is-3-widescreen {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-offset-3-widescreen {
-    margin-inline-start: 25%;
-  }
-  .column.is-4-widescreen {
-    flex: none;
-    width: 33.3333333333%;
-  }
-  .column.is-offset-4-widescreen {
-    margin-inline-start: 33.3333333333%;
-  }
-  .column.is-5-widescreen {
-    flex: none;
-    width: 41.6666666667%;
-  }
-  .column.is-offset-5-widescreen {
-    margin-inline-start: 41.6666666667%;
-  }
-  .column.is-6-widescreen {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-offset-6-widescreen {
-    margin-inline-start: 50%;
-  }
-  .column.is-7-widescreen {
-    flex: none;
-    width: 58.3333333333%;
-  }
-  .column.is-offset-7-widescreen {
-    margin-inline-start: 58.3333333333%;
-  }
-  .column.is-8-widescreen {
-    flex: none;
-    width: 66.6666666667%;
-  }
-  .column.is-offset-8-widescreen {
-    margin-inline-start: 66.6666666667%;
-  }
-  .column.is-9-widescreen {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-offset-9-widescreen {
-    margin-inline-start: 75%;
-  }
-  .column.is-10-widescreen {
-    flex: none;
-    width: 83.3333333333%;
-  }
-  .column.is-offset-10-widescreen {
-    margin-inline-start: 83.3333333333%;
-  }
-  .column.is-11-widescreen {
-    flex: none;
-    width: 91.6666666667%;
-  }
-  .column.is-offset-11-widescreen {
-    margin-inline-start: 91.6666666667%;
-  }
-  .column.is-12-widescreen {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-offset-12-widescreen {
-    margin-inline-start: 100%;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .column.is-narrow-fullhd {
-    flex: none;
-    width: unset;
-  }
-  .column.is-full-fullhd {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-three-quarters-fullhd {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-two-thirds-fullhd {
-    flex: none;
-    width: 66.6666%;
-  }
-  .column.is-half-fullhd {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-one-third-fullhd {
-    flex: none;
-    width: 33.3333%;
-  }
-  .column.is-one-quarter-fullhd {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-one-fifth-fullhd {
-    flex: none;
-    width: 20%;
-  }
-  .column.is-two-fifths-fullhd {
-    flex: none;
-    width: 40%;
-  }
-  .column.is-three-fifths-fullhd {
-    flex: none;
-    width: 60%;
-  }
-  .column.is-four-fifths-fullhd {
-    flex: none;
-    width: 80%;
-  }
-  .column.is-offset-three-quarters-fullhd {
-    margin-inline-start: 75%;
-  }
-  .column.is-offset-two-thirds-fullhd {
-    margin-inline-start: 66.6666%;
-  }
-  .column.is-offset-half-fullhd {
-    margin-inline-start: 50%;
-  }
-  .column.is-offset-one-third-fullhd {
-    margin-inline-start: 33.3333%;
-  }
-  .column.is-offset-one-quarter-fullhd {
-    margin-inline-start: 25%;
-  }
-  .column.is-offset-one-fifth-fullhd {
-    margin-inline-start: 20%;
-  }
-  .column.is-offset-two-fifths-fullhd {
-    margin-inline-start: 40%;
-  }
-  .column.is-offset-three-fifths-fullhd {
-    margin-inline-start: 60%;
-  }
-  .column.is-offset-four-fifths-fullhd {
-    margin-inline-start: 80%;
-  }
-  .column.is-0-fullhd {
-    flex: none;
-    width: 0%;
-  }
-  .column.is-offset-0-fullhd {
-    margin-inline-start: 0%;
-  }
-  .column.is-1-fullhd {
-    flex: none;
-    width: 8.3333333333%;
-  }
-  .column.is-offset-1-fullhd {
-    margin-inline-start: 8.3333333333%;
-  }
-  .column.is-2-fullhd {
-    flex: none;
-    width: 16.6666666667%;
-  }
-  .column.is-offset-2-fullhd {
-    margin-inline-start: 16.6666666667%;
-  }
-  .column.is-3-fullhd {
-    flex: none;
-    width: 25%;
-  }
-  .column.is-offset-3-fullhd {
-    margin-inline-start: 25%;
-  }
-  .column.is-4-fullhd {
-    flex: none;
-    width: 33.3333333333%;
-  }
-  .column.is-offset-4-fullhd {
-    margin-inline-start: 33.3333333333%;
-  }
-  .column.is-5-fullhd {
-    flex: none;
-    width: 41.6666666667%;
-  }
-  .column.is-offset-5-fullhd {
-    margin-inline-start: 41.6666666667%;
-  }
-  .column.is-6-fullhd {
-    flex: none;
-    width: 50%;
-  }
-  .column.is-offset-6-fullhd {
-    margin-inline-start: 50%;
-  }
-  .column.is-7-fullhd {
-    flex: none;
-    width: 58.3333333333%;
-  }
-  .column.is-offset-7-fullhd {
-    margin-inline-start: 58.3333333333%;
-  }
-  .column.is-8-fullhd {
-    flex: none;
-    width: 66.6666666667%;
-  }
-  .column.is-offset-8-fullhd {
-    margin-inline-start: 66.6666666667%;
-  }
-  .column.is-9-fullhd {
-    flex: none;
-    width: 75%;
-  }
-  .column.is-offset-9-fullhd {
-    margin-inline-start: 75%;
-  }
-  .column.is-10-fullhd {
-    flex: none;
-    width: 83.3333333333%;
-  }
-  .column.is-offset-10-fullhd {
-    margin-inline-start: 83.3333333333%;
-  }
-  .column.is-11-fullhd {
-    flex: none;
-    width: 91.6666666667%;
-  }
-  .column.is-offset-11-fullhd {
-    margin-inline-start: 91.6666666667%;
-  }
-  .column.is-12-fullhd {
-    flex: none;
-    width: 100%;
-  }
-  .column.is-offset-12-fullhd {
-    margin-inline-start: 100%;
-  }
-}
+  padding: 0.75rem; }
+  .columns.is-mobile > .column.is-narrow {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none; }
+  .columns.is-mobile > .column.is-full {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 100%; }
+  .columns.is-mobile > .column.is-three-quarters {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 75%; }
+  .columns.is-mobile > .column.is-two-thirds {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 66.6666%; }
+  .columns.is-mobile > .column.is-half {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 50%; }
+  .columns.is-mobile > .column.is-one-third {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 33.3333%; }
+  .columns.is-mobile > .column.is-one-quarter {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 25%; }
+  .columns.is-mobile > .column.is-one-fifth {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 20%; }
+  .columns.is-mobile > .column.is-two-fifths {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 40%; }
+  .columns.is-mobile > .column.is-three-fifths {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 60%; }
+  .columns.is-mobile > .column.is-four-fifths {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 80%; }
+  .columns.is-mobile > .column.is-offset-three-quarters {
+    margin-left: 75%; }
+  .columns.is-mobile > .column.is-offset-two-thirds {
+    margin-left: 66.6666%; }
+  .columns.is-mobile > .column.is-offset-half {
+    margin-left: 50%; }
+  .columns.is-mobile > .column.is-offset-one-third {
+    margin-left: 33.3333%; }
+  .columns.is-mobile > .column.is-offset-one-quarter {
+    margin-left: 25%; }
+  .columns.is-mobile > .column.is-offset-one-fifth {
+    margin-left: 20%; }
+  .columns.is-mobile > .column.is-offset-two-fifths {
+    margin-left: 40%; }
+  .columns.is-mobile > .column.is-offset-three-fifths {
+    margin-left: 60%; }
+  .columns.is-mobile > .column.is-offset-four-fifths {
+    margin-left: 80%; }
+  .columns.is-mobile > .column.is-0 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 0%; }
+  .columns.is-mobile > .column.is-offset-0 {
+    margin-left: 0%; }
+  .columns.is-mobile > .column.is-1 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 8.33333%; }
+  .columns.is-mobile > .column.is-offset-1 {
+    margin-left: 8.33333%; }
+  .columns.is-mobile > .column.is-2 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 16.66667%; }
+  .columns.is-mobile > .column.is-offset-2 {
+    margin-left: 16.66667%; }
+  .columns.is-mobile > .column.is-3 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 25%; }
+  .columns.is-mobile > .column.is-offset-3 {
+    margin-left: 25%; }
+  .columns.is-mobile > .column.is-4 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 33.33333%; }
+  .columns.is-mobile > .column.is-offset-4 {
+    margin-left: 33.33333%; }
+  .columns.is-mobile > .column.is-5 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 41.66667%; }
+  .columns.is-mobile > .column.is-offset-5 {
+    margin-left: 41.66667%; }
+  .columns.is-mobile > .column.is-6 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 50%; }
+  .columns.is-mobile > .column.is-offset-6 {
+    margin-left: 50%; }
+  .columns.is-mobile > .column.is-7 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 58.33333%; }
+  .columns.is-mobile > .column.is-offset-7 {
+    margin-left: 58.33333%; }
+  .columns.is-mobile > .column.is-8 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 66.66667%; }
+  .columns.is-mobile > .column.is-offset-8 {
+    margin-left: 66.66667%; }
+  .columns.is-mobile > .column.is-9 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 75%; }
+  .columns.is-mobile > .column.is-offset-9 {
+    margin-left: 75%; }
+  .columns.is-mobile > .column.is-10 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 83.33333%; }
+  .columns.is-mobile > .column.is-offset-10 {
+    margin-left: 83.33333%; }
+  .columns.is-mobile > .column.is-11 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 91.66667%; }
+  .columns.is-mobile > .column.is-offset-11 {
+    margin-left: 91.66667%; }
+  .columns.is-mobile > .column.is-12 {
+    -webkit-box-flex: 0;
+    -ms-flex: none;
+    flex: none;
+    width: 100%; }
+  .columns.is-mobile > .column.is-offset-12 {
+    margin-left: 100%; }
+  @media screen and (max-width: 768px) {
+    .column.is-narrow-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none; }
+    .column.is-full-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-three-quarters-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-two-thirds-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.6666%; }
+    .column.is-half-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-one-third-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.3333%; }
+    .column.is-one-quarter-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-one-fifth-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 20%; }
+    .column.is-two-fifths-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 40%; }
+    .column.is-three-fifths-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 60%; }
+    .column.is-four-fifths-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 80%; }
+    .column.is-offset-three-quarters-mobile {
+      margin-left: 75%; }
+    .column.is-offset-two-thirds-mobile {
+      margin-left: 66.6666%; }
+    .column.is-offset-half-mobile {
+      margin-left: 50%; }
+    .column.is-offset-one-third-mobile {
+      margin-left: 33.3333%; }
+    .column.is-offset-one-quarter-mobile {
+      margin-left: 25%; }
+    .column.is-offset-one-fifth-mobile {
+      margin-left: 20%; }
+    .column.is-offset-two-fifths-mobile {
+      margin-left: 40%; }
+    .column.is-offset-three-fifths-mobile {
+      margin-left: 60%; }
+    .column.is-offset-four-fifths-mobile {
+      margin-left: 80%; }
+    .column.is-0-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 0%; }
+    .column.is-offset-0-mobile {
+      margin-left: 0%; }
+    .column.is-1-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .column.is-offset-1-mobile {
+      margin-left: 8.33333%; }
+    .column.is-2-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .column.is-offset-2-mobile {
+      margin-left: 16.66667%; }
+    .column.is-3-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-offset-3-mobile {
+      margin-left: 25%; }
+    .column.is-4-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .column.is-offset-4-mobile {
+      margin-left: 33.33333%; }
+    .column.is-5-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .column.is-offset-5-mobile {
+      margin-left: 41.66667%; }
+    .column.is-6-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-offset-6-mobile {
+      margin-left: 50%; }
+    .column.is-7-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .column.is-offset-7-mobile {
+      margin-left: 58.33333%; }
+    .column.is-8-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .column.is-offset-8-mobile {
+      margin-left: 66.66667%; }
+    .column.is-9-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-offset-9-mobile {
+      margin-left: 75%; }
+    .column.is-10-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .column.is-offset-10-mobile {
+      margin-left: 83.33333%; }
+    .column.is-11-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .column.is-offset-11-mobile {
+      margin-left: 91.66667%; }
+    .column.is-12-mobile {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-offset-12-mobile {
+      margin-left: 100%; } }
+  @media screen and (min-width: 769px), print {
+    .column.is-narrow, .column.is-narrow-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none; }
+    .column.is-full, .column.is-full-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-three-quarters, .column.is-three-quarters-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-two-thirds, .column.is-two-thirds-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.6666%; }
+    .column.is-half, .column.is-half-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-one-third, .column.is-one-third-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.3333%; }
+    .column.is-one-quarter, .column.is-one-quarter-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-one-fifth, .column.is-one-fifth-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 20%; }
+    .column.is-two-fifths, .column.is-two-fifths-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 40%; }
+    .column.is-three-fifths, .column.is-three-fifths-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 60%; }
+    .column.is-four-fifths, .column.is-four-fifths-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 80%; }
+    .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
+      margin-left: 75%; }
+    .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
+      margin-left: 66.6666%; }
+    .column.is-offset-half, .column.is-offset-half-tablet {
+      margin-left: 50%; }
+    .column.is-offset-one-third, .column.is-offset-one-third-tablet {
+      margin-left: 33.3333%; }
+    .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
+      margin-left: 25%; }
+    .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
+      margin-left: 20%; }
+    .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
+      margin-left: 40%; }
+    .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
+      margin-left: 60%; }
+    .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
+      margin-left: 80%; }
+    .column.is-0, .column.is-0-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 0%; }
+    .column.is-offset-0, .column.is-offset-0-tablet {
+      margin-left: 0%; }
+    .column.is-1, .column.is-1-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .column.is-offset-1, .column.is-offset-1-tablet {
+      margin-left: 8.33333%; }
+    .column.is-2, .column.is-2-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .column.is-offset-2, .column.is-offset-2-tablet {
+      margin-left: 16.66667%; }
+    .column.is-3, .column.is-3-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-offset-3, .column.is-offset-3-tablet {
+      margin-left: 25%; }
+    .column.is-4, .column.is-4-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .column.is-offset-4, .column.is-offset-4-tablet {
+      margin-left: 33.33333%; }
+    .column.is-5, .column.is-5-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .column.is-offset-5, .column.is-offset-5-tablet {
+      margin-left: 41.66667%; }
+    .column.is-6, .column.is-6-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-offset-6, .column.is-offset-6-tablet {
+      margin-left: 50%; }
+    .column.is-7, .column.is-7-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .column.is-offset-7, .column.is-offset-7-tablet {
+      margin-left: 58.33333%; }
+    .column.is-8, .column.is-8-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .column.is-offset-8, .column.is-offset-8-tablet {
+      margin-left: 66.66667%; }
+    .column.is-9, .column.is-9-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-offset-9, .column.is-offset-9-tablet {
+      margin-left: 75%; }
+    .column.is-10, .column.is-10-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .column.is-offset-10, .column.is-offset-10-tablet {
+      margin-left: 83.33333%; }
+    .column.is-11, .column.is-11-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .column.is-offset-11, .column.is-offset-11-tablet {
+      margin-left: 91.66667%; }
+    .column.is-12, .column.is-12-tablet {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-offset-12, .column.is-offset-12-tablet {
+      margin-left: 100%; } }
+  @media screen and (max-width: 1023px) {
+    .column.is-narrow-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none; }
+    .column.is-full-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-three-quarters-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-two-thirds-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.6666%; }
+    .column.is-half-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-one-third-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.3333%; }
+    .column.is-one-quarter-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-one-fifth-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 20%; }
+    .column.is-two-fifths-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 40%; }
+    .column.is-three-fifths-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 60%; }
+    .column.is-four-fifths-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 80%; }
+    .column.is-offset-three-quarters-touch {
+      margin-left: 75%; }
+    .column.is-offset-two-thirds-touch {
+      margin-left: 66.6666%; }
+    .column.is-offset-half-touch {
+      margin-left: 50%; }
+    .column.is-offset-one-third-touch {
+      margin-left: 33.3333%; }
+    .column.is-offset-one-quarter-touch {
+      margin-left: 25%; }
+    .column.is-offset-one-fifth-touch {
+      margin-left: 20%; }
+    .column.is-offset-two-fifths-touch {
+      margin-left: 40%; }
+    .column.is-offset-three-fifths-touch {
+      margin-left: 60%; }
+    .column.is-offset-four-fifths-touch {
+      margin-left: 80%; }
+    .column.is-0-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 0%; }
+    .column.is-offset-0-touch {
+      margin-left: 0%; }
+    .column.is-1-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .column.is-offset-1-touch {
+      margin-left: 8.33333%; }
+    .column.is-2-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .column.is-offset-2-touch {
+      margin-left: 16.66667%; }
+    .column.is-3-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-offset-3-touch {
+      margin-left: 25%; }
+    .column.is-4-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .column.is-offset-4-touch {
+      margin-left: 33.33333%; }
+    .column.is-5-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .column.is-offset-5-touch {
+      margin-left: 41.66667%; }
+    .column.is-6-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-offset-6-touch {
+      margin-left: 50%; }
+    .column.is-7-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .column.is-offset-7-touch {
+      margin-left: 58.33333%; }
+    .column.is-8-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .column.is-offset-8-touch {
+      margin-left: 66.66667%; }
+    .column.is-9-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-offset-9-touch {
+      margin-left: 75%; }
+    .column.is-10-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .column.is-offset-10-touch {
+      margin-left: 83.33333%; }
+    .column.is-11-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .column.is-offset-11-touch {
+      margin-left: 91.66667%; }
+    .column.is-12-touch {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-offset-12-touch {
+      margin-left: 100%; } }
+  @media screen and (min-width: 1024px) {
+    .column.is-narrow-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none; }
+    .column.is-full-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-three-quarters-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-two-thirds-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.6666%; }
+    .column.is-half-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-one-third-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.3333%; }
+    .column.is-one-quarter-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-one-fifth-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 20%; }
+    .column.is-two-fifths-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 40%; }
+    .column.is-three-fifths-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 60%; }
+    .column.is-four-fifths-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 80%; }
+    .column.is-offset-three-quarters-desktop {
+      margin-left: 75%; }
+    .column.is-offset-two-thirds-desktop {
+      margin-left: 66.6666%; }
+    .column.is-offset-half-desktop {
+      margin-left: 50%; }
+    .column.is-offset-one-third-desktop {
+      margin-left: 33.3333%; }
+    .column.is-offset-one-quarter-desktop {
+      margin-left: 25%; }
+    .column.is-offset-one-fifth-desktop {
+      margin-left: 20%; }
+    .column.is-offset-two-fifths-desktop {
+      margin-left: 40%; }
+    .column.is-offset-three-fifths-desktop {
+      margin-left: 60%; }
+    .column.is-offset-four-fifths-desktop {
+      margin-left: 80%; }
+    .column.is-0-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 0%; }
+    .column.is-offset-0-desktop {
+      margin-left: 0%; }
+    .column.is-1-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .column.is-offset-1-desktop {
+      margin-left: 8.33333%; }
+    .column.is-2-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .column.is-offset-2-desktop {
+      margin-left: 16.66667%; }
+    .column.is-3-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-offset-3-desktop {
+      margin-left: 25%; }
+    .column.is-4-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .column.is-offset-4-desktop {
+      margin-left: 33.33333%; }
+    .column.is-5-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .column.is-offset-5-desktop {
+      margin-left: 41.66667%; }
+    .column.is-6-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-offset-6-desktop {
+      margin-left: 50%; }
+    .column.is-7-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .column.is-offset-7-desktop {
+      margin-left: 58.33333%; }
+    .column.is-8-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .column.is-offset-8-desktop {
+      margin-left: 66.66667%; }
+    .column.is-9-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-offset-9-desktop {
+      margin-left: 75%; }
+    .column.is-10-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .column.is-offset-10-desktop {
+      margin-left: 83.33333%; }
+    .column.is-11-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .column.is-offset-11-desktop {
+      margin-left: 91.66667%; }
+    .column.is-12-desktop {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-offset-12-desktop {
+      margin-left: 100%; } }
+  @media screen and (min-width: 1216px) {
+    .column.is-narrow-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none; }
+    .column.is-full-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-three-quarters-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-two-thirds-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.6666%; }
+    .column.is-half-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-one-third-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.3333%; }
+    .column.is-one-quarter-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-one-fifth-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 20%; }
+    .column.is-two-fifths-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 40%; }
+    .column.is-three-fifths-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 60%; }
+    .column.is-four-fifths-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 80%; }
+    .column.is-offset-three-quarters-widescreen {
+      margin-left: 75%; }
+    .column.is-offset-two-thirds-widescreen {
+      margin-left: 66.6666%; }
+    .column.is-offset-half-widescreen {
+      margin-left: 50%; }
+    .column.is-offset-one-third-widescreen {
+      margin-left: 33.3333%; }
+    .column.is-offset-one-quarter-widescreen {
+      margin-left: 25%; }
+    .column.is-offset-one-fifth-widescreen {
+      margin-left: 20%; }
+    .column.is-offset-two-fifths-widescreen {
+      margin-left: 40%; }
+    .column.is-offset-three-fifths-widescreen {
+      margin-left: 60%; }
+    .column.is-offset-four-fifths-widescreen {
+      margin-left: 80%; }
+    .column.is-0-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 0%; }
+    .column.is-offset-0-widescreen {
+      margin-left: 0%; }
+    .column.is-1-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .column.is-offset-1-widescreen {
+      margin-left: 8.33333%; }
+    .column.is-2-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .column.is-offset-2-widescreen {
+      margin-left: 16.66667%; }
+    .column.is-3-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-offset-3-widescreen {
+      margin-left: 25%; }
+    .column.is-4-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .column.is-offset-4-widescreen {
+      margin-left: 33.33333%; }
+    .column.is-5-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .column.is-offset-5-widescreen {
+      margin-left: 41.66667%; }
+    .column.is-6-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-offset-6-widescreen {
+      margin-left: 50%; }
+    .column.is-7-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .column.is-offset-7-widescreen {
+      margin-left: 58.33333%; }
+    .column.is-8-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .column.is-offset-8-widescreen {
+      margin-left: 66.66667%; }
+    .column.is-9-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-offset-9-widescreen {
+      margin-left: 75%; }
+    .column.is-10-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .column.is-offset-10-widescreen {
+      margin-left: 83.33333%; }
+    .column.is-11-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .column.is-offset-11-widescreen {
+      margin-left: 91.66667%; }
+    .column.is-12-widescreen {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-offset-12-widescreen {
+      margin-left: 100%; } }
+  @media screen and (min-width: 1408px) {
+    .column.is-narrow-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none; }
+    .column.is-full-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-three-quarters-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-two-thirds-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.6666%; }
+    .column.is-half-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-one-third-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.3333%; }
+    .column.is-one-quarter-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-one-fifth-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 20%; }
+    .column.is-two-fifths-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 40%; }
+    .column.is-three-fifths-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 60%; }
+    .column.is-four-fifths-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 80%; }
+    .column.is-offset-three-quarters-fullhd {
+      margin-left: 75%; }
+    .column.is-offset-two-thirds-fullhd {
+      margin-left: 66.6666%; }
+    .column.is-offset-half-fullhd {
+      margin-left: 50%; }
+    .column.is-offset-one-third-fullhd {
+      margin-left: 33.3333%; }
+    .column.is-offset-one-quarter-fullhd {
+      margin-left: 25%; }
+    .column.is-offset-one-fifth-fullhd {
+      margin-left: 20%; }
+    .column.is-offset-two-fifths-fullhd {
+      margin-left: 40%; }
+    .column.is-offset-three-fifths-fullhd {
+      margin-left: 60%; }
+    .column.is-offset-four-fifths-fullhd {
+      margin-left: 80%; }
+    .column.is-0-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 0%; }
+    .column.is-offset-0-fullhd {
+      margin-left: 0%; }
+    .column.is-1-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .column.is-offset-1-fullhd {
+      margin-left: 8.33333%; }
+    .column.is-2-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .column.is-offset-2-fullhd {
+      margin-left: 16.66667%; }
+    .column.is-3-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .column.is-offset-3-fullhd {
+      margin-left: 25%; }
+    .column.is-4-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .column.is-offset-4-fullhd {
+      margin-left: 33.33333%; }
+    .column.is-5-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .column.is-offset-5-fullhd {
+      margin-left: 41.66667%; }
+    .column.is-6-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .column.is-offset-6-fullhd {
+      margin-left: 50%; }
+    .column.is-7-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .column.is-offset-7-fullhd {
+      margin-left: 58.33333%; }
+    .column.is-8-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .column.is-offset-8-fullhd {
+      margin-left: 66.66667%; }
+    .column.is-9-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .column.is-offset-9-fullhd {
+      margin-left: 75%; }
+    .column.is-10-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .column.is-offset-10-fullhd {
+      margin-left: 83.33333%; }
+    .column.is-11-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .column.is-offset-11-fullhd {
+      margin-left: 91.66667%; }
+    .column.is-12-fullhd {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; }
+    .column.is-offset-12-fullhd {
+      margin-left: 100%; } }
 
 .columns {
-  margin-inline-start: calc(-1 * var(--bulma-column-gap));
-  margin-inline-end: calc(-1 * var(--bulma-column-gap));
-  margin-top: calc(-1 * var(--bulma-column-gap));
-}
-.columns:last-child {
-  margin-bottom: calc(-1 * var(--bulma-column-gap));
-}
-.columns:not(:last-child) {
-  margin-bottom: calc(var(--bulma-block-spacing) - var(--bulma-column-gap));
-}
-.columns.is-centered {
-  justify-content: center;
-}
-.columns.is-gapless {
-  margin-inline-start: 0;
-  margin-inline-end: 0;
-  margin-top: 0;
-}
-.columns.is-gapless > .column {
-  margin: 0;
-  padding: 0 !important;
-}
-.columns.is-gapless:not(:last-child) {
-  margin-bottom: 1.5rem;
-}
-.columns.is-gapless:last-child {
-  margin-bottom: 0;
-}
-.columns.is-mobile {
-  display: flex;
-}
-.columns.is-multiline {
-  flex-wrap: wrap;
-}
-.columns.is-vcentered {
-  align-items: center;
-}
-@media screen and (min-width: 769px), print {
-  .columns:not(.is-desktop) {
-    display: flex;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-desktop {
-    display: flex;
-  }
-}
-.columns.is-0 {
-  --bulma-column-gap: 0rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-0-mobile {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-0-tablet {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-0-tablet-only {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-0-touch {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-0-desktop {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-0-desktop-only {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-0-widescreen {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-0-widescreen-only {
-    --bulma-column-gap: 0rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-0-fullhd {
-    --bulma-column-gap: 0rem;
-  }
-}
-.columns.is-1 {
-  --bulma-column-gap: 0.25rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-1-mobile {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-1-tablet {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-1-tablet-only {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-1-touch {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-1-desktop {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-1-desktop-only {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-1-widescreen {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-1-widescreen-only {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-1-fullhd {
-    --bulma-column-gap: 0.25rem;
-  }
-}
-.columns.is-2 {
-  --bulma-column-gap: 0.5rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-2-mobile {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-2-tablet {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-2-tablet-only {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-2-touch {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-2-desktop {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-2-desktop-only {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-2-widescreen {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-2-widescreen-only {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-2-fullhd {
-    --bulma-column-gap: 0.5rem;
-  }
-}
-.columns.is-3 {
-  --bulma-column-gap: 0.75rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-3-mobile {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-3-tablet {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-3-tablet-only {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-3-touch {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-3-desktop {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-3-desktop-only {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-3-widescreen {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-3-widescreen-only {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-3-fullhd {
-    --bulma-column-gap: 0.75rem;
-  }
-}
-.columns.is-4 {
-  --bulma-column-gap: 1rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-4-mobile {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-4-tablet {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-4-tablet-only {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-4-touch {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-4-desktop {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-4-desktop-only {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-4-widescreen {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-4-widescreen-only {
-    --bulma-column-gap: 1rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-4-fullhd {
-    --bulma-column-gap: 1rem;
-  }
-}
-.columns.is-5 {
-  --bulma-column-gap: 1.25rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-5-mobile {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-5-tablet {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-5-tablet-only {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-5-touch {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-5-desktop {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-5-desktop-only {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-5-widescreen {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-5-widescreen-only {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-5-fullhd {
-    --bulma-column-gap: 1.25rem;
-  }
-}
-.columns.is-6 {
-  --bulma-column-gap: 1.5rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-6-mobile {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-6-tablet {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-6-tablet-only {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-6-touch {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-6-desktop {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-6-desktop-only {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-6-widescreen {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-6-widescreen-only {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-6-fullhd {
-    --bulma-column-gap: 1.5rem;
-  }
-}
-.columns.is-7 {
-  --bulma-column-gap: 1.75rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-7-mobile {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-7-tablet {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-7-tablet-only {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-7-touch {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-7-desktop {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-7-desktop-only {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-7-widescreen {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-7-widescreen-only {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-7-fullhd {
-    --bulma-column-gap: 1.75rem;
-  }
-}
-.columns.is-8 {
-  --bulma-column-gap: 2rem;
-}
-@media screen and (max-width: 768px) {
-  .columns.is-8-mobile {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .columns.is-8-tablet {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .columns.is-8-tablet-only {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (max-width: 1023px) {
-  .columns.is-8-touch {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .columns.is-8-desktop {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .columns.is-8-desktop-only {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .columns.is-8-widescreen {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .columns.is-8-widescreen-only {
-    --bulma-column-gap: 2rem;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .columns.is-8-fullhd {
-    --bulma-column-gap: 2rem;
-  }
-}
+  margin-left: -0.75rem;
+  margin-right: -0.75rem;
+  margin-top: -0.75rem; }
+  .columns:last-child {
+    margin-bottom: -0.75rem; }
+  .columns:not(:last-child) {
+    margin-bottom: calc(1.5rem - 0.75rem); }
+  .columns.is-centered {
+    -webkit-box-pack: center;
+    -ms-flex-pack: center;
+    justify-content: center; }
+  .columns.is-gapless {
+    margin-left: 0;
+    margin-right: 0;
+    margin-top: 0; }
+    .columns.is-gapless > .column {
+      margin: 0;
+      padding: 0 !important; }
+    .columns.is-gapless:not(:last-child) {
+      margin-bottom: 1.5rem; }
+    .columns.is-gapless:last-child {
+      margin-bottom: 0; }
+  .columns.is-mobile {
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
+  .columns.is-multiline {
+    -ms-flex-wrap: wrap;
+    flex-wrap: wrap; }
+  .columns.is-vcentered {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
+    align-items: center; }
+  @media screen and (min-width: 769px), print {
+    .columns:not(.is-desktop) {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-desktop {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; } }
 
-.fixed-grid {
-  container-name: bulma-fixed-grid;
-  container-type: inline-size;
-}
-.fixed-grid > .grid {
-  --bulma-grid-gap-count: calc(var(--bulma-grid-column-count) - 1);
-  --bulma-grid-column-count: 2;
-  grid-template-columns: repeat(var(--bulma-grid-column-count), 1fr);
-}
-.fixed-grid.has-1-cols > .grid {
-  --bulma-grid-column-count: 1;
-}
-.fixed-grid.has-2-cols > .grid {
-  --bulma-grid-column-count: 2;
-}
-.fixed-grid.has-3-cols > .grid {
-  --bulma-grid-column-count: 3;
-}
-.fixed-grid.has-4-cols > .grid {
-  --bulma-grid-column-count: 4;
-}
-.fixed-grid.has-5-cols > .grid {
-  --bulma-grid-column-count: 5;
-}
-.fixed-grid.has-6-cols > .grid {
-  --bulma-grid-column-count: 6;
-}
-.fixed-grid.has-7-cols > .grid {
-  --bulma-grid-column-count: 7;
-}
-.fixed-grid.has-8-cols > .grid {
-  --bulma-grid-column-count: 8;
-}
-.fixed-grid.has-9-cols > .grid {
-  --bulma-grid-column-count: 9;
-}
-.fixed-grid.has-10-cols > .grid {
-  --bulma-grid-column-count: 10;
-}
-.fixed-grid.has-11-cols > .grid {
-  --bulma-grid-column-count: 11;
-}
-.fixed-grid.has-12-cols > .grid {
-  --bulma-grid-column-count: 12;
-}
-@container bulma-fixed-grid (max-width: 768px) {
-  .fixed-grid.has-1-cols-mobile > .grid {
-    --bulma-grid-column-count: 1;
-  }
-  .fixed-grid.has-2-cols-mobile > .grid {
-    --bulma-grid-column-count: 2;
-  }
-  .fixed-grid.has-3-cols-mobile > .grid {
-    --bulma-grid-column-count: 3;
-  }
-  .fixed-grid.has-4-cols-mobile > .grid {
-    --bulma-grid-column-count: 4;
-  }
-  .fixed-grid.has-5-cols-mobile > .grid {
-    --bulma-grid-column-count: 5;
-  }
-  .fixed-grid.has-6-cols-mobile > .grid {
-    --bulma-grid-column-count: 6;
-  }
-  .fixed-grid.has-7-cols-mobile > .grid {
-    --bulma-grid-column-count: 7;
-  }
-  .fixed-grid.has-8-cols-mobile > .grid {
-    --bulma-grid-column-count: 8;
-  }
-  .fixed-grid.has-9-cols-mobile > .grid {
-    --bulma-grid-column-count: 9;
-  }
-  .fixed-grid.has-10-cols-mobile > .grid {
-    --bulma-grid-column-count: 10;
-  }
-  .fixed-grid.has-11-cols-mobile > .grid {
-    --bulma-grid-column-count: 11;
-  }
-  .fixed-grid.has-12-cols-mobile > .grid {
-    --bulma-grid-column-count: 12;
-  }
-}
-@container bulma-fixed-grid (min-width: 769px) {
-  .fixed-grid.has-1-cols-tablet > .grid {
-    --bulma-grid-column-count: 1;
-  }
-  .fixed-grid.has-2-cols-tablet > .grid {
-    --bulma-grid-column-count: 2;
-  }
-  .fixed-grid.has-3-cols-tablet > .grid {
-    --bulma-grid-column-count: 3;
-  }
-  .fixed-grid.has-4-cols-tablet > .grid {
-    --bulma-grid-column-count: 4;
-  }
-  .fixed-grid.has-5-cols-tablet > .grid {
-    --bulma-grid-column-count: 5;
-  }
-  .fixed-grid.has-6-cols-tablet > .grid {
-    --bulma-grid-column-count: 6;
-  }
-  .fixed-grid.has-7-cols-tablet > .grid {
-    --bulma-grid-column-count: 7;
-  }
-  .fixed-grid.has-8-cols-tablet > .grid {
-    --bulma-grid-column-count: 8;
-  }
-  .fixed-grid.has-9-cols-tablet > .grid {
-    --bulma-grid-column-count: 9;
-  }
-  .fixed-grid.has-10-cols-tablet > .grid {
-    --bulma-grid-column-count: 10;
-  }
-  .fixed-grid.has-11-cols-tablet > .grid {
-    --bulma-grid-column-count: 11;
-  }
-  .fixed-grid.has-12-cols-tablet > .grid {
-    --bulma-grid-column-count: 12;
-  }
-}
-@container bulma-fixed-grid (min-width: 1024px) {
-  .fixed-grid.has-1-cols-desktop > .grid {
-    --bulma-grid-column-count: 1;
-  }
-  .fixed-grid.has-2-cols-desktop > .grid {
-    --bulma-grid-column-count: 2;
-  }
-  .fixed-grid.has-3-cols-desktop > .grid {
-    --bulma-grid-column-count: 3;
-  }
-  .fixed-grid.has-4-cols-desktop > .grid {
-    --bulma-grid-column-count: 4;
-  }
-  .fixed-grid.has-5-cols-desktop > .grid {
-    --bulma-grid-column-count: 5;
-  }
-  .fixed-grid.has-6-cols-desktop > .grid {
-    --bulma-grid-column-count: 6;
-  }
-  .fixed-grid.has-7-cols-desktop > .grid {
-    --bulma-grid-column-count: 7;
-  }
-  .fixed-grid.has-8-cols-desktop > .grid {
-    --bulma-grid-column-count: 8;
-  }
-  .fixed-grid.has-9-cols-desktop > .grid {
-    --bulma-grid-column-count: 9;
-  }
-  .fixed-grid.has-10-cols-desktop > .grid {
-    --bulma-grid-column-count: 10;
-  }
-  .fixed-grid.has-11-cols-desktop > .grid {
-    --bulma-grid-column-count: 11;
-  }
-  .fixed-grid.has-12-cols-desktop > .grid {
-    --bulma-grid-column-count: 12;
-  }
-}
-@container bulma-fixed-grid (min-width: 1216px) {
-  .fixed-grid.has-1-cols-widescreen > .grid {
-    --bulma-grid-column-count: 1;
-  }
-  .fixed-grid.has-2-cols-widescreen > .grid {
-    --bulma-grid-column-count: 2;
-  }
-  .fixed-grid.has-3-cols-widescreen > .grid {
-    --bulma-grid-column-count: 3;
-  }
-  .fixed-grid.has-4-cols-widescreen > .grid {
-    --bulma-grid-column-count: 4;
-  }
-  .fixed-grid.has-5-cols-widescreen > .grid {
-    --bulma-grid-column-count: 5;
-  }
-  .fixed-grid.has-6-cols-widescreen > .grid {
-    --bulma-grid-column-count: 6;
-  }
-  .fixed-grid.has-7-cols-widescreen > .grid {
-    --bulma-grid-column-count: 7;
-  }
-  .fixed-grid.has-8-cols-widescreen > .grid {
-    --bulma-grid-column-count: 8;
-  }
-  .fixed-grid.has-9-cols-widescreen > .grid {
-    --bulma-grid-column-count: 9;
-  }
-  .fixed-grid.has-10-cols-widescreen > .grid {
-    --bulma-grid-column-count: 10;
-  }
-  .fixed-grid.has-11-cols-widescreen > .grid {
-    --bulma-grid-column-count: 11;
-  }
-  .fixed-grid.has-12-cols-widescreen > .grid {
-    --bulma-grid-column-count: 12;
-  }
-}
-@container bulma-fixed-grid (min-width: 1408px) {
-  .fixed-grid.has-1-cols-fullhd > .grid {
-    --bulma-grid-column-count: 1;
-  }
-  .fixed-grid.has-2-cols-fullhd > .grid {
-    --bulma-grid-column-count: 2;
-  }
-  .fixed-grid.has-3-cols-fullhd > .grid {
-    --bulma-grid-column-count: 3;
-  }
-  .fixed-grid.has-4-cols-fullhd > .grid {
-    --bulma-grid-column-count: 4;
-  }
-  .fixed-grid.has-5-cols-fullhd > .grid {
-    --bulma-grid-column-count: 5;
-  }
-  .fixed-grid.has-6-cols-fullhd > .grid {
-    --bulma-grid-column-count: 6;
-  }
-  .fixed-grid.has-7-cols-fullhd > .grid {
-    --bulma-grid-column-count: 7;
-  }
-  .fixed-grid.has-8-cols-fullhd > .grid {
-    --bulma-grid-column-count: 8;
-  }
-  .fixed-grid.has-9-cols-fullhd > .grid {
-    --bulma-grid-column-count: 9;
-  }
-  .fixed-grid.has-10-cols-fullhd > .grid {
-    --bulma-grid-column-count: 10;
-  }
-  .fixed-grid.has-11-cols-fullhd > .grid {
-    --bulma-grid-column-count: 11;
-  }
-  .fixed-grid.has-12-cols-fullhd > .grid {
-    --bulma-grid-column-count: 12;
-  }
-}
-@container bulma-fixed-grid (max-width: 768px) {
-  .fixed-grid.has-auto-count .grid {
-    --bulma-grid-column-count: 2;
-  }
-}
-@container bulma-fixed-grid (min-width: 769px) {
-  .fixed-grid.has-auto-count .grid {
-    --bulma-grid-column-count: 4;
-  }
-}
-@container bulma-fixed-grid (min-width: 1024px) {
-  .fixed-grid.has-auto-count .grid {
-    --bulma-grid-column-count: 8;
-  }
-}
-@container bulma-fixed-grid (min-width: 1216px) {
-  .fixed-grid.has-auto-count .grid {
-    --bulma-grid-column-count: 12;
-  }
-}
-@container bulma-fixed-grid (min-width: 1408px) {
-  .fixed-grid.has-auto-count .grid {
-    --bulma-grid-column-count: 16;
-  }
-}
+.columns.is-variable {
+  --columnGap: 0.75rem;
+  margin-left: calc(-1 * var(--columnGap));
+  margin-right: calc(-1 * var(--columnGap)); }
+  .columns.is-variable .column {
+    padding-left: var(--columnGap);
+    padding-right: var(--columnGap); }
+  .columns.is-variable.is-0 {
+    --columnGap: 0rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-0-mobile {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-0-tablet {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-0-tablet-only {
+      --columnGap: 0rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-0-touch {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-0-desktop {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-0-desktop-only {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-0-widescreen {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-0-widescreen-only {
+      --columnGap: 0rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-0-fullhd {
+      --columnGap: 0rem; } }
+  .columns.is-variable.is-1 {
+    --columnGap: 0.25rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-1-mobile {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-1-tablet {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-1-tablet-only {
+      --columnGap: 0.25rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-1-touch {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-1-desktop {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-1-desktop-only {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-1-widescreen {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-1-widescreen-only {
+      --columnGap: 0.25rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-1-fullhd {
+      --columnGap: 0.25rem; } }
+  .columns.is-variable.is-2 {
+    --columnGap: 0.5rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-2-mobile {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-2-tablet {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-2-tablet-only {
+      --columnGap: 0.5rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-2-touch {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-2-desktop {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-2-desktop-only {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-2-widescreen {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-2-widescreen-only {
+      --columnGap: 0.5rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-2-fullhd {
+      --columnGap: 0.5rem; } }
+  .columns.is-variable.is-3 {
+    --columnGap: 0.75rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-3-mobile {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-3-tablet {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-3-tablet-only {
+      --columnGap: 0.75rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-3-touch {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-3-desktop {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-3-desktop-only {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-3-widescreen {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-3-widescreen-only {
+      --columnGap: 0.75rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-3-fullhd {
+      --columnGap: 0.75rem; } }
+  .columns.is-variable.is-4 {
+    --columnGap: 1rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-4-mobile {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-4-tablet {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-4-tablet-only {
+      --columnGap: 1rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-4-touch {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-4-desktop {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-4-desktop-only {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-4-widescreen {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-4-widescreen-only {
+      --columnGap: 1rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-4-fullhd {
+      --columnGap: 1rem; } }
+  .columns.is-variable.is-5 {
+    --columnGap: 1.25rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-5-mobile {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-5-tablet {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-5-tablet-only {
+      --columnGap: 1.25rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-5-touch {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-5-desktop {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-5-desktop-only {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-5-widescreen {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-5-widescreen-only {
+      --columnGap: 1.25rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-5-fullhd {
+      --columnGap: 1.25rem; } }
+  .columns.is-variable.is-6 {
+    --columnGap: 1.5rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-6-mobile {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-6-tablet {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-6-tablet-only {
+      --columnGap: 1.5rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-6-touch {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-6-desktop {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-6-desktop-only {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-6-widescreen {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-6-widescreen-only {
+      --columnGap: 1.5rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-6-fullhd {
+      --columnGap: 1.5rem; } }
+  .columns.is-variable.is-7 {
+    --columnGap: 1.75rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-7-mobile {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-7-tablet {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-7-tablet-only {
+      --columnGap: 1.75rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-7-touch {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-7-desktop {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-7-desktop-only {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-7-widescreen {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-7-widescreen-only {
+      --columnGap: 1.75rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-7-fullhd {
+      --columnGap: 1.75rem; } }
+  .columns.is-variable.is-8 {
+    --columnGap: 2rem; }
+  @media screen and (max-width: 768px) {
+    .columns.is-variable.is-8-mobile {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 769px), print {
+    .columns.is-variable.is-8-tablet {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 769px) and (max-width: 1023px) {
+    .columns.is-variable.is-8-tablet-only {
+      --columnGap: 2rem; } }
+  @media screen and (max-width: 1023px) {
+    .columns.is-variable.is-8-touch {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 1024px) {
+    .columns.is-variable.is-8-desktop {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 1024px) and (max-width: 1215px) {
+    .columns.is-variable.is-8-desktop-only {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 1216px) {
+    .columns.is-variable.is-8-widescreen {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 1216px) and (max-width: 1407px) {
+    .columns.is-variable.is-8-widescreen-only {
+      --columnGap: 2rem; } }
+  @media screen and (min-width: 1408px) {
+    .columns.is-variable.is-8-fullhd {
+      --columnGap: 2rem; } }
 
-.grid {
-  --bulma-grid-gap: 0.75rem;
-  --bulma-grid-column-min: 9rem;
-  --bulma-grid-cell-column-span: 1;
-  --bulma-grid-cell-row-span: 1;
-  display: grid;
-  gap: var(--bulma-grid-gap);
-  column-gap: var(--bulma-grid-column-gap, var(--bulma-grid-gap));
-  row-gap: var(--bulma-grid-row-gap, var(--bulma-grid-gap));
-  grid-template-columns: repeat(auto-fit, minmax(var(--bulma-grid-column-min), 1fr));
-  grid-template-rows: auto;
-}
-.grid.is-auto-fill {
-  grid-template-columns: repeat(auto-fill, minmax(var(--bulma-grid-column-min), 1fr));
-}
-.grid.is-col-min-1 {
-  --bulma-grid-column-min: 1.5rem;
-}
-.grid.is-col-min-2 {
-  --bulma-grid-column-min: 3rem;
-}
-.grid.is-col-min-3 {
-  --bulma-grid-column-min: 4.5rem;
-}
-.grid.is-col-min-4 {
-  --bulma-grid-column-min: 6rem;
-}
-.grid.is-col-min-5 {
-  --bulma-grid-column-min: 7.5rem;
-}
-.grid.is-col-min-6 {
-  --bulma-grid-column-min: 9rem;
-}
-.grid.is-col-min-7 {
-  --bulma-grid-column-min: 10.5rem;
-}
-.grid.is-col-min-8 {
-  --bulma-grid-column-min: 12rem;
-}
-.grid.is-col-min-9 {
-  --bulma-grid-column-min: 13.5rem;
-}
-.grid.is-col-min-10 {
-  --bulma-grid-column-min: 15rem;
-}
-.grid.is-col-min-11 {
-  --bulma-grid-column-min: 16.5rem;
-}
-.grid.is-col-min-12 {
-  --bulma-grid-column-min: 18rem;
-}
-.grid.is-col-min-13 {
-  --bulma-grid-column-min: 19.5rem;
-}
-.grid.is-col-min-14 {
-  --bulma-grid-column-min: 21rem;
-}
-.grid.is-col-min-15 {
-  --bulma-grid-column-min: 22.5rem;
-}
-.grid.is-col-min-16 {
-  --bulma-grid-column-min: 24rem;
-}
-.grid.is-col-min-17 {
-  --bulma-grid-column-min: 25.5rem;
-}
-.grid.is-col-min-18 {
-  --bulma-grid-column-min: 27rem;
-}
-.grid.is-col-min-19 {
-  --bulma-grid-column-min: 28.5rem;
-}
-.grid.is-col-min-20 {
-  --bulma-grid-column-min: 30rem;
-}
-.grid.is-col-min-21 {
-  --bulma-grid-column-min: 31.5rem;
-}
-.grid.is-col-min-22 {
-  --bulma-grid-column-min: 33rem;
-}
-.grid.is-col-min-23 {
-  --bulma-grid-column-min: 34.5rem;
-}
-.grid.is-col-min-24 {
-  --bulma-grid-column-min: 36rem;
-}
-.grid.is-col-min-25 {
-  --bulma-grid-column-min: 37.5rem;
-}
-.grid.is-col-min-26 {
-  --bulma-grid-column-min: 39rem;
-}
-.grid.is-col-min-27 {
-  --bulma-grid-column-min: 40.5rem;
-}
-.grid.is-col-min-28 {
-  --bulma-grid-column-min: 42rem;
-}
-.grid.is-col-min-29 {
-  --bulma-grid-column-min: 43.5rem;
-}
-.grid.is-col-min-30 {
-  --bulma-grid-column-min: 45rem;
-}
-.grid.is-col-min-31 {
-  --bulma-grid-column-min: 46.5rem;
-}
-.grid.is-col-min-32 {
-  --bulma-grid-column-min: 48rem;
-}
-
-.cell {
-  grid-column-end: span var(--bulma-grid-cell-column-span);
-  grid-column-start: var(--bulma-grid-cell-column-start);
-  grid-row-end: span var(--bulma-grid-cell-row-span);
-  grid-row-start: var(--bulma-grid-cell-row-start);
-}
-.cell.is-col-start-end {
-  --bulma-grid-cell-column-start: -1;
-}
-.cell.is-row-start-end {
-  --bulma-grid-cell-row-start: -1;
-}
-.cell.is-col-start-1 {
-  --bulma-grid-cell-column-start: 1;
-}
-.cell.is-col-end-1 {
-  --bulma-grid-cell-column-end: 1;
-}
-.cell.is-col-from-end-1 {
-  --bulma-grid-cell-column-start: -1;
-}
-.cell.is-col-span-1 {
-  --bulma-grid-cell-column-span: 1;
-}
-.cell.is-row-start-1 {
-  --bulma-grid-cell-row-start: 1;
-}
-.cell.is-row-end-1 {
-  --bulma-grid-cell-row-end: 1;
-}
-.cell.is-row-from-end-1 {
-  --bulma-grid-cell-row-start: -1;
-}
-.cell.is-row-span-1 {
-  --bulma-grid-cell-row-span: 1;
-}
-.cell.is-col-start-2 {
-  --bulma-grid-cell-column-start: 2;
-}
-.cell.is-col-end-2 {
-  --bulma-grid-cell-column-end: 2;
-}
-.cell.is-col-from-end-2 {
-  --bulma-grid-cell-column-start: -2;
-}
-.cell.is-col-span-2 {
-  --bulma-grid-cell-column-span: 2;
-}
-.cell.is-row-start-2 {
-  --bulma-grid-cell-row-start: 2;
-}
-.cell.is-row-end-2 {
-  --bulma-grid-cell-row-end: 2;
-}
-.cell.is-row-from-end-2 {
-  --bulma-grid-cell-row-start: -2;
-}
-.cell.is-row-span-2 {
-  --bulma-grid-cell-row-span: 2;
-}
-.cell.is-col-start-3 {
-  --bulma-grid-cell-column-start: 3;
-}
-.cell.is-col-end-3 {
-  --bulma-grid-cell-column-end: 3;
-}
-.cell.is-col-from-end-3 {
-  --bulma-grid-cell-column-start: -3;
-}
-.cell.is-col-span-3 {
-  --bulma-grid-cell-column-span: 3;
-}
-.cell.is-row-start-3 {
-  --bulma-grid-cell-row-start: 3;
-}
-.cell.is-row-end-3 {
-  --bulma-grid-cell-row-end: 3;
-}
-.cell.is-row-from-end-3 {
-  --bulma-grid-cell-row-start: -3;
-}
-.cell.is-row-span-3 {
-  --bulma-grid-cell-row-span: 3;
-}
-.cell.is-col-start-4 {
-  --bulma-grid-cell-column-start: 4;
-}
-.cell.is-col-end-4 {
-  --bulma-grid-cell-column-end: 4;
-}
-.cell.is-col-from-end-4 {
-  --bulma-grid-cell-column-start: -4;
-}
-.cell.is-col-span-4 {
-  --bulma-grid-cell-column-span: 4;
-}
-.cell.is-row-start-4 {
-  --bulma-grid-cell-row-start: 4;
-}
-.cell.is-row-end-4 {
-  --bulma-grid-cell-row-end: 4;
-}
-.cell.is-row-from-end-4 {
-  --bulma-grid-cell-row-start: -4;
-}
-.cell.is-row-span-4 {
-  --bulma-grid-cell-row-span: 4;
-}
-.cell.is-col-start-5 {
-  --bulma-grid-cell-column-start: 5;
-}
-.cell.is-col-end-5 {
-  --bulma-grid-cell-column-end: 5;
-}
-.cell.is-col-from-end-5 {
-  --bulma-grid-cell-column-start: -5;
-}
-.cell.is-col-span-5 {
-  --bulma-grid-cell-column-span: 5;
-}
-.cell.is-row-start-5 {
-  --bulma-grid-cell-row-start: 5;
-}
-.cell.is-row-end-5 {
-  --bulma-grid-cell-row-end: 5;
-}
-.cell.is-row-from-end-5 {
-  --bulma-grid-cell-row-start: -5;
-}
-.cell.is-row-span-5 {
-  --bulma-grid-cell-row-span: 5;
-}
-.cell.is-col-start-6 {
-  --bulma-grid-cell-column-start: 6;
-}
-.cell.is-col-end-6 {
-  --bulma-grid-cell-column-end: 6;
-}
-.cell.is-col-from-end-6 {
-  --bulma-grid-cell-column-start: -6;
-}
-.cell.is-col-span-6 {
-  --bulma-grid-cell-column-span: 6;
-}
-.cell.is-row-start-6 {
-  --bulma-grid-cell-row-start: 6;
-}
-.cell.is-row-end-6 {
-  --bulma-grid-cell-row-end: 6;
-}
-.cell.is-row-from-end-6 {
-  --bulma-grid-cell-row-start: -6;
-}
-.cell.is-row-span-6 {
-  --bulma-grid-cell-row-span: 6;
-}
-.cell.is-col-start-7 {
-  --bulma-grid-cell-column-start: 7;
-}
-.cell.is-col-end-7 {
-  --bulma-grid-cell-column-end: 7;
-}
-.cell.is-col-from-end-7 {
-  --bulma-grid-cell-column-start: -7;
-}
-.cell.is-col-span-7 {
-  --bulma-grid-cell-column-span: 7;
-}
-.cell.is-row-start-7 {
-  --bulma-grid-cell-row-start: 7;
-}
-.cell.is-row-end-7 {
-  --bulma-grid-cell-row-end: 7;
-}
-.cell.is-row-from-end-7 {
-  --bulma-grid-cell-row-start: -7;
-}
-.cell.is-row-span-7 {
-  --bulma-grid-cell-row-span: 7;
-}
-.cell.is-col-start-8 {
-  --bulma-grid-cell-column-start: 8;
-}
-.cell.is-col-end-8 {
-  --bulma-grid-cell-column-end: 8;
-}
-.cell.is-col-from-end-8 {
-  --bulma-grid-cell-column-start: -8;
-}
-.cell.is-col-span-8 {
-  --bulma-grid-cell-column-span: 8;
-}
-.cell.is-row-start-8 {
-  --bulma-grid-cell-row-start: 8;
-}
-.cell.is-row-end-8 {
-  --bulma-grid-cell-row-end: 8;
-}
-.cell.is-row-from-end-8 {
-  --bulma-grid-cell-row-start: -8;
-}
-.cell.is-row-span-8 {
-  --bulma-grid-cell-row-span: 8;
-}
-.cell.is-col-start-9 {
-  --bulma-grid-cell-column-start: 9;
-}
-.cell.is-col-end-9 {
-  --bulma-grid-cell-column-end: 9;
-}
-.cell.is-col-from-end-9 {
-  --bulma-grid-cell-column-start: -9;
-}
-.cell.is-col-span-9 {
-  --bulma-grid-cell-column-span: 9;
-}
-.cell.is-row-start-9 {
-  --bulma-grid-cell-row-start: 9;
-}
-.cell.is-row-end-9 {
-  --bulma-grid-cell-row-end: 9;
-}
-.cell.is-row-from-end-9 {
-  --bulma-grid-cell-row-start: -9;
-}
-.cell.is-row-span-9 {
-  --bulma-grid-cell-row-span: 9;
-}
-.cell.is-col-start-10 {
-  --bulma-grid-cell-column-start: 10;
-}
-.cell.is-col-end-10 {
-  --bulma-grid-cell-column-end: 10;
-}
-.cell.is-col-from-end-10 {
-  --bulma-grid-cell-column-start: -10;
-}
-.cell.is-col-span-10 {
-  --bulma-grid-cell-column-span: 10;
-}
-.cell.is-row-start-10 {
-  --bulma-grid-cell-row-start: 10;
-}
-.cell.is-row-end-10 {
-  --bulma-grid-cell-row-end: 10;
-}
-.cell.is-row-from-end-10 {
-  --bulma-grid-cell-row-start: -10;
-}
-.cell.is-row-span-10 {
-  --bulma-grid-cell-row-span: 10;
-}
-.cell.is-col-start-11 {
-  --bulma-grid-cell-column-start: 11;
-}
-.cell.is-col-end-11 {
-  --bulma-grid-cell-column-end: 11;
-}
-.cell.is-col-from-end-11 {
-  --bulma-grid-cell-column-start: -11;
-}
-.cell.is-col-span-11 {
-  --bulma-grid-cell-column-span: 11;
-}
-.cell.is-row-start-11 {
-  --bulma-grid-cell-row-start: 11;
-}
-.cell.is-row-end-11 {
-  --bulma-grid-cell-row-end: 11;
-}
-.cell.is-row-from-end-11 {
-  --bulma-grid-cell-row-start: -11;
-}
-.cell.is-row-span-11 {
-  --bulma-grid-cell-row-span: 11;
-}
-.cell.is-col-start-12 {
-  --bulma-grid-cell-column-start: 12;
-}
-.cell.is-col-end-12 {
-  --bulma-grid-cell-column-end: 12;
-}
-.cell.is-col-from-end-12 {
-  --bulma-grid-cell-column-start: -12;
-}
-.cell.is-col-span-12 {
-  --bulma-grid-cell-column-span: 12;
-}
-.cell.is-row-start-12 {
-  --bulma-grid-cell-row-start: 12;
-}
-.cell.is-row-end-12 {
-  --bulma-grid-cell-row-end: 12;
-}
-.cell.is-row-from-end-12 {
-  --bulma-grid-cell-row-start: -12;
-}
-.cell.is-row-span-12 {
-  --bulma-grid-cell-row-span: 12;
-}
-@media screen and (max-width: 768px) {
-  .cell.is-col-start-1-mobile {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-mobile {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-mobile {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-mobile {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-mobile {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-mobile {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-mobile {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-mobile {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-mobile {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-mobile {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-mobile {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-mobile {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-mobile {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-mobile {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-mobile {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-mobile {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-mobile {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-mobile {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-mobile {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-mobile {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-mobile {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-mobile {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-mobile {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-mobile {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-mobile {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-mobile {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-mobile {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-mobile {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-mobile {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-mobile {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-mobile {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-mobile {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-mobile {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-mobile {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-mobile {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-mobile {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-mobile {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-mobile {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-mobile {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-mobile {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-mobile {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-mobile {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-mobile {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-mobile {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-mobile {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-mobile {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-mobile {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-mobile {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-mobile {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-mobile {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-mobile {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-mobile {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-mobile {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-mobile {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-mobile {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-mobile {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-mobile {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-mobile {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-mobile {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-mobile {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-mobile {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-mobile {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-mobile {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-mobile {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-mobile {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-mobile {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-mobile {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-mobile {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-mobile {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-mobile {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-mobile {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-mobile {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-mobile {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-mobile {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-mobile {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-mobile {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-mobile {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-mobile {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-mobile {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-mobile {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-mobile {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-mobile {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-mobile {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-mobile {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-mobile {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-mobile {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-mobile {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-mobile {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-mobile {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-mobile {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-mobile {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-mobile {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-mobile {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-mobile {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-mobile {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-mobile {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .cell.is-col-start-1-tablet {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-tablet {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-tablet {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-tablet {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-tablet {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-tablet {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-tablet {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-tablet {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-tablet {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-tablet {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-tablet {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-tablet {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-tablet {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-tablet {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-tablet {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-tablet {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-tablet {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-tablet {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-tablet {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-tablet {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-tablet {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-tablet {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-tablet {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-tablet {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-tablet {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-tablet {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-tablet {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-tablet {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-tablet {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-tablet {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-tablet {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-tablet {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-tablet {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-tablet {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-tablet {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-tablet {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-tablet {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-tablet {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-tablet {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-tablet {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-tablet {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-tablet {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-tablet {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-tablet {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-tablet {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-tablet {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-tablet {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-tablet {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-tablet {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-tablet {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-tablet {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-tablet {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-tablet {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-tablet {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-tablet {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-tablet {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-tablet {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-tablet {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-tablet {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-tablet {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-tablet {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-tablet {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-tablet {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-tablet {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-tablet {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-tablet {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-tablet {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-tablet {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-tablet {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-tablet {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-tablet {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-tablet {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-tablet {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-tablet {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-tablet {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-tablet {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-tablet {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-tablet {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-tablet {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-tablet {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-tablet {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-tablet {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-tablet {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-tablet {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-tablet {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-tablet {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-tablet {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-tablet {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-tablet {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-tablet {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-tablet {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-tablet {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-tablet {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-tablet {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-tablet {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-tablet {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 769px) and (max-width: 1023px) {
-  .cell.is-col-start-1-tablet-only {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-tablet-only {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-tablet-only {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-tablet-only {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-tablet-only {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-tablet-only {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-tablet-only {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-tablet-only {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-tablet-only {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-tablet-only {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-tablet-only {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-tablet-only {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-tablet-only {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-tablet-only {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-tablet-only {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-tablet-only {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-tablet-only {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-tablet-only {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-tablet-only {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-tablet-only {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-tablet-only {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-tablet-only {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-tablet-only {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-tablet-only {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-tablet-only {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-tablet-only {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-tablet-only {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-tablet-only {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-tablet-only {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-tablet-only {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-tablet-only {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-tablet-only {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-tablet-only {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-tablet-only {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-tablet-only {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-tablet-only {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-tablet-only {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-tablet-only {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-tablet-only {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-tablet-only {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-tablet-only {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-tablet-only {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-tablet-only {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-tablet-only {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-tablet-only {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-tablet-only {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-tablet-only {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-tablet-only {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-tablet-only {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-tablet-only {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-tablet-only {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-tablet-only {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-tablet-only {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-tablet-only {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-tablet-only {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-tablet-only {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-tablet-only {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-tablet-only {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-tablet-only {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-tablet-only {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-tablet-only {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-tablet-only {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-tablet-only {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-tablet-only {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-tablet-only {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-tablet-only {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-tablet-only {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-tablet-only {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-tablet-only {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-tablet-only {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-tablet-only {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-tablet-only {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-tablet-only {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-tablet-only {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-tablet-only {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-tablet-only {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-tablet-only {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-tablet-only {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-tablet-only {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-tablet-only {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-tablet-only {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-tablet-only {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-tablet-only {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-tablet-only {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-tablet-only {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-tablet-only {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-tablet-only {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-tablet-only {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-tablet-only {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-tablet-only {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-tablet-only {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-tablet-only {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-tablet-only {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-tablet-only {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-tablet-only {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-tablet-only {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 1024px) {
-  .cell.is-col-start-1-desktop {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-desktop {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-desktop {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-desktop {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-desktop {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-desktop {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-desktop {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-desktop {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-desktop {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-desktop {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-desktop {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-desktop {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-desktop {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-desktop {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-desktop {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-desktop {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-desktop {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-desktop {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-desktop {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-desktop {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-desktop {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-desktop {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-desktop {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-desktop {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-desktop {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-desktop {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-desktop {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-desktop {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-desktop {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-desktop {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-desktop {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-desktop {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-desktop {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-desktop {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-desktop {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-desktop {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-desktop {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-desktop {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-desktop {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-desktop {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-desktop {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-desktop {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-desktop {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-desktop {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-desktop {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-desktop {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-desktop {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-desktop {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-desktop {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-desktop {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-desktop {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-desktop {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-desktop {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-desktop {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-desktop {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-desktop {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-desktop {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-desktop {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-desktop {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-desktop {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-desktop {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-desktop {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-desktop {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-desktop {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-desktop {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-desktop {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-desktop {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-desktop {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-desktop {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-desktop {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-desktop {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-desktop {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-desktop {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-desktop {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-desktop {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-desktop {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-desktop {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-desktop {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-desktop {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-desktop {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-desktop {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-desktop {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-desktop {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-desktop {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-desktop {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-desktop {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-desktop {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-desktop {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-desktop {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-desktop {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-desktop {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-desktop {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-desktop {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-desktop {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-desktop {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-desktop {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 1024px) and (max-width: 1215px) {
-  .cell.is-col-start-1-desktop-only {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-desktop-only {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-desktop-only {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-desktop-only {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-desktop-only {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-desktop-only {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-desktop-only {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-desktop-only {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-desktop-only {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-desktop-only {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-desktop-only {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-desktop-only {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-desktop-only {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-desktop-only {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-desktop-only {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-desktop-only {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-desktop-only {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-desktop-only {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-desktop-only {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-desktop-only {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-desktop-only {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-desktop-only {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-desktop-only {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-desktop-only {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-desktop-only {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-desktop-only {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-desktop-only {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-desktop-only {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-desktop-only {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-desktop-only {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-desktop-only {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-desktop-only {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-desktop-only {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-desktop-only {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-desktop-only {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-desktop-only {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-desktop-only {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-desktop-only {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-desktop-only {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-desktop-only {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-desktop-only {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-desktop-only {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-desktop-only {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-desktop-only {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-desktop-only {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-desktop-only {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-desktop-only {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-desktop-only {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-desktop-only {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-desktop-only {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-desktop-only {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-desktop-only {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-desktop-only {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-desktop-only {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-desktop-only {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-desktop-only {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-desktop-only {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-desktop-only {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-desktop-only {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-desktop-only {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-desktop-only {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-desktop-only {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-desktop-only {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-desktop-only {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-desktop-only {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-desktop-only {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-desktop-only {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-desktop-only {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-desktop-only {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-desktop-only {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-desktop-only {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-desktop-only {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-desktop-only {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-desktop-only {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-desktop-only {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-desktop-only {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-desktop-only {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-desktop-only {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-desktop-only {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-desktop-only {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-desktop-only {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-desktop-only {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-desktop-only {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-desktop-only {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-desktop-only {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-desktop-only {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-desktop-only {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-desktop-only {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-desktop-only {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-desktop-only {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-desktop-only {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-desktop-only {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-desktop-only {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-desktop-only {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-desktop-only {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-desktop-only {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .cell.is-col-start-1-widescreen {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-widescreen {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-widescreen {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-widescreen {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-widescreen {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-widescreen {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-widescreen {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-widescreen {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-widescreen {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-widescreen {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-widescreen {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-widescreen {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-widescreen {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-widescreen {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-widescreen {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-widescreen {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-widescreen {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-widescreen {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-widescreen {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-widescreen {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-widescreen {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-widescreen {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-widescreen {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-widescreen {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-widescreen {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-widescreen {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-widescreen {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-widescreen {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-widescreen {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-widescreen {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-widescreen {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-widescreen {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-widescreen {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-widescreen {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-widescreen {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-widescreen {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-widescreen {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-widescreen {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-widescreen {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-widescreen {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-widescreen {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-widescreen {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-widescreen {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-widescreen {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-widescreen {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-widescreen {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-widescreen {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-widescreen {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-widescreen {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-widescreen {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-widescreen {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-widescreen {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-widescreen {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-widescreen {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-widescreen {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-widescreen {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-widescreen {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-widescreen {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-widescreen {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-widescreen {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-widescreen {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-widescreen {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-widescreen {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-widescreen {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-widescreen {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-widescreen {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-widescreen {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-widescreen {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-widescreen {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-widescreen {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-widescreen {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-widescreen {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-widescreen {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-widescreen {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-widescreen {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-widescreen {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-widescreen {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-widescreen {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-widescreen {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-widescreen {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-widescreen {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-widescreen {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-widescreen {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-widescreen {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-widescreen {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-widescreen {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-widescreen {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-widescreen {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-widescreen {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-widescreen {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-widescreen {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-widescreen {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-widescreen {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-widescreen {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-widescreen {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-widescreen {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 1216px) and (max-width: 1407px) {
-  .cell.is-col-start-1-widescreen-only {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-widescreen-only {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-widescreen-only {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-widescreen-only {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-widescreen-only {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-widescreen-only {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-widescreen-only {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-widescreen-only {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-widescreen-only {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-widescreen-only {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-widescreen-only {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-widescreen-only {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-widescreen-only {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-widescreen-only {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-widescreen-only {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-widescreen-only {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-widescreen-only {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-widescreen-only {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-widescreen-only {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-widescreen-only {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-widescreen-only {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-widescreen-only {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-widescreen-only {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-widescreen-only {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-widescreen-only {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-widescreen-only {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-widescreen-only {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-widescreen-only {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-widescreen-only {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-widescreen-only {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-widescreen-only {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-widescreen-only {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-widescreen-only {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-widescreen-only {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-widescreen-only {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-widescreen-only {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-widescreen-only {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-widescreen-only {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-widescreen-only {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-widescreen-only {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-widescreen-only {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-widescreen-only {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-widescreen-only {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-widescreen-only {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-widescreen-only {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-widescreen-only {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-widescreen-only {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-widescreen-only {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-widescreen-only {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-widescreen-only {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-widescreen-only {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-widescreen-only {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-widescreen-only {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-widescreen-only {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-widescreen-only {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-widescreen-only {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-widescreen-only {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-widescreen-only {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-widescreen-only {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-widescreen-only {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-widescreen-only {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-widescreen-only {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-widescreen-only {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-widescreen-only {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-widescreen-only {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-widescreen-only {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-widescreen-only {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-widescreen-only {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-widescreen-only {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-widescreen-only {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-widescreen-only {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-widescreen-only {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-widescreen-only {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-widescreen-only {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-widescreen-only {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-widescreen-only {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-widescreen-only {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-widescreen-only {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-widescreen-only {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-widescreen-only {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-widescreen-only {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-widescreen-only {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-widescreen-only {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-widescreen-only {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-widescreen-only {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-widescreen-only {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-widescreen-only {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-widescreen-only {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-widescreen-only {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-widescreen-only {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-widescreen-only {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-widescreen-only {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-widescreen-only {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-widescreen-only {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-widescreen-only {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-widescreen-only {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .cell.is-col-start-1-fullhd {
-    --bulma-grid-cell-column-start: 1;
-  }
-  .cell.is-col-end-1-fullhd {
-    --bulma-grid-cell-column-end: 1;
-  }
-  .cell.is-col-from-end-1-fullhd {
-    --bulma-grid-cell-column-start: -1;
-  }
-  .cell.is-col-span-1-fullhd {
-    --bulma-grid-cell-column-span: 1;
-  }
-  .cell.is-row-start-1-fullhd {
-    --bulma-grid-cell-row-start: 1;
-  }
-  .cell.is-row-end-1-fullhd {
-    --bulma-grid-cell-row-end: 1;
-  }
-  .cell.is-row-from-end-1-fullhd {
-    --bulma-grid-cell-row-start: -1;
-  }
-  .cell.is-row-span-1-fullhd {
-    --bulma-grid-cell-row-span: 1;
-  }
-  .cell.is-col-start-2-fullhd {
-    --bulma-grid-cell-column-start: 2;
-  }
-  .cell.is-col-end-2-fullhd {
-    --bulma-grid-cell-column-end: 2;
-  }
-  .cell.is-col-from-end-2-fullhd {
-    --bulma-grid-cell-column-start: -2;
-  }
-  .cell.is-col-span-2-fullhd {
-    --bulma-grid-cell-column-span: 2;
-  }
-  .cell.is-row-start-2-fullhd {
-    --bulma-grid-cell-row-start: 2;
-  }
-  .cell.is-row-end-2-fullhd {
-    --bulma-grid-cell-row-end: 2;
-  }
-  .cell.is-row-from-end-2-fullhd {
-    --bulma-grid-cell-row-start: -2;
-  }
-  .cell.is-row-span-2-fullhd {
-    --bulma-grid-cell-row-span: 2;
-  }
-  .cell.is-col-start-3-fullhd {
-    --bulma-grid-cell-column-start: 3;
-  }
-  .cell.is-col-end-3-fullhd {
-    --bulma-grid-cell-column-end: 3;
-  }
-  .cell.is-col-from-end-3-fullhd {
-    --bulma-grid-cell-column-start: -3;
-  }
-  .cell.is-col-span-3-fullhd {
-    --bulma-grid-cell-column-span: 3;
-  }
-  .cell.is-row-start-3-fullhd {
-    --bulma-grid-cell-row-start: 3;
-  }
-  .cell.is-row-end-3-fullhd {
-    --bulma-grid-cell-row-end: 3;
-  }
-  .cell.is-row-from-end-3-fullhd {
-    --bulma-grid-cell-row-start: -3;
-  }
-  .cell.is-row-span-3-fullhd {
-    --bulma-grid-cell-row-span: 3;
-  }
-  .cell.is-col-start-4-fullhd {
-    --bulma-grid-cell-column-start: 4;
-  }
-  .cell.is-col-end-4-fullhd {
-    --bulma-grid-cell-column-end: 4;
-  }
-  .cell.is-col-from-end-4-fullhd {
-    --bulma-grid-cell-column-start: -4;
-  }
-  .cell.is-col-span-4-fullhd {
-    --bulma-grid-cell-column-span: 4;
-  }
-  .cell.is-row-start-4-fullhd {
-    --bulma-grid-cell-row-start: 4;
-  }
-  .cell.is-row-end-4-fullhd {
-    --bulma-grid-cell-row-end: 4;
-  }
-  .cell.is-row-from-end-4-fullhd {
-    --bulma-grid-cell-row-start: -4;
-  }
-  .cell.is-row-span-4-fullhd {
-    --bulma-grid-cell-row-span: 4;
-  }
-  .cell.is-col-start-5-fullhd {
-    --bulma-grid-cell-column-start: 5;
-  }
-  .cell.is-col-end-5-fullhd {
-    --bulma-grid-cell-column-end: 5;
-  }
-  .cell.is-col-from-end-5-fullhd {
-    --bulma-grid-cell-column-start: -5;
-  }
-  .cell.is-col-span-5-fullhd {
-    --bulma-grid-cell-column-span: 5;
-  }
-  .cell.is-row-start-5-fullhd {
-    --bulma-grid-cell-row-start: 5;
-  }
-  .cell.is-row-end-5-fullhd {
-    --bulma-grid-cell-row-end: 5;
-  }
-  .cell.is-row-from-end-5-fullhd {
-    --bulma-grid-cell-row-start: -5;
-  }
-  .cell.is-row-span-5-fullhd {
-    --bulma-grid-cell-row-span: 5;
-  }
-  .cell.is-col-start-6-fullhd {
-    --bulma-grid-cell-column-start: 6;
-  }
-  .cell.is-col-end-6-fullhd {
-    --bulma-grid-cell-column-end: 6;
-  }
-  .cell.is-col-from-end-6-fullhd {
-    --bulma-grid-cell-column-start: -6;
-  }
-  .cell.is-col-span-6-fullhd {
-    --bulma-grid-cell-column-span: 6;
-  }
-  .cell.is-row-start-6-fullhd {
-    --bulma-grid-cell-row-start: 6;
-  }
-  .cell.is-row-end-6-fullhd {
-    --bulma-grid-cell-row-end: 6;
-  }
-  .cell.is-row-from-end-6-fullhd {
-    --bulma-grid-cell-row-start: -6;
-  }
-  .cell.is-row-span-6-fullhd {
-    --bulma-grid-cell-row-span: 6;
-  }
-  .cell.is-col-start-7-fullhd {
-    --bulma-grid-cell-column-start: 7;
-  }
-  .cell.is-col-end-7-fullhd {
-    --bulma-grid-cell-column-end: 7;
-  }
-  .cell.is-col-from-end-7-fullhd {
-    --bulma-grid-cell-column-start: -7;
-  }
-  .cell.is-col-span-7-fullhd {
-    --bulma-grid-cell-column-span: 7;
-  }
-  .cell.is-row-start-7-fullhd {
-    --bulma-grid-cell-row-start: 7;
-  }
-  .cell.is-row-end-7-fullhd {
-    --bulma-grid-cell-row-end: 7;
-  }
-  .cell.is-row-from-end-7-fullhd {
-    --bulma-grid-cell-row-start: -7;
-  }
-  .cell.is-row-span-7-fullhd {
-    --bulma-grid-cell-row-span: 7;
-  }
-  .cell.is-col-start-8-fullhd {
-    --bulma-grid-cell-column-start: 8;
-  }
-  .cell.is-col-end-8-fullhd {
-    --bulma-grid-cell-column-end: 8;
-  }
-  .cell.is-col-from-end-8-fullhd {
-    --bulma-grid-cell-column-start: -8;
-  }
-  .cell.is-col-span-8-fullhd {
-    --bulma-grid-cell-column-span: 8;
-  }
-  .cell.is-row-start-8-fullhd {
-    --bulma-grid-cell-row-start: 8;
-  }
-  .cell.is-row-end-8-fullhd {
-    --bulma-grid-cell-row-end: 8;
-  }
-  .cell.is-row-from-end-8-fullhd {
-    --bulma-grid-cell-row-start: -8;
-  }
-  .cell.is-row-span-8-fullhd {
-    --bulma-grid-cell-row-span: 8;
-  }
-  .cell.is-col-start-9-fullhd {
-    --bulma-grid-cell-column-start: 9;
-  }
-  .cell.is-col-end-9-fullhd {
-    --bulma-grid-cell-column-end: 9;
-  }
-  .cell.is-col-from-end-9-fullhd {
-    --bulma-grid-cell-column-start: -9;
-  }
-  .cell.is-col-span-9-fullhd {
-    --bulma-grid-cell-column-span: 9;
-  }
-  .cell.is-row-start-9-fullhd {
-    --bulma-grid-cell-row-start: 9;
-  }
-  .cell.is-row-end-9-fullhd {
-    --bulma-grid-cell-row-end: 9;
-  }
-  .cell.is-row-from-end-9-fullhd {
-    --bulma-grid-cell-row-start: -9;
-  }
-  .cell.is-row-span-9-fullhd {
-    --bulma-grid-cell-row-span: 9;
-  }
-  .cell.is-col-start-10-fullhd {
-    --bulma-grid-cell-column-start: 10;
-  }
-  .cell.is-col-end-10-fullhd {
-    --bulma-grid-cell-column-end: 10;
-  }
-  .cell.is-col-from-end-10-fullhd {
-    --bulma-grid-cell-column-start: -10;
-  }
-  .cell.is-col-span-10-fullhd {
-    --bulma-grid-cell-column-span: 10;
-  }
-  .cell.is-row-start-10-fullhd {
-    --bulma-grid-cell-row-start: 10;
-  }
-  .cell.is-row-end-10-fullhd {
-    --bulma-grid-cell-row-end: 10;
-  }
-  .cell.is-row-from-end-10-fullhd {
-    --bulma-grid-cell-row-start: -10;
-  }
-  .cell.is-row-span-10-fullhd {
-    --bulma-grid-cell-row-span: 10;
-  }
-  .cell.is-col-start-11-fullhd {
-    --bulma-grid-cell-column-start: 11;
-  }
-  .cell.is-col-end-11-fullhd {
-    --bulma-grid-cell-column-end: 11;
-  }
-  .cell.is-col-from-end-11-fullhd {
-    --bulma-grid-cell-column-start: -11;
-  }
-  .cell.is-col-span-11-fullhd {
-    --bulma-grid-cell-column-span: 11;
-  }
-  .cell.is-row-start-11-fullhd {
-    --bulma-grid-cell-row-start: 11;
-  }
-  .cell.is-row-end-11-fullhd {
-    --bulma-grid-cell-row-end: 11;
-  }
-  .cell.is-row-from-end-11-fullhd {
-    --bulma-grid-cell-row-start: -11;
-  }
-  .cell.is-row-span-11-fullhd {
-    --bulma-grid-cell-row-span: 11;
-  }
-  .cell.is-col-start-12-fullhd {
-    --bulma-grid-cell-column-start: 12;
-  }
-  .cell.is-col-end-12-fullhd {
-    --bulma-grid-cell-column-end: 12;
-  }
-  .cell.is-col-from-end-12-fullhd {
-    --bulma-grid-cell-column-start: -12;
-  }
-  .cell.is-col-span-12-fullhd {
-    --bulma-grid-cell-column-span: 12;
-  }
-  .cell.is-row-start-12-fullhd {
-    --bulma-grid-cell-row-start: 12;
-  }
-  .cell.is-row-end-12-fullhd {
-    --bulma-grid-cell-row-end: 12;
-  }
-  .cell.is-row-from-end-12-fullhd {
-    --bulma-grid-cell-row-start: -12;
-  }
-  .cell.is-row-span-12-fullhd {
-    --bulma-grid-cell-row-span: 12;
-  }
-}
-
-/* Bulma Components */
-.container {
-  flex-grow: 1;
-  margin: 0 auto;
-  position: relative;
-  width: 100%;
-}
-.container.is-fluid {
-  max-width: none !important;
-  padding-left: 32px;
-  padding-right: 32px;
-  width: 100%;
-}
-.container.is-max-tablet {
-  max-width: 705px;
-}
-@media screen and (min-width: 1024px) {
-  .container {
-    max-width: 960px;
-  }
-}
-@media screen and (max-width: 1215px) {
-  .container.is-widescreen:not(.is-max-tablet):not(.is-max-desktop) {
-    max-width: 1152px;
-  }
-}
-@media screen and (max-width: 1407px) {
-  .container.is-fullhd:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) {
-    max-width: 1344px;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .container:not(.is-max-tablet):not(.is-max-desktop) {
-    max-width: 1152px;
-  }
-}
-@media screen and (min-width: 1408px) {
-  .container:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) {
-    max-width: 1344px;
-  }
-}
-
-.footer {
-  --bulma-footer-background-color: var(--bulma-scheme-main-bis);
-  --bulma-footer-color: false;
-  --bulma-footer-padding: 3rem 1.5rem 6rem;
-  background-color: var(--bulma-footer-background-color);
-  padding: var(--bulma-footer-padding);
-}
-
-.hero {
-  --bulma-hero-body-padding: 3rem 1.5rem;
-  --bulma-hero-body-padding-tablet: 3rem 3rem;
-  --bulma-hero-body-padding-small: 1.5rem;
-  --bulma-hero-body-padding-medium: 9rem 4.5rem;
-  --bulma-hero-body-padding-large: 18rem 6rem;
-  --bulma-hero-gradient-h-offset: 5deg;
-  --bulma-hero-gradient-s-offset: 10%;
-  --bulma-hero-gradient-l-offset: 5%;
-}
-
-.hero {
+.tile {
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
   align-items: stretch;
-  display: flex;
-  flex-direction: column;
-  justify-content: space-between;
-}
-.hero .navbar {
-  background: none;
-}
-.hero .tabs ul {
-  border-bottom: none;
-}
-.hero.is-white {
-  --bulma-hero-h: var(--bulma-white-h);
-  --bulma-hero-s: var(--bulma-white-s);
-  --bulma-hero-background-l: var(--bulma-white-l);
-  --bulma-hero-color-l: var(--bulma-white-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-white .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-white .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-white .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-white .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-white.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-white.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-black {
-  --bulma-hero-h: var(--bulma-black-h);
-  --bulma-hero-s: var(--bulma-black-s);
-  --bulma-hero-background-l: var(--bulma-black-l);
-  --bulma-hero-color-l: var(--bulma-black-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-black .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-black .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-black .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-black .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-black.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-black.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-light {
-  --bulma-hero-h: var(--bulma-light-h);
-  --bulma-hero-s: var(--bulma-light-s);
-  --bulma-hero-background-l: var(--bulma-light-l);
-  --bulma-hero-color-l: var(--bulma-light-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-light .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-light .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-light .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-light .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-light.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-light.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-dark {
-  --bulma-hero-h: var(--bulma-dark-h);
-  --bulma-hero-s: var(--bulma-dark-s);
-  --bulma-hero-background-l: var(--bulma-dark-l);
-  --bulma-hero-color-l: var(--bulma-dark-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-dark .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-dark .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-dark .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-dark .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-dark.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-dark.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-text {
-  --bulma-hero-h: var(--bulma-text-h);
-  --bulma-hero-s: var(--bulma-text-s);
-  --bulma-hero-background-l: var(--bulma-text-l);
-  --bulma-hero-color-l: var(--bulma-text-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-text .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-text .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-text .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-text .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-text.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-text.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-primary {
-  --bulma-hero-h: var(--bulma-primary-h);
-  --bulma-hero-s: var(--bulma-primary-s);
-  --bulma-hero-background-l: var(--bulma-primary-l);
-  --bulma-hero-color-l: var(--bulma-primary-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-primary .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-primary .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-primary .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-primary .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-primary.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-primary.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-link {
-  --bulma-hero-h: var(--bulma-link-h);
-  --bulma-hero-s: var(--bulma-link-s);
-  --bulma-hero-background-l: var(--bulma-link-l);
-  --bulma-hero-color-l: var(--bulma-link-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-link .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-link .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-link .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-link .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-link.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-link.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-info {
-  --bulma-hero-h: var(--bulma-info-h);
-  --bulma-hero-s: var(--bulma-info-s);
-  --bulma-hero-background-l: var(--bulma-info-l);
-  --bulma-hero-color-l: var(--bulma-info-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-info .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-info .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-info .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-info .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-info.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-info.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-success {
-  --bulma-hero-h: var(--bulma-success-h);
-  --bulma-hero-s: var(--bulma-success-s);
-  --bulma-hero-background-l: var(--bulma-success-l);
-  --bulma-hero-color-l: var(--bulma-success-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-success .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-success .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-success .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-success .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-success.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-success.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-warning {
-  --bulma-hero-h: var(--bulma-warning-h);
-  --bulma-hero-s: var(--bulma-warning-s);
-  --bulma-hero-background-l: var(--bulma-warning-l);
-  --bulma-hero-color-l: var(--bulma-warning-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-warning .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-warning .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-warning .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-warning .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-warning.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-warning.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-danger {
-  --bulma-hero-h: var(--bulma-danger-h);
-  --bulma-hero-s: var(--bulma-danger-s);
-  --bulma-hero-background-l: var(--bulma-danger-l);
-  --bulma-hero-color-l: var(--bulma-danger-invert-l);
-  background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-danger .navbar {
-  --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-danger .tabs {
-  --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-  --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
-}
-.hero.is-danger .subtitle {
-  --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-danger .title {
-  --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-  --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
-}
-.hero.is-danger.is-bold {
-  background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-}
-@media screen and (max-width: 768px) {
-  .hero.is-danger.is-bold .navbar-menu {
-    background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
-  }
-}
-.hero.is-small .hero-body {
-  padding: var(--bulma-hero-body-padding-small);
-}
-@media screen and (min-width: 769px), print {
-  .hero.is-medium .hero-body {
-    padding: var(--bulma-hero-body-padding-medium);
-  }
-}
-@media screen and (min-width: 769px), print {
-  .hero.is-large .hero-body {
-    padding: var(--bulma-hero-body-padding-large);
-  }
-}
-.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body {
-  align-items: center;
-  display: flex;
-}
-.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container {
+  display: block;
+  -ms-flex-preferred-size: 0;
+  flex-basis: 0;
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
+  -ms-flex-negative: 1;
   flex-shrink: 1;
-}
-.hero.is-halfheight {
-  min-height: 50vh;
-}
-.hero.is-fullheight {
-  min-height: 100vh;
-}
+  min-height: -webkit-min-content;
+  min-height: -moz-min-content;
+  min-height: min-content; }
+  .tile.is-ancestor {
+    margin-left: -0.75rem;
+    margin-right: -0.75rem;
+    margin-top: -0.75rem; }
+    .tile.is-ancestor:last-child {
+      margin-bottom: -0.75rem; }
+    .tile.is-ancestor:not(:last-child) {
+      margin-bottom: 0.75rem; }
+  .tile.is-child {
+    margin: 0 !important; }
+  .tile.is-parent {
+    padding: 0.75rem; }
+  .tile.is-vertical {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: normal;
+    -ms-flex-direction: column;
+    flex-direction: column; }
+    .tile.is-vertical > .tile.is-child:not(:last-child) {
+      margin-bottom: 1.5rem !important; }
+  @media screen and (min-width: 769px), print {
+    .tile:not(.is-child) {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; }
+    .tile.is-1 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 8.33333%; }
+    .tile.is-2 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 16.66667%; }
+    .tile.is-3 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 25%; }
+    .tile.is-4 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 33.33333%; }
+    .tile.is-5 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 41.66667%; }
+    .tile.is-6 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 50%; }
+    .tile.is-7 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 58.33333%; }
+    .tile.is-8 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 66.66667%; }
+    .tile.is-9 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 75%; }
+    .tile.is-10 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 83.33333%; }
+    .tile.is-11 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 91.66667%; }
+    .tile.is-12 {
+      -webkit-box-flex: 0;
+      -ms-flex: none;
+      flex: none;
+      width: 100%; } }
+
+.hero {
+  -webkit-box-align: stretch;
+  -ms-flex-align: stretch;
+  align-items: stretch;
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-orient: vertical;
+  -webkit-box-direction: normal;
+  -ms-flex-direction: column;
+  flex-direction: column;
+  -webkit-box-pack: justify;
+  -ms-flex-pack: justify;
+  justify-content: space-between; }
+  .hero .navbar {
+    background: none; }
+  .hero .tabs ul {
+    border-bottom: none; }
+  .hero.is-white {
+    background-color: white;
+    color: #0a0a0a; }
+    .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-white strong {
+      color: inherit; }
+    .hero.is-white .title {
+      color: #0a0a0a; }
+    .hero.is-white .subtitle {
+      color: rgba(10, 10, 10, 0.9); }
+      .hero.is-white .subtitle a:not(.button),
+      .hero.is-white .subtitle strong {
+        color: #0a0a0a; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-white .navbar-menu {
+        background-color: white; } }
+    .hero.is-white .navbar-item,
+    .hero.is-white .navbar-link {
+      color: rgba(10, 10, 10, 0.7); }
+    .hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active,
+    .hero.is-white .navbar-link:hover,
+    .hero.is-white .navbar-link.is-active {
+      background-color: #f2f2f2;
+      color: #0a0a0a; }
+    .hero.is-white .tabs a {
+      color: #0a0a0a;
+      opacity: 0.9; }
+      .hero.is-white .tabs a:hover {
+        opacity: 1; }
+    .hero.is-white .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
+      color: #0a0a0a; }
+      .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover {
+      background-color: #0a0a0a;
+      border-color: #0a0a0a;
+      color: white; }
+    .hero.is-white.is-bold {
+      background-image: -o-linear-gradient(309deg, #e6e6e6 0%, white 71%, white 100%);
+      background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-white.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #e6e6e6 0%, white 71%, white 100%);
+          background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } }
+  .hero.is-black {
+    background-color: #0a0a0a;
+    color: white; }
+    .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-black strong {
+      color: inherit; }
+    .hero.is-black .title {
+      color: white; }
+    .hero.is-black .subtitle {
+      color: rgba(255, 255, 255, 0.9); }
+      .hero.is-black .subtitle a:not(.button),
+      .hero.is-black .subtitle strong {
+        color: white; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-black .navbar-menu {
+        background-color: #0a0a0a; } }
+    .hero.is-black .navbar-item,
+    .hero.is-black .navbar-link {
+      color: rgba(255, 255, 255, 0.7); }
+    .hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active,
+    .hero.is-black .navbar-link:hover,
+    .hero.is-black .navbar-link.is-active {
+      background-color: black;
+      color: white; }
+    .hero.is-black .tabs a {
+      color: white;
+      opacity: 0.9; }
+      .hero.is-black .tabs a:hover {
+        opacity: 1; }
+    .hero.is-black .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
+      color: white; }
+      .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover {
+      background-color: white;
+      border-color: white;
+      color: #0a0a0a; }
+    .hero.is-black.is-bold {
+      background-image: -o-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%);
+      background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-black.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%);
+          background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } }
+  .hero.is-light {
+    background-color: whitesmoke;
+    color: #363636; }
+    .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-light strong {
+      color: inherit; }
+    .hero.is-light .title {
+      color: #363636; }
+    .hero.is-light .subtitle {
+      color: rgba(54, 54, 54, 0.9); }
+      .hero.is-light .subtitle a:not(.button),
+      .hero.is-light .subtitle strong {
+        color: #363636; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-light .navbar-menu {
+        background-color: whitesmoke; } }
+    .hero.is-light .navbar-item,
+    .hero.is-light .navbar-link {
+      color: rgba(54, 54, 54, 0.7); }
+    .hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active,
+    .hero.is-light .navbar-link:hover,
+    .hero.is-light .navbar-link.is-active {
+      background-color: #e8e8e8;
+      color: #363636; }
+    .hero.is-light .tabs a {
+      color: #363636;
+      opacity: 0.9; }
+      .hero.is-light .tabs a:hover {
+        opacity: 1; }
+    .hero.is-light .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a {
+      color: #363636; }
+      .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover {
+      background-color: #363636;
+      border-color: #363636;
+      color: whitesmoke; }
+    .hero.is-light.is-bold {
+      background-image: -o-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
+      background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-light.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
+          background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } }
+  .hero.is-dark {
+    background-color: #363636;
+    color: whitesmoke; }
+    .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-dark strong {
+      color: inherit; }
+    .hero.is-dark .title {
+      color: whitesmoke; }
+    .hero.is-dark .subtitle {
+      color: rgba(245, 245, 245, 0.9); }
+      .hero.is-dark .subtitle a:not(.button),
+      .hero.is-dark .subtitle strong {
+        color: whitesmoke; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-dark .navbar-menu {
+        background-color: #363636; } }
+    .hero.is-dark .navbar-item,
+    .hero.is-dark .navbar-link {
+      color: rgba(245, 245, 245, 0.7); }
+    .hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active,
+    .hero.is-dark .navbar-link:hover,
+    .hero.is-dark .navbar-link.is-active {
+      background-color: #292929;
+      color: whitesmoke; }
+    .hero.is-dark .tabs a {
+      color: whitesmoke;
+      opacity: 0.9; }
+      .hero.is-dark .tabs a:hover {
+        opacity: 1; }
+    .hero.is-dark .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
+      color: whitesmoke; }
+      .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover {
+      background-color: whitesmoke;
+      border-color: whitesmoke;
+      color: #363636; }
+    .hero.is-dark.is-bold {
+      background-image: -o-linear-gradient(309deg, #1f191a 0%, #363636 71%, #46403f 100%);
+      background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-dark.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #1f191a 0%, #363636 71%, #46403f 100%);
+          background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } }
+  .hero.is-primary {
+    background-color: #478D00;
+    color: #fff; }
+    .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-primary strong {
+      color: inherit; }
+    .hero.is-primary .title {
+      color: #fff; }
+    .hero.is-primary .subtitle {
+      color: rgba(255, 255, 255, 0.9); }
+      .hero.is-primary .subtitle a:not(.button),
+      .hero.is-primary .subtitle strong {
+        color: #fff; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-primary .navbar-menu {
+        background-color: #478D00; } }
+    .hero.is-primary .navbar-item,
+    .hero.is-primary .navbar-link {
+      color: rgba(255, 255, 255, 0.7); }
+    .hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
+    .hero.is-primary .navbar-link:hover,
+    .hero.is-primary .navbar-link.is-active {
+      background-color: #3a7400;
+      color: #fff; }
+    .hero.is-primary .tabs a {
+      color: #fff;
+      opacity: 0.9; }
+      .hero.is-primary .tabs a:hover {
+        opacity: 1; }
+    .hero.is-primary .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
+      color: #fff; }
+      .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
+      background-color: #fff;
+      border-color: #fff;
+      color: #478D00; }
+    .hero.is-primary.is-bold {
+      background-image: -o-linear-gradient(309deg, #3c5a00 0%, #478D00 71%, #38a700 100%);
+      background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-primary.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #3c5a00 0%, #478D00 71%, #38a700 100%);
+          background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); } }
+  .hero.is-link {
+    background-color: #4391E0;
+    color: #fff; }
+    .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-link strong {
+      color: inherit; }
+    .hero.is-link .title {
+      color: #fff; }
+    .hero.is-link .subtitle {
+      color: rgba(255, 255, 255, 0.9); }
+      .hero.is-link .subtitle a:not(.button),
+      .hero.is-link .subtitle strong {
+        color: #fff; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-link .navbar-menu {
+        background-color: #4391E0; } }
+    .hero.is-link .navbar-item,
+    .hero.is-link .navbar-link {
+      color: rgba(255, 255, 255, 0.7); }
+    .hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active,
+    .hero.is-link .navbar-link:hover,
+    .hero.is-link .navbar-link.is-active {
+      background-color: #2d84dc;
+      color: #fff; }
+    .hero.is-link .tabs a {
+      color: #fff;
+      opacity: 0.9; }
+      .hero.is-link .tabs a:hover {
+        opacity: 1; }
+    .hero.is-link .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a {
+      color: #fff; }
+      .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover {
+      background-color: #fff;
+      border-color: #fff;
+      color: #4391E0; }
+    .hero.is-link.is-bold {
+      background-image: -o-linear-gradient(309deg, #1698da 0%, #4391E0 71%, #5485e8 100%);
+      background-image: linear-gradient(141deg, #1698da 0%, #4391E0 71%, #5485e8 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-link.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #1698da 0%, #4391E0 71%, #5485e8 100%);
+          background-image: linear-gradient(141deg, #1698da 0%, #4391E0 71%, #5485e8 100%); } }
+  .hero.is-info {
+    background-color: #209cee;
+    color: #fff; }
+    .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-info strong {
+      color: inherit; }
+    .hero.is-info .title {
+      color: #fff; }
+    .hero.is-info .subtitle {
+      color: rgba(255, 255, 255, 0.9); }
+      .hero.is-info .subtitle a:not(.button),
+      .hero.is-info .subtitle strong {
+        color: #fff; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-info .navbar-menu {
+        background-color: #209cee; } }
+    .hero.is-info .navbar-item,
+    .hero.is-info .navbar-link {
+      color: rgba(255, 255, 255, 0.7); }
+    .hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active,
+    .hero.is-info .navbar-link:hover,
+    .hero.is-info .navbar-link.is-active {
+      background-color: #118fe4;
+      color: #fff; }
+    .hero.is-info .tabs a {
+      color: #fff;
+      opacity: 0.9; }
+      .hero.is-info .tabs a:hover {
+        opacity: 1; }
+    .hero.is-info .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
+      color: #fff; }
+      .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover {
+      background-color: #fff;
+      border-color: #fff;
+      color: #209cee; }
+    .hero.is-info.is-bold {
+      background-image: -o-linear-gradient(309deg, #04a6d7 0%, #209cee 71%, #3287f5 100%);
+      background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-info.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #04a6d7 0%, #209cee 71%, #3287f5 100%);
+          background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%); } }
+  .hero.is-success {
+    background-color: #478D00;
+    color: #fff; }
+    .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-success strong {
+      color: inherit; }
+    .hero.is-success .title {
+      color: #fff; }
+    .hero.is-success .subtitle {
+      color: rgba(255, 255, 255, 0.9); }
+      .hero.is-success .subtitle a:not(.button),
+      .hero.is-success .subtitle strong {
+        color: #fff; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-success .navbar-menu {
+        background-color: #478D00; } }
+    .hero.is-success .navbar-item,
+    .hero.is-success .navbar-link {
+      color: rgba(255, 255, 255, 0.7); }
+    .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
+    .hero.is-success .navbar-link:hover,
+    .hero.is-success .navbar-link.is-active {
+      background-color: #3a7400;
+      color: #fff; }
+    .hero.is-success .tabs a {
+      color: #fff;
+      opacity: 0.9; }
+      .hero.is-success .tabs a:hover {
+        opacity: 1; }
+    .hero.is-success .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
+      color: #fff; }
+      .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
+      background-color: #fff;
+      border-color: #fff;
+      color: #478D00; }
+    .hero.is-success.is-bold {
+      background-image: -o-linear-gradient(309deg, #3c5a00 0%, #478D00 71%, #38a700 100%);
+      background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-success.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #3c5a00 0%, #478D00 71%, #38a700 100%);
+          background-image: linear-gradient(141deg, #3c5a00 0%, #478D00 71%, #38a700 100%); } }
+  .hero.is-warning {
+    background-color: #ffdd57;
+    color: rgba(0, 0, 0, 0.7); }
+    .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-warning strong {
+      color: inherit; }
+    .hero.is-warning .title {
+      color: rgba(0, 0, 0, 0.7); }
+    .hero.is-warning .subtitle {
+      color: rgba(0, 0, 0, 0.9); }
+      .hero.is-warning .subtitle a:not(.button),
+      .hero.is-warning .subtitle strong {
+        color: rgba(0, 0, 0, 0.7); }
+    @media screen and (max-width: 1023px) {
+      .hero.is-warning .navbar-menu {
+        background-color: #ffdd57; } }
+    .hero.is-warning .navbar-item,
+    .hero.is-warning .navbar-link {
+      color: rgba(0, 0, 0, 0.7); }
+    .hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active,
+    .hero.is-warning .navbar-link:hover,
+    .hero.is-warning .navbar-link.is-active {
+      background-color: #ffd83d;
+      color: rgba(0, 0, 0, 0.7); }
+    .hero.is-warning .tabs a {
+      color: rgba(0, 0, 0, 0.7);
+      opacity: 0.9; }
+      .hero.is-warning .tabs a:hover {
+        opacity: 1; }
+    .hero.is-warning .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
+      color: rgba(0, 0, 0, 0.7); }
+      .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover {
+      background-color: rgba(0, 0, 0, 0.7);
+      border-color: rgba(0, 0, 0, 0.7);
+      color: #ffdd57; }
+    .hero.is-warning.is-bold {
+      background-image: -o-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
+      background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-warning.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
+          background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); } }
+  .hero.is-danger {
+    background-color: #a70c20;
+    color: #fff; }
+    .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
+    .hero.is-danger strong {
+      color: inherit; }
+    .hero.is-danger .title {
+      color: #fff; }
+    .hero.is-danger .subtitle {
+      color: rgba(255, 255, 255, 0.9); }
+      .hero.is-danger .subtitle a:not(.button),
+      .hero.is-danger .subtitle strong {
+        color: #fff; }
+    @media screen and (max-width: 1023px) {
+      .hero.is-danger .navbar-menu {
+        background-color: #a70c20; } }
+    .hero.is-danger .navbar-item,
+    .hero.is-danger .navbar-link {
+      color: rgba(255, 255, 255, 0.7); }
+    .hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active,
+    .hero.is-danger .navbar-link:hover,
+    .hero.is-danger .navbar-link.is-active {
+      background-color: #8f0a1b;
+      color: #fff; }
+    .hero.is-danger .tabs a {
+      color: #fff;
+      opacity: 0.9; }
+      .hero.is-danger .tabs a:hover {
+        opacity: 1; }
+    .hero.is-danger .tabs li.is-active a {
+      opacity: 1; }
+    .hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
+      color: #fff; }
+      .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
+        background-color: rgba(10, 10, 10, 0.1); }
+    .hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover {
+      background-color: #fff;
+      border-color: #fff;
+      color: #a70c20; }
+    .hero.is-danger.is-bold {
+      background-image: -o-linear-gradient(309deg, #7e0227 0%, #a70c20 71%, #c41009 100%);
+      background-image: linear-gradient(141deg, #7e0227 0%, #a70c20 71%, #c41009 100%); }
+      @media screen and (max-width: 768px) {
+        .hero.is-danger.is-bold .navbar-menu {
+          background-image: -o-linear-gradient(309deg, #7e0227 0%, #a70c20 71%, #c41009 100%);
+          background-image: linear-gradient(141deg, #7e0227 0%, #a70c20 71%, #c41009 100%); } }
+  .hero.is-small .hero-body {
+    padding-bottom: 1.5rem;
+    padding-top: 1.5rem; }
+  @media screen and (min-width: 769px), print {
+    .hero.is-medium .hero-body {
+      padding-bottom: 9rem;
+      padding-top: 9rem; } }
+  @media screen and (min-width: 769px), print {
+    .hero.is-large .hero-body {
+      padding-bottom: 18rem;
+      padding-top: 18rem; } }
+  .hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body {
+    -webkit-box-align: center;
+    -ms-flex-align: center;
+    align-items: center;
+    display: -webkit-box;
+    display: -ms-flexbox;
+    display: flex; }
+    .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container {
+      -webkit-box-flex: 1;
+      -ms-flex-positive: 1;
+      flex-grow: 1;
+      -ms-flex-negative: 1;
+      flex-shrink: 1; }
+  .hero.is-halfheight {
+    min-height: 50vh; }
+  .hero.is-fullheight {
+    min-height: 100vh; }
 
 .hero-video {
-  overflow: hidden;
-}
-.hero-video video {
-  left: 50%;
-  min-height: 100%;
-  min-width: 100%;
-  position: absolute;
-  top: 50%;
-  transform: translate3d(-50%, -50%, 0);
-}
-.hero-video.is-transparent {
-  opacity: 0.3;
-}
-@media screen and (max-width: 768px) {
-  .hero-video {
-    display: none;
-  }
-}
+  overflow: hidden; }
+  .hero-video video {
+    left: 50%;
+    min-height: 100%;
+    min-width: 100%;
+    position: absolute;
+    top: 50%;
+    -webkit-transform: translate3d(-50%, -50%, 0);
+    transform: translate3d(-50%, -50%, 0); }
+  .hero-video.is-transparent {
+    opacity: 0.3; }
+  @media screen and (max-width: 768px) {
+    .hero-video {
+      display: none; } }
 
 .hero-buttons {
-  margin-top: 1.5rem;
-}
-@media screen and (max-width: 768px) {
-  .hero-buttons .button {
-    display: flex;
-  }
-  .hero-buttons .button:not(:last-child) {
-    margin-bottom: 0.75rem;
-  }
-}
-@media screen and (min-width: 769px), print {
-  .hero-buttons {
-    display: flex;
-    justify-content: center;
-  }
-  .hero-buttons .button:not(:last-child) {
-    margin-inline-end: 1.5rem;
-  }
-}
+  margin-top: 1.5rem; }
+  @media screen and (max-width: 768px) {
+    .hero-buttons .button {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex; }
+      .hero-buttons .button:not(:last-child) {
+        margin-bottom: 0.75rem; } }
+  @media screen and (min-width: 769px), print {
+    .hero-buttons {
+      display: -webkit-box;
+      display: -ms-flexbox;
+      display: flex;
+      -webkit-box-pack: center;
+      -ms-flex-pack: center;
+      justify-content: center; }
+      .hero-buttons .button:not(:last-child) {
+        margin-right: 1.5rem; } }
 
 .hero-head,
 .hero-foot {
+  -webkit-box-flex: 0;
+  -ms-flex-positive: 0;
   flex-grow: 0;
-  flex-shrink: 0;
-}
+  -ms-flex-negative: 0;
+  flex-shrink: 0; }
 
 .hero-body {
+  -webkit-box-flex: 1;
+  -ms-flex-positive: 1;
   flex-grow: 1;
+  -ms-flex-negative: 0;
   flex-shrink: 0;
-  padding: var(--bulma-hero-body-padding);
-}
-@media screen and (min-width: 769px), print {
-  .hero-body {
-    padding: var(--bulma-hero-body-padding-tablet);
-  }
-}
+  padding: 3rem 1.5rem; }
 
-.level {
-  --bulma-level-item-spacing: calc(var(--bulma-block-spacing) * 0.5);
-  align-items: center;
-  display: flex;
-  flex-direction: column;
-  justify-content: space-between;
-  gap: var(--bulma-level-item-spacing);
-}
-.level code {
-  border-radius: var(--bulma-radius);
-}
-.level img {
-  display: inline-block;
-  vertical-align: top;
-}
-.level.is-mobile {
-  display: flex;
-  flex-direction: row;
-}
-.level.is-mobile .level-left,
-.level.is-mobile .level-right {
-  display: flex;
-}
-.level.is-mobile .level-item:not(.is-narrow) {
-  flex-grow: 1;
-}
-@media screen and (min-width: 769px), print {
-  .level {
-    display: flex;
-    flex-direction: row;
-  }
-  .level > .level-item:not(.is-narrow) {
-    flex-grow: 1;
-  }
-}
-
-.level-item {
-  align-items: center;
-  display: flex;
-  flex-basis: auto;
-  flex-grow: 0;
-  flex-shrink: 0;
-  justify-content: center;
-}
-.level-item .title,
-.level-item .subtitle {
-  margin-bottom: 0;
-}
-
-.level-left,
-.level-right {
-  flex-basis: auto;
-  flex-grow: 0;
-  flex-shrink: 0;
-  gap: calc(var(--bulma-block-spacing) * 0.5);
-}
-.level-left .level-item.is-flexible,
-.level-right .level-item.is-flexible {
-  flex-grow: 1;
-}
-
-.level-left {
-  align-items: center;
-  display: flex;
-  flex-direction: column;
-  justify-content: flex-start;
-}
-@media screen and (min-width: 769px), print {
-  .level-left {
-    flex-direction: row;
-  }
-}
-
-.level-right {
-  align-items: center;
-  display: flex;
-  flex-direction: column;
-  justify-content: flex-end;
-}
-@media screen and (min-width: 769px), print {
-  .level-right {
-    flex-direction: row;
-  }
-}
-
-.media {
-  --bulma-media-border-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-border-l), 0.5);
-  --bulma-media-border-size: 1px;
-  --bulma-media-spacing: 1rem;
-  --bulma-media-spacing-large: 1.5rem;
-  --bulma-media-content-spacing: 0.75rem;
-  --bulma-media-level-1-spacing: 0.75rem;
-  --bulma-media-level-1-content-spacing: 0.5rem;
-  --bulma-media-level-2-spacing: 0.5rem;
-  align-items: flex-start;
-  display: flex;
-  text-align: inherit;
-}
-.media .content:not(:last-child) {
-  margin-bottom: var(--bulma-media-content-spacing);
-}
-.media .media {
-  border-top-color: var(--bulma-media-border-color);
-  border-top-style: solid;
-  border-top-width: var(--bulma-media-border-size);
-  display: flex;
-  padding-top: var(--bulma-media-level-1-spacing);
-}
-.media .media .content:not(:last-child),
-.media .media .control:not(:last-child) {
-  margin-bottom: var(--bulma-media-level-1-content-spacing);
-}
-.media .media .media {
-  padding-top: var(--bulma-media-level-2-spacing);
-}
-.media .media .media + .media {
-  margin-top: var(--bulma-media-level-2-spacing);
-}
-.media + .media {
-  border-top-color: var(--bulma-media-border-color);
-  border-top-style: solid;
-  border-top-width: var(--bulma-media-border-size);
-  margin-top: var(--bulma-media-spacing);
-  padding-top: var(--bulma-media-spacing);
-}
-.media.is-large + .media {
-  margin-top: var(--bulma-media-spacing-large);
-  padding-top: var(--bulma-media-spacing-large);
-}
-
-.media-left,
-.media-right {
-  flex-basis: auto;
-  flex-grow: 0;
-  flex-shrink: 0;
-}
-
-.media-left {
-  margin-inline-end: var(--bulma-media-spacing);
-}
-
-.media-right {
-  margin-inline-start: var(--bulma-media-spacing);
-}
-
-.media-content {
-  flex-basis: auto;
-  flex-grow: 1;
-  flex-shrink: 1;
-  text-align: inherit;
-}
-
-@media screen and (max-width: 768px) {
-  .media-content {
-    overflow-x: auto;
-  }
-}
 .section {
-  --bulma-section-padding: 3rem 1.5rem;
-  --bulma-section-padding-desktop: 3rem 3rem;
-  --bulma-section-padding-medium: 9rem 4.5rem;
-  --bulma-section-padding-large: 18rem 6rem;
-  padding: var(--bulma-section-padding);
-}
-@media screen and (min-width: 1024px) {
-  .section {
-    padding: var(--bulma-section-padding-desktop);
-  }
-  .section.is-medium {
-    padding: var(--bulma-section-padding-medium);
-  }
-  .section.is-large {
-    padding: var(--bulma-section-padding-large);
-  }
-}
-.section.is-fullheight {
-  min-height: 100vh;
-}
+  padding: 3rem 1.5rem; }
+  @media screen and (min-width: 1024px) {
+    .section.is-medium {
+      padding: 9rem 1.5rem; }
+    .section.is-large {
+      padding: 18rem 1.5rem; } }
 
+.footer {
+  background-color: #fafafa;
+  padding: 3rem 1.5rem 6rem; }
+
+/**
+ * Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout
+ */
+/* Center logo & sitename when they stack on tiny screens. */
 @media screen and (max-width: 362px) {
   .sitename.column,
   .logo.column {
-    width: 100%;
-  }
-}
+    width: 100%; } }
+
 .search-bar > .block,
 .logo > .image {
-  display: inline-block;
-}
+  display: inline-block; }
 
+/* Allow the primary page content to be flush with the bottom of the slogan. */
 .main-section {
-  padding-top: 0;
-}
-.main-section .group-header {
-  padding-top: 0;
-}
+  padding-top: 0; }
+  .main-section .group-header {
+    padding-top: 0; }
 
-.page--content-item--article .page-title,
-.page--content-item--blog .page-title,
-.page--content-item--collection .page-title,
-.page--content-item--people .page-title {
+/* On any page except the home, drop the title over (where we want) the image (to be). */
+.page-title {
   height: 0;
   position: relative;
   overflow: visible;
-  z-index: 10;
-}
+  z-index: 10; }
 
-/* On content listing pages (e.g. card view mode). */
-.background-replacement-for-no-image {
-  height: 10rem;
-}
-
-/* On full content pages. */
-.featured-image .background-replacement-for-no-image {
-  height: 12rem;
-}
-@media screen and (min-width: 1024px) {
-  .featured-image .background-replacement-for-no-image {
-    height: 14rem;
-  }
-}
-@media screen and (min-width: 1216px) {
-  .featured-image .background-replacement-for-no-image {
-    height: 16rem;
-  }
-}
-
-/* Yes i know i should just give author bios their own class */
-.node--type-people.node--view-mode-teaser {
-  margin-bottom: 1rem;
-}
-
-/**
- * Styles related to contributor-added content on the site, such as embedded
- * media.
- */
-iframe {
-  width: 100%;
-  height: 100%;
-}
-iframe.mastodon-embed {
-  height: revert-layer;
-}
-
-/* All classes that are mostly about adding color. */
-.background-replacement-for-no-image {
-  background-color: cadetblue;
-}
-
-/** This isn't color but it's what the color gets painted on so we'll let it stay. */
-.views-element-container.block--content > h2.subtitle {
-  padding: 0.2em 0.2em 0 0.2em;
-}
-
-/* Front page view titles (the h2) and more links (the button) get rather
-   un-SMACSS targeting, sorry. */
-.page--content-item--article .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-articles > h2.subtitle,
-.block-views-blockhome-page-views-block-articles .button,
-.block-views-blockhome-page-views-block-featured > h2.subtitle,
-.block-views-blockhome-page-views-block-featured .button,
-.is-article .background-replacement-for-no-image {
-  background-color: #478D00;
-  color: hsl(221, 14%, 100%);
-}
-.page--content-item--article .background-replacement-for-no-image a,
-.block-views-blockhome-page-views-block-articles > h2.subtitle a,
-.block-views-blockhome-page-views-block-articles .button a,
-.block-views-blockhome-page-views-block-featured > h2.subtitle a,
-.block-views-blockhome-page-views-block-featured .button a,
-.is-article .background-replacement-for-no-image a {
-  color: hsl(221, 14%, 100%);
-}
-
-.page--content-item--blog .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-blogs > h2.subtitle,
-.block-views-blockhome-page-views-block-blogs .button,
-.is-blog .background-replacement-for-no-image {
-  background-color: #4391E0;
-  color: hsl(221, 14%, 100%);
-}
-.page--content-item--blog .background-replacement-for-no-image a,
-.block-views-blockhome-page-views-block-blogs > h2.subtitle a,
-.block-views-blockhome-page-views-block-blogs .button a,
-.is-blog .background-replacement-for-no-image a {
-  color: hsl(221, 14%, 100%);
-}
-
-.page--content-item--collection .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-collections > h2.subtitle,
-.block-views-blockhome-page-views-block-collections .button,
-.is-collection .background-replacement-for-no-image {
-  background-color: #AD7442;
-  color: hsl(221, 14%, 100%);
-}
-.page--content-item--collection .background-replacement-for-no-image a,
-.block-views-blockhome-page-views-block-collections > h2.subtitle a,
-.block-views-blockhome-page-views-block-collections .button a,
-.is-collection .background-replacement-for-no-image a {
-  color: hsl(221, 14%, 100%);
-}
-
-.page--content-item--gleaning .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-gleanings > h2.subtitle,
-.block-views-blockhome-page-views-block-gleanings .button,
-.is-gleaning .background-replacement-for-no-image {
-  background-color: #ffdd57;
-  color: hsl(221, 14%, 4%);
-}
-.page--content-item--gleaning .background-replacement-for-no-image a,
-.block-views-blockhome-page-views-block-gleanings > h2.subtitle a,
-.block-views-blockhome-page-views-block-gleanings .button a,
-.is-gleaning .background-replacement-for-no-image a {
-  color: hsl(221, 14%, 4%);
-}
-
-.page--content-item--gleaning .page-title {
-  background-color: #ffdd57;
-}
-
-/*# sourceMappingURL=global.css.map */
+/* If there's no featured image, leave enough blank space for the dropping down title. */
+.content.no-featured-image {
+  margin-top: 4rem; }
diff --git a/web/themes/custom/geofresco/dist/css/overrides.css b/web/themes/custom/geofresco/dist/css/overrides.css
index 3b3f40f..9cfef7f 100644
--- a/web/themes/custom/geofresco/dist/css/overrides.css
+++ b/web/themes/custom/geofresco/dist/css/overrides.css
@@ -12,28 +12,8 @@
   padding-top: 1.5rem;
 }
 */
-#block-geofresco-local-tasks {
-  position: relative;
-  top: -1.5rem; }
-
 .footer {
   background-image: url("/themes/custom/geofresco/images/grassland-wark-forest.jpg");
   background-position: center;
   height: 40rem;
   background-size: cover; }
-
-/* The not last child stuff is needed to prevent some crazy Bulma rule that
-   sets a margin of 1.5rem on bloody everything not last child. */
-.title,
-.subtitle,
-.subtitle:not(:last-child),
-.title:not(:last-child) {
-  margin-bottom: 0.5em; }
-
-.tag.hidden {
-  display: none; }
-
-/* Comment section TODO move to a proper non-overrides section, possibly into Octavia base theme! */
-.comment-indicator {
-  position: absolute;
-  left: -4rem; }
diff --git a/web/themes/custom/geofresco/dist/js/responsive-iframes.js b/web/themes/custom/geofresco/dist/js/responsive-iframes.js
index d44de87..6c5b5fb 100644
--- a/web/themes/custom/geofresco/dist/js/responsive-iframes.js
+++ b/web/themes/custom/geofresco/dist/js/responsive-iframes.js
@@ -8,12 +8,12 @@
   'use strict';
 
   // Find all iframes
-  var $iframes = $( "iframe" ).not(".mastodon-embed");
+  var $iframes = $( "iframe" );
 
   // Find and save the aspect ratio for all iframes
   $iframes.each(function () {
     $( this ).data( "ratio", this.height / this.width )
-      // Remove the hardcoded width and height attributes
+      // Remove the hardcoded width &amp;amp;#x26; height attributes
       .removeAttr( "width" )
       .removeAttr( "height" );
   });
@@ -21,7 +21,7 @@
   // Resize the iframes when the window is resized
   $( window ).resize( function () {
     $iframes.each( function() {
-      // Get the parent container's width
+      // Get the parent container&amp;amp;#x27;s width
       var width = $( this ).parent().width();
       $( this ).width( width )
         .height( width * $( this ).data( "ratio" ) );
diff --git a/web/themes/custom/geofresco/geofresco.info.yml b/web/themes/custom/geofresco/geofresco.info.yml
index 3b5c054..e633873 100644
--- a/web/themes/custom/geofresco/geofresco.info.yml
+++ b/web/themes/custom/geofresco/geofresco.info.yml
@@ -3,7 +3,7 @@ description: Customization of Drutopia's Bulma-based Octavia theme for Grassroot
 type: theme
 base theme: octavia
 package: Custom
-core_version_requirement: ^8 || ^9 || ^10
+core: 8.x
 
 logo: images/geo-logo-sun-road.png
 
@@ -39,9 +39,11 @@ libraries:
 # to reference .twig files in your sass/ directory by using the Twig namespace:
 # @geofresco
 # See https://www.drupal.org/project/components for more information.
-components:
-  namespaces:
-    geofresco:
+component-libraries:
+  geofresco:
+    paths:
+      - src/components
+      - src/layout
       - src/templates
 
 libraries-override:
diff --git a/web/themes/custom/geofresco/geofresco.theme b/web/themes/custom/geofresco/geofresco.theme
deleted file mode 100644
index 97ec8c5..0000000
--- a/web/themes/custom/geofresco/geofresco.theme
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-/**
- * Preprocess functions for GEO site.
- */
-
-/**
- * Implements hook_preprocess_page_title();
- *
- * @param $variables
- */
-function geofresco_preprocess_page_title(&$variables) {
-  // WE SHALL BE SHAMELESS.
-  if (!isset($variables['title']) || !is_array($variables['title'])) {
-    // The pages we're interested in have title as markup, so bail if it's not.
-    return;
-  }
-  $string = isset($variables['title']['#markup']) ? $variables['title']['#markup'] : FALSE;
-  if ($string && strlen($string) > 7 && $pos = strpos($string, "'s blog", -7)) {
-    $uid = substr($string, 0, $pos);
-    if (is_numeric($uid) && $account = \Drupal\user\Entity\User::load($uid)) {
-      $variables['title'] = [
-        '#markup' => t("@username's blog",
-          ['@username' => $account->getDisplayName()])
-      ];
-    }
-  }
-}
-
-/**
- * Implements hook_preprocess_HOOK() for comment.
- *
- * Shortens and stacks username and submitted date.
- */
-function geofresco_preprocess_comment(array &$variables) {
-  $comment = $variables['elements']['#comment'];
-  if (isset($comment->in_preview)) {
-    $variables['permalink_url'] = new Url('<front>');
-  }
-  else {
-    $variables['permalink_url'] = $comment->permalink();
-  }
-}
diff --git a/web/themes/custom/geofresco/gulp-tasks/clean.js b/web/themes/custom/geofresco/gulp-tasks/clean.js
new file mode 100644
index 0000000..ef1d250
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/clean.js
@@ -0,0 +1,33 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var del = require('del');
+
+// Export our tasks.
+module.exports = {
+
+  // Clean style guide files.
+  styleguide: function() {
+    // You can use multiple globbing patterns as you would with `gulp.src`
+    return del([
+      './dist/style-guide/*'
+    ], {force: true});
+  },
+
+  // Clean CSS files.
+  css: function() {
+    return del([
+      './dist/css/*'
+    ], {force: true});
+  },
+
+  // Clean JS files.
+  js: function() {
+    return del([
+      './dist/js/*'
+    ], {force: true});
+  }
+};
diff --git a/web/themes/custom/geofresco/gulp-tasks/compile.js b/web/themes/custom/geofresco/gulp-tasks/compile.js
new file mode 100644
index 0000000..5c84b99
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/compile.js
@@ -0,0 +1,70 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include gulp
+//=======================================================
+var gulp = require('gulp');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var sass        = require('gulp-sass');
+var prefix      = require('gulp-autoprefixer');
+var sourcemaps  = require('gulp-sourcemaps');
+var sync        = require('browser-sync');
+var babel       = require('gulp-babel');
+var rename      = require('gulp-rename');
+
+// Small error handler helper function.
+function handleError(err) {
+  console.log(err.toString());
+  this.emit('end');
+}
+
+// Export our tasks.
+module.exports = {
+
+  // Compile Sass.
+  sass: function() {
+    return gulp.src('./src/{global,layout,components}/**/*.scss')
+      .pipe(
+        sass({ outputStyle: 'nested' })
+          .on('error', handleError)
+      )
+      .pipe(prefix({
+        cascade: false
+      }))
+      .pipe(rename(function (path) {
+        path.dirname = '';
+        return path;
+      }))
+      .pipe(gulp.dest('./dist/css'))
+      .pipe(sync.stream({match: '**/*.css'}));
+  },
+
+  // Compile JavaScript.
+  js: function() {
+    return gulp.src([
+      './src/{global,layout,components}/**/*.es6.js'
+    ], { base: './' })
+      .pipe(sourcemaps.init())
+      .pipe(
+        babel()
+          .on('error', handleError)
+      )
+      .pipe(rename(function (path) {
+        // Currently not using ES6 modules so for now
+        // es6 files are compiled into individual JS files.
+        // Eventually this can use ES6 Modules and compile
+        // all files within a component directory into a single
+        // foo.bundle.js file. In that case the bundle name should
+        // reflect the components directory name.
+        path.dirname = '';
+        path.basename = path.basename.replace(/\.es6/, '');
+        return path;
+      }))
+      .pipe(sourcemaps.write('./'))
+      .pipe(gulp.dest('./dist/js'));
+  }
+};
diff --git a/web/themes/custom/geofresco/gulp-tasks/compress.js b/web/themes/custom/geofresco/gulp-tasks/compress.js
new file mode 100644
index 0000000..428d3b4
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/compress.js
@@ -0,0 +1,35 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include gulp
+//=======================================================
+var gulp = require('gulp');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var rename      = require('gulp-rename');
+var imagemin    = require('gulp-imagemin');
+
+// Export our tasks.
+module.exports = {
+
+  // Compress svg/png/jpg files.
+  assets: function() {
+    return gulp.src([
+      './src/{global,layout,components}/**/*{.png,.jpg,.svg}'
+    ])
+      .pipe(imagemin({
+        progressive: true,
+        svgoPlugins: [{
+          removeViewBox: false
+        }]
+      }))
+      .pipe(rename(function (path) {
+        path.dirname = '';
+        return path;
+      }))
+      .pipe(gulp.dest('./dist/assets'));
+  }
+};
diff --git a/web/themes/custom/geofresco/gulp-tasks/concat.js b/web/themes/custom/geofresco/gulp-tasks/concat.js
new file mode 100644
index 0000000..b1af0f1
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/concat.js
@@ -0,0 +1,42 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include gulp
+//=======================================================
+var gulp = require('gulp');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var concat      = require('gulp-concat');
+var order       = require('gulp-order');
+var sync        = require('browser-sync');
+
+// Export our tasks.
+module.exports = {
+
+  // Concat all CSS into a master bundle.
+  css: function() {
+    return gulp.src([
+      './dist/css/*.css'
+    ])
+      // Reorder the files so global is first.
+      // If you need to get fancier with the order here's an example:
+      // .pipe(order([
+      //   'dist/css/global.css',
+      //   'src/components/**/*.css',
+      //   'dist/css/btn.css',
+      //   'dist/css/form-item.css',
+      //   'dist/css/form-float-label.css',
+      //   'dist/css/*.css'
+      // ], { base: './' }))
+      .pipe(order([
+        'dist/css/global.css',
+        'dist/css/*.css'
+      ], { base: './' }))
+      .pipe(concat('all.css'))
+      .pipe(gulp.dest('./dist/all'))
+      .pipe(sync.stream());
+  }
+};
diff --git a/web/themes/custom/geofresco/gulp-tasks/lint.js b/web/themes/custom/geofresco/gulp-tasks/lint.js
new file mode 100644
index 0000000..a992d1c
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/lint.js
@@ -0,0 +1,36 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include gulp
+//=======================================================
+var gulp = require('gulp');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var sassLint = require('gulp-sass-lint');
+var eslint   = require('gulp-eslint');
+
+// Export our tasks.
+module.exports = {
+
+  // Lint Sass based on .sass-lint.yml config.
+  sass: function() {
+    return gulp.src([
+      './src/{global,layout,components}/**/*.scss',
+    ])
+      .pipe(sassLint())
+      .pipe(sassLint.format());
+  },
+
+  // Lint JavaScript based on .eslintrc config.
+  js: function() {
+    return gulp.src([
+      './src/{global,layout,components}/**/*.js',
+      '!./src/components/**/vendors/*'
+    ])
+      .pipe(eslint())
+      .pipe(eslint.format());
+  }
+};
diff --git a/web/themes/custom/geofresco/gulp-tasks/move.js b/web/themes/custom/geofresco/gulp-tasks/move.js
new file mode 100644
index 0000000..7886f40
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/move.js
@@ -0,0 +1,33 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+// If some JS components aren't es6 we want to simply move them
+// into the dist folder. This allows us to clean the dist/js
+// folder on build.
+
+//=======================================================
+// Include gulp
+//=======================================================
+var gulp = require('gulp');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var rename = require('gulp-rename');
+
+// Export our tasks.
+module.exports = {
+
+  // Moves JavaScript.
+  js: function() {
+    return gulp.src([
+      './src/{global,layout,components}/**/*.js',
+      '!./src/{global,layout,components}/**/*.es6.js'
+    ], { base: './' })
+      .pipe(rename(function (path) {
+        path.dirname = '';
+        return path;
+      }))
+      .pipe(gulp.dest('./dist/js'));
+  }
+};
diff --git a/web/themes/custom/geofresco/gulp-tasks/styleguide.js b/web/themes/custom/geofresco/gulp-tasks/styleguide.js
new file mode 100644
index 0000000..b68586c
--- /dev/null
+++ b/web/themes/custom/geofresco/gulp-tasks/styleguide.js
@@ -0,0 +1,48 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include kss
+//=======================================================
+var kss = require('kss');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var path = require('path');
+
+// Export our tasks.
+module.exports = {
+
+  // Generate the style guide using the top level
+  // directory name passed in as a parameter.
+  generate: function(dirname) {
+
+    return kss({
+      source: [
+        dirname + '/src/global',
+        dirname + '/src/components',
+        dirname + '/src/layout'
+      ],
+      destination: dirname + '/dist/style-guide',
+      builder: dirname + '/src/style-guide/builder',
+      namespace: 'octavia:' + dirname + '/src/components/',
+      'extend-drupal8': true,
+      // The css and js paths are URLs, like '/misc/jquery.js'.
+      // The following paths are relative to the generated style guide.
+      // The all.css file is for the style guide ONLY so you don't have to
+      // keep adding the file here everytime you add a new component.
+      // Drupal libraries should be leveraged for adding CSS per component.
+      css: [
+        path.relative(
+          dirname + '/style-guide/',
+          dirname + '/all/all.css'
+        )
+      ],
+      js: [
+      ],
+      homepage: 'style-guide.md',
+      title: 'Style Guide'
+    });
+  }
+};
diff --git a/web/themes/custom/geofresco/gulpfile.js b/web/themes/custom/geofresco/gulpfile.js
new file mode 100644
index 0000000..dd816d4
--- /dev/null
+++ b/web/themes/custom/geofresco/gulpfile.js
@@ -0,0 +1,176 @@
+/*eslint strict: ["error", "global"]*/
+'use strict';
+
+//=======================================================
+// Include gulp
+//=======================================================
+var gulp = require('gulp');
+
+//=======================================================
+// Include Our Plugins
+//=======================================================
+var sync        = require('browser-sync');
+var runSequence = require('run-sequence');
+
+//=======================================================
+// Include Our tasks.
+//
+// Each task is broken apart to it's own node module.
+// Check out the ./gulp-tasks directory for more.
+//=======================================================
+var taskCompile     = require('./gulp-tasks/compile.js');
+var taskMove        = require('./gulp-tasks/move.js');
+var taskLint        = require('./gulp-tasks/lint.js');
+var taskCompress    = require('./gulp-tasks/compress.js');
+var taskClean       = require('./gulp-tasks/clean.js');
+
+var taskStyleGuide  = require('./gulp-tasks/styleguide.js');
+var taskConcat      = require('./gulp-tasks/concat.js');
+
+//=======================================================
+// Compile Our Sass and JS
+// We also move some files if they don't need
+// to be compiled.
+//=======================================================
+gulp.task('compile', ['compile:sass', 'compile:js', 'move:js']);
+
+// Compile Sass
+gulp.task('compile:sass', function() {
+  return taskCompile.sass();
+});
+
+// Compile JavaScript ES2015 to ES5.
+gulp.task('compile:js', function() {
+  return taskCompile.js();
+});
+
+// If some JS components aren't es6 we want to simply move them
+// into the dist folder. This allows us to clean the dist/js
+// folder on build.
+gulp.task('move:js', function() {
+  return taskMove.js();
+});
+
+//=======================================================
+// Lint Sass and JavaScript
+//=======================================================
+gulp.task('lint', ['lint:sass', 'lint:js']);
+
+// Lint Sass based on .sass-lint.yml config.
+gulp.task('lint:sass', function () {
+  return taskLint.sass();
+});
+
+// Lint JavaScript based on .eslintrc config.
+gulp.task('lint:js', function () {
+  return taskLint.js();
+});
+
+//=======================================================
+// Compress Files
+//=======================================================
+gulp.task('compress', function() {
+  return taskCompress.assets();
+});
+
+//=======================================================
+// Generate style guide
+//=======================================================
+gulp.task('styleguide', function() {
+  return taskStyleGuide.generate(__dirname);
+});
+
+//=======================================================
+// Concat all CSS files into a master bundle.
+//=======================================================
+gulp.task('concat', function () {
+  return taskConcat.css();
+});
+
+//=======================================================
+// Clean all directories.
+//=======================================================
+gulp.task('clean', ['clean:css', 'clean:js', 'clean:styleguide']);
+
+// Clean style guide files.
+gulp.task('clean:styleguide', function () {
+  return taskClean.styleguide();
+});
+
+// Clean CSS files.
+gulp.task('clean:css', function () {
+  return taskClean.css();
+});
+
+// Clean JS files.
+gulp.task('clean:js', function () {
+  return taskClean.js();
+});
+
+//=======================================================
+// Watch and recompile sass.
+//=======================================================
+
+// Pull the sass watch task out so we can use run sequence.
+
+gulp.task('watch:sass', function(callback) {
+  runSequence(
+    ['lint:sass', 'compile:sass'],
+    'concat',
+    callback
+  );
+});
+
+// Main watch task.
+gulp.task('watch', function() {
+
+  // BrowserSync proxy setup
+  // Uncomment this and swap proxy with your local env url.
+  // NOTE: for this to work in Drupal, you must install and enable
+  // https://www.drupal.org/project/link_css. This module should
+  // NOT be committed to the repo OR enabled on production.
+  //
+  // This should work out of the box for work within the style guide.
+  //
+  // sync.init({
+  //   open: false,
+  //   proxy: 'http://test.mcdev'
+  // });
+
+  // Watch all my sass files and compile sass if a file changes.
+  gulp.watch(
+    './src/{global,layout,components}/**/*.scss',
+    ['watch:sass']
+  );
+
+  // Watch all my JS files and compile if a file changes.
+  gulp.watch([
+    './src/{global,layout,components}/**/*.js'
+  ], ['lint:js', 'compile:js']);
+
+  // Watch all my twig files and rebuild the style guide if a file changes.
+  gulp.watch(
+    './src/{layout,components}/**/*.twig',
+    ['watch:styleguide']
+  );
+
+});
+
+// Reload the browser if the style guide is updated.
+gulp.task('watch:styleguide', ['styleguide'], sync.reload);
+
+//=======================================================
+// Default Task
+//
+// runSequence runs 'clean' first, and when that finishes
+// 'lint', 'compile', 'compress', 'styleguide' run
+// at the same time. 'concat' runs last.
+//=======================================================
+gulp.task('default', function(callback) {
+  runSequence(
+    'clean',
+    ['lint', 'compile', 'compress', 'styleguide'],
+    'concat',
+    callback
+  );
+});
diff --git a/web/themes/custom/geofresco/package.json b/web/themes/custom/geofresco/package.json
index 878d89a..42c0db4 100644
--- a/web/themes/custom/geofresco/package.json
+++ b/web/themes/custom/geofresco/package.json
@@ -1,21 +1,59 @@
 {
   "name": "geofresco",
-  "version": "1.1.0",
+  "version": "1.0.0",
   "scripts": {
-    "sass-dev": "sass --watch --update --style=expanded src/global:dist/css",
-    "sass-prod": "sass --no-source-map --style=compressed src/global:dist/css"
+    "build": "gulp",
+    "compile": "gulp compile",
+    "watch": "gulp watch",
+    "styleguide": "gulp styleguide",
+    "compress": "gulp compress",
+    "lint": "gulp lint",
+    "clean": "gulp clean",
+    "gulp": "gulp"
+  },
+  "babel": {
+    "presets": [
+      [
+        "env",
+        {
+          "targets": {
+            "browsers": [
+              "IE >= 9",
+              "last 3 versions"
+            ]
+          }
+        }
+      ]
+    ],
+    "plugins": [
+      "transform-remove-strict-mode"
+    ]
   },
   "browserslist": [
     "IE >= 9",
     "last 3 versions"
   ],
   "devDependencies": {
-      "autoprefixer": "latest",
-      "postcss": "latest",
-      "postcss-cli": "latest"
+    "babel-plugin-transform-remove-strict-mode": "0.0.2",
+    "babel-preset-env": "^1.6.0",
+    "browser-sync": "^2.18.12",
+    "del": "^3.0.0",
+    "gulp": "^3.9.1",
+    "gulp-autoprefixer": "^4.0.0",
+    "gulp-babel": "^6.1.2",
+    "gulp-concat": "^2.6.1",
+    "gulp-eslint": "^4.0.0",
+    "gulp-imagemin": "^3.3.0",
+    "gulp-order": "^1.1.1",
+    "gulp-rename": "^1.2.2",
+    "gulp-sass": "^3.1.0",
+    "gulp-sass-lint": "^1.3.2",
+    "gulp-sourcemaps": "^2.6.0",
+    "kss": "^3.0.0-beta.18",
+    "run-sequence": "^2.0.0"
   },
   "dependencies": {
-    "bulma": "^1.0.2",
-    "sass": "^1.86.0"
+    "bulma": "^0.7.2",
+    "bulma-extensions": "^1.0.4"
   }
 }
diff --git a/web/themes/custom/geofresco/src/components/.gitkeep b/web/themes/custom/geofresco/src/components/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/web/themes/custom/geofresco/src/global/_base.scss b/web/themes/custom/geofresco/src/global/_base.scss
index 2398d02..85a6668 100644
--- a/web/themes/custom/geofresco/src/global/_base.scss
+++ b/web/themes/custom/geofresco/src/global/_base.scss
@@ -1,7 +1,5 @@
 @charset "utf-8";
 
-@use "variables" as *;
-
 // Set our custom font for all headers and menus
 .title,
 .subtitle,
diff --git a/web/themes/custom/geofresco/src/global/_components.scss b/web/themes/custom/geofresco/src/global/_components.scss
index 5f9c2af..d3e61f5 100644
--- a/web/themes/custom/geofresco/src/global/_components.scss
+++ b/web/themes/custom/geofresco/src/global/_components.scss
@@ -4,10 +4,6 @@
  * ../../node_modules/bulma/sass/components
  */
 
-@use "variables" as *;
-@use "../../node_modules/bulma/sass/utilities/mixins" as *;
-@use "../../node_modules/bulma/sass/utilities/initial-variables" as *;
-
 /**
  * Make menu items slightly less far apart so we never entirely lose
  * 'Community' on mid-size screens.
@@ -22,51 +18,6 @@
   }
 }
 
-.geo-logo-name {
-  display: flex !important;
-  overflow: hidden;
-  width: 100%;
-  .logo, .sitename {
-    display: table-cell;
-  }
-  .logo a {
-    display: block;
-    width: 199px;
-  }
-  @include from($tablet) {
-    width: fit-content;
-  }
-  @include until($mini) {
-    justify-content: flex-end;
-  }
-}
-
-@include until($desktop) {
-  .search-bar {
-    display: none !important;
-  }
-}
-
-// Mostly to reduce the impact of the ridiculous (mostly on Chrome) ghost mobile horizontal scroll.
-.search-icon {
-  padding-right: 1rem;
-}
-
-#navbar-menu {
-  display: flex;
-  // More modern Bulma has is-flex-wrap-wrap as a class for this.
-  flex-wrap: wrap;
-  @include until($tablet) {
-    width: 100%;
-    justify-content: space-around;
-  }
-  @include from($desktop) {
-    flex-wrap: nowrap;
-    margin-right: -1rem;
-  }
-}
-
-
 /* Featured images on article pages */
 .featured-image figure.image {
   width: 100vw;
@@ -75,68 +26,20 @@
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
-  max-height: 27rem;
-  overflow-y: hidden;
   img {
     width: 100%;
   }
-  @include from($widescreen) {
-    max-height: 36rem;
-  }
 }
 
 /* Hero image in hero block */
-.footer {
-  .paragraph {
-    margin-bottom: 0;
-  }
-  .has-background-image.hero.is-medium {
-    background-color: black;
-    width: 100vw;
-    position: relative;
-    left: 50%;
-    right: 50%;
-    margin-left: -50vw;
-    margin-right: -50vw;
-    height: 200px;
-    @include from ($tablet) {
-      height: 400px;
-    }
-    img {
-      opacity: .7;
-    }
-    .hero-body {
-      padding: 3rem 1.5rem;
-      @include from ($tablet) {
-        padding-top: 9rem;
-        padding-bottom: 7rem;
-      }
-    }
-  }
+.has-background-image.hero {
+  width: 100vw;
+  position: relative;
+  left: 50%;
+  right: 50%;
+  margin-left: -50vw;
+  margin-right: -50vw;
 }
-.has-background-image.hero.is-medium {
-  img {
-    height: 200px;
-    max-height: 400px;
-    object-fit: cover;
-    position: absolute;
-    @include from($tablet) {
-      height: auto;
-    }
-  }
-  .hero-body {
-    padding: 5.5rem 1rem;
-    @include from ($tablet) {
-      padding-top: 12rem;
-      padding-bottom: 12rem;
-    }
-    .container.is-fluid {
-      margin-left: 32px;
-      margin-right: 32px;
-    }
-  }
-}
-
 
 /* Slim down section vertical padding a bit.*/
 .section {
@@ -160,7 +63,6 @@
     padding: 0.2em;
     border-radius: 0.3em;
   }
-  /* We're not displaying this at all anymore
   &.views-field-changed {
     font-size: 0.8em;
     color: $green-gray;
@@ -168,32 +70,10 @@
     margin-bottom: 0.4rem;
     text-align: right;
   }
-   */
 }
 
 .page-title .title > span {
   background-color: rgba($offwhite, 0.66);
   padding: 0.4em 0.3em 0.3em 0.3em;
   border-radius: 0.4em;
-  line-height: 1.8;
-}
-
-.block--footer_menus {
-  background-color: rgba($offwhite, 0.9);
-  padding: 0.2em;
-  border-radius: 0.3em;
-}
-
-@include until($tablet) {
-  .comment-section {
-
-    article {
-      display: block;
-      padding-bottom: 0;
-    }
-
-    .content p:not(:last-child) {
-      margin-bottom: 0;
-    }
-  }
 }
diff --git a/web/themes/custom/geofresco/src/global/_content.scss b/web/themes/custom/geofresco/src/global/_content.scss
deleted file mode 100644
index f7df403..0000000
--- a/web/themes/custom/geofresco/src/global/_content.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-/**
- * Styles related to contributor-added content on the site, such as embedded
- * media.
- */
-
-iframe {
-  width: 100%;
-  height: 100%;
-  &.mastodon-embed {
-    height: revert-layer;
-  }
-}
diff --git a/web/themes/custom/geofresco/src/global/_elements.scss b/web/themes/custom/geofresco/src/global/_elements.scss
index 8e99088..4f6639c 100644
--- a/web/themes/custom/geofresco/src/global/_elements.scss
+++ b/web/themes/custom/geofresco/src/global/_elements.scss
@@ -1,8 +1,6 @@
 @charset "UTF-8";
 /* Extend or override Bulma's elements ../../node_modules/bulma/sass/elements */
 
-@use "../../node_modules/bulma/sass/utilities/derived-variables" as *;
-@use "variables" as *;
 
 .site-title {
   display: inline-block;
@@ -21,12 +19,12 @@
 .header,
 .sitename {
   background: linear-gradient(
-    $background,
-    $background 74px,
+    $body-background-color,
+    $body-background-color 74px,
     $light-green 74px,
     $green 120px,
-    $background 120px,
-    $background
+    $body-background-color 120px,
+    $body-background-color
   );
 }
 
@@ -48,27 +46,3 @@
 .featured-image {
   margin-bottom: 0.5rem;
 }
-
-// TODO consider if this would look better with margin only on the content side
-// so somehow removing left margin if the inline style has float: left applied.
-// Also to consider decreasing the margin on mobile sizes.
-.image-inline {
-  margin: 1em;
-}
-
-
-.drum {
-  margin-bottom: 1.2rem;
-}
-
-/* Remove empty gap from featured homepage image, to match look of content. */
-.block--highlighted {
-  margin-top: -1.5rem;
-}
-
-/* I know this is wrong but it seems to work flawlessly across sizes. */
-.more-link {
-  float: right;
-  position: relative;
-  top: -0.333rem;
-}
diff --git a/web/themes/custom/geofresco/src/global/_fonts.scss b/web/themes/custom/geofresco/src/global/_fonts.scss
index 5c21fba..4f51972 100644
--- a/web/themes/custom/geofresco/src/global/_fonts.scss
+++ b/web/themes/custom/geofresco/src/global/_fonts.scss
@@ -1,3 +1,5 @@
+$family-geo: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif !default
+
 @font-face {
     font-family: 'Ocan';
     src: url('../../fonts/OcanSansStd-Book.woff') format('woff');
diff --git a/web/themes/custom/geofresco/src/global/_layout.scss b/web/themes/custom/geofresco/src/global/_layout.scss
index 443ec0e..988bbbc 100644
--- a/web/themes/custom/geofresco/src/global/_layout.scss
+++ b/web/themes/custom/geofresco/src/global/_layout.scss
@@ -1,11 +1,10 @@
 @charset "UTF-8";
-// Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout
+/**
+ * Extend or override Bulma's layouts ../../node_modules/bulma/sass/layout
+ */
 
-@use "variables" as *;
-@use "../../node_modules/bulma/sass/utilities/mixins" as *;
-@use "../../node_modules/bulma/sass/utilities/initial-variables" as *;
+/* Center logo & sitename when they stack on tiny screens. */
 
-// Center logo & sitename when they stack on tiny screens.
 @include until($mini) {
   .sitename.column,
   .logo.column {
@@ -18,8 +17,7 @@
   display: inline-block;
 }
 
-
-// Allow the primary page content to be flush with the bottom of the slogan.
+/* Allow the primary page content to be flush with the bottom of the slogan. */
 .main-section {
   padding-top: 0;
   .group-header {
@@ -27,38 +25,15 @@
   }
 }
 
-// On certain node pages, drop the title over (where we want) the image (to be).
-.page--content-item--article,
-.page--content-item--blog,
-.page--content-item--collection,
-.page--content-item--people
-  {
-    .page-title {
-    height: 0;
-    position: relative;
-    overflow: visible;
-    z-index: 10;
-  }
+/* On any page except the home, drop the title over (where we want) the image (to be). */
+.page-title {
+  height: 0;
+  position: relative;
+  overflow: visible;
+  z-index: 10;
 }
 
-// Prevent a slight horizontal scroll.
-
-/* On content listing pages (e.g. card view mode). */
-.background-replacement-for-no-image {
-  height: 10rem;
-}
-/* On full content pages. */
-.featured-image .background-replacement-for-no-image {
-  height: 12rem;
-  @include from($desktop) {
-    height: 14rem;
-  }
-  @include from($widescreen) {
-    height: 16rem;
-  }
-}
-
-/* Yes i know i should just give author bios their own class */
-.node--type-people.node--view-mode-teaser {
-  margin-bottom: 1rem;
+/* If there's no featured image, leave enough blank space for the dropping down title. */
+.content.no-featured-image {
+  margin-top: 4rem;
 }
diff --git a/web/themes/custom/geofresco/src/global/_paint.scss b/web/themes/custom/geofresco/src/global/_paint.scss
deleted file mode 100644
index 6601345..0000000
--- a/web/themes/custom/geofresco/src/global/_paint.scss
+++ /dev/null
@@ -1,65 +0,0 @@
-/* All classes that are mostly about adding color. */
-
-@use "variables" as *;
-@use "../../node_modules/bulma/sass/utilities/initial-variables" as *;
-@use "../../node_modules/bulma/sass/utilities/derived-variables" as *;
-
-.background-replacement-for-no-image {
-  background-color: cadetblue;
-}
-
-/** This isn't color but it's what the color gets painted on so we'll let it stay. */
-.views-element-container.block--content > h2.subtitle {
-  padding: 0.2em 0.2em 0 0.2em;
-}
-
-/* Front page view titles (the h2) and more links (the button) get rather
-   un-SMACSS targeting, sorry. */
-.page--content-item--article .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-articles > h2.subtitle,
-.block-views-blockhome-page-views-block-articles .button,
-.block-views-blockhome-page-views-block-featured > h2.subtitle,
-.block-views-blockhome-page-views-block-featured .button,
-.is-article .background-replacement-for-no-image {
-  background-color: $article;
-  color: $white;
-  a {
-    color: $white;
-  }
-}
-.page--content-item--blog .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-blogs > h2.subtitle,
-.block-views-blockhome-page-views-block-blogs .button,
-.is-blog .background-replacement-for-no-image {
-  background-color: $blog;
-  color: $white;
-  a {
-    color: $white;
-  }
-}
-.page--content-item--collection .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-collections > h2.subtitle,
-.block-views-blockhome-page-views-block-collections .button,
-.is-collection .background-replacement-for-no-image {
-  background-color: $collection;
-  color: $white;
-  a {
-    color: $white;
-  }
-}
-.page--content-item--gleaning .background-replacement-for-no-image,
-.block-views-blockhome-page-views-block-gleanings > h2.subtitle,
-.block-views-blockhome-page-views-block-gleanings .button,
-.is-gleaning .background-replacement-for-no-image {
-  background-color: $gleaning;
-  color: $black;
-  a {
-    color: $black;
-  }
-}
-
-// Gleanings don't have the same faux-image structure (because they don't have
-// featured images) but we still want the title to look about the same.
-.page--content-item--gleaning .page-title {
-  background-color: $gleaning;
-}
diff --git a/web/themes/custom/geofresco/src/global/_variables.scss b/web/themes/custom/geofresco/src/global/_variables.scss
deleted file mode 100644
index 95e6662..0000000
--- a/web/themes/custom/geofresco/src/global/_variables.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-
-// Set brand colors.
-$blue: #4391E0;
-$red: #a70c20;
-$light-green: #65AB1F;
-$green: #478D00;
-$green-gray: #8FB489;
-$offwhite: #F8F8F8;
-
-$brown: #AD7442;
-// No idea where this yellow came from, apparently Bulma, but we never set it
-// yet it is the right color.  Anyway i'm past trying to figure things out.
-// Re-setting it here, just so that we can assign it to Gleanings, below.
-$yellow: #ffdd57;
-
-// A color for each content type
-$article: $green;
-$blog: $blue;
-$collection: $brown;
-$gleaning: $yellow;
-
-// Update Bulma's global variables.
-$primary: $green;
-
-$mini: 363px;
-
-// Font family
-$family-geo: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif !default;
diff --git a/web/themes/custom/geofresco/src/global/global.scss b/web/themes/custom/geofresco/src/global/global.scss
index 6ed762d..46f45d7 100644
--- a/web/themes/custom/geofresco/src/global/global.scss
+++ b/web/themes/custom/geofresco/src/global/global.scss
@@ -1,26 +1,37 @@
 // Bring in Bulma allowing us to extend and override it.
 
-@use "variables" as *;
+// Set brand colors.
+$blue: #4391E0;
+$red: #a70c20;
+$light-green: #65AB1F;
+$green: #478D00;
+$green-gray: #8FB489;
+$offwhite: #F8F8F8;
+
+// Update Bulma's global variables.
+$primary: $green;
+
+$mini: 363px;
+
 // Import each part of Bulma separately so we can layer in our styles.
 // Extend or override Bulam's base styles in this themes base.scss etc.
-@forward "../../node_modules/bulma/sass/utilities/_index";
-@forward "fonts";
-@forward "../../node_modules/bulma/sass/base/_index";
-@forward "base";
-@forward "../../node_modules/bulma/sass/elements/_index";
-@forward "elements";
-@forward "../../node_modules/bulma/sass/form/_index";
-@forward "form";
-$navbar-breakpoint: calc($mini/2);
-@forward "../../node_modules/bulma/sass/components/_index";
-@forward "components";
-@forward "../../node_modules/bulma/sass/grid/_index";
-@forward "grid";
-@forward "../../node_modules/bulma/sass/layout/_index";
-@forward "layout";
+@import "../../node_modules/bulma/sass/utilities/_all";
+@import "fonts";
+@import "../../node_modules/bulma/sass/base/_all";
+@import "base";
+@import "../../node_modules/bulma/sass/elements/_all";
+@import "elements";
+@import "../../node_modules/bulma/sass/form/_all";
+@import "form";
+$navbar-breakpoint: $mini/2;
+@import "../../node_modules/bulma/sass/components/_all";
+@import "components";
+@import "../../node_modules/bulma/sass/grid/_all";
+@import "grid";
+@import "../../node_modules/bulma/sass/layout/_all";
+@import "layout";
 
-// Stylesheets below will have access to all Bulma variables and mixins.
-@forward "content";
-@forward "paint";
+// You can add final styles below or import another Sass or SCSS stylesheet here
+// and it will have access to Bulma variables and mixins.
 
-// @forward '../../node_modules/bulma-extensions/bulma-timeline/dist/bulma-timeline';
+// @import '../../node_modules/bulma-extensions/bulma-timeline/dist/bulma-timeline';
diff --git a/web/themes/custom/geofresco/src/global/js/responsive-iframes.js b/web/themes/custom/geofresco/src/global/js/responsive-iframes.js
index d44de87..6c5b5fb 100644
--- a/web/themes/custom/geofresco/src/global/js/responsive-iframes.js
+++ b/web/themes/custom/geofresco/src/global/js/responsive-iframes.js
@@ -8,12 +8,12 @@
   'use strict';
 
   // Find all iframes
-  var $iframes = $( "iframe" ).not(".mastodon-embed");
+  var $iframes = $( "iframe" );
 
   // Find and save the aspect ratio for all iframes
   $iframes.each(function () {
     $( this ).data( "ratio", this.height / this.width )
-      // Remove the hardcoded width and height attributes
+      // Remove the hardcoded width &amp;amp;#x26; height attributes
       .removeAttr( "width" )
       .removeAttr( "height" );
   });
@@ -21,7 +21,7 @@
   // Resize the iframes when the window is resized
   $( window ).resize( function () {
     $iframes.each( function() {
-      // Get the parent container's width
+      // Get the parent container&amp;amp;#x27;s width
       var width = $( this ).parent().width();
       $( this ).width( width )
         .height( width * $( this ).data( "ratio" ) );
diff --git a/web/themes/custom/geofresco/src/global/overrides.scss b/web/themes/custom/geofresco/src/global/overrides.scss
index d608384..874304f 100644
--- a/web/themes/custom/geofresco/src/global/overrides.scss
+++ b/web/themes/custom/geofresco/src/global/overrides.scss
@@ -20,34 +20,9 @@
 }
 */
 
-#block-geofresco-local-tasks {
-  position: relative;
-  top: -1.5rem;
-}
-
 .footer {
   background-image: url('/themes/custom/geofresco/images/grassland-wark-forest.jpg');
   background-position: center;
   height: 40rem;
   background-size: cover;
 }
-
-/* The not last child stuff is needed to prevent some crazy Bulma rule that
-   sets a margin of 1.5rem on bloody everything not last child. */
-.title,
-.subtitle,
-.subtitle:not(:last-child),
-.title:not(:last-child) {
-  margin-bottom: 0.5em;
-}
-
-.tag.hidden {
-  display: none;
-}
-
-/* Comment section TODO move to a proper non-overrides section, possibly into Octavia base theme! */
-
-.comment-indicator {
-  position: absolute;
-  left: -4rem;
-}
diff --git a/web/themes/custom/geofresco/src/layout/.gitkeep b/web/themes/custom/geofresco/src/layout/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig b/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig
index 9b743af..996b9c2 100644
--- a/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig
+++ b/web/themes/custom/geofresco/src/templates/block/block--system-branding-block.html.twig
@@ -14,18 +14,18 @@
  * @ingroup themeable
  */
 #}
-<div class="column is-narrow geo-logo-name is-paddingless">
 {% if site_logo %}
-<div class="logo">
-  <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">
-    <img src="{{ site_logo }}" alt="GEO's logo, a gently winding path through green to a large bright sun on the horizon." />
-  </a>
+<div class="logo column is-narrow is-paddingless has-text-centered">
+  <figure class="image no-upscale">
+    <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">
+      <img src="{{ site_logo }}" alt="{{ site_name }} Home" />
+    </a>
+  </figure>
 </div>
 {% endif %}
-<div class="sitename">
+<div class="sitename column is-narrow is-paddingless has-text-centered">
   <a class="site-title title is-3" href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">
     <span class="green">Grassroots
       Economic</span>
     <span class="yellow">Organizing</span></a>
 </div>
-</div>
diff --git a/web/themes/custom/geofresco/src/templates/content/comment.html.twig b/web/themes/custom/geofresco/src/templates/content/comment.html.twig
deleted file mode 100644
index cd0dcd7..0000000
--- a/web/themes/custom/geofresco/src/templates/content/comment.html.twig
+++ /dev/null
@@ -1,97 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation for comments.
- *
- * Available variables:
- * - author: Comment author. Can be a link or plain text.
- * - content: The content-related items for the comment display. Use
- *   {{ content }} to print them all, or print a subset such as
- *   {{ content.field_example }}. Use the following code to temporarily suppress
- *   the printing of a given child element:
- *   @code
- *   {{ content|without('field_example') }}
- *   @endcode
- * - created: Formatted date and time for when the comment was created.
- *   Preprocess functions can reformat it by calling format_date() with the
- *   desired parameters on the 'comment.created' variable.
- * - changed: Formatted date and time for when the comment was last changed.
- *   Preprocess functions can reformat it by calling format_date() with the
- *   desired parameters on the 'comment.changed' variable.
- * - permalink: Comment permalink.
- * - submitted: Submission information created from author and created
- *   during template_preprocess_comment().
- * - user_picture: The comment author's profile picture.
- * - status: Comment status. Possible values are:
- *   unpublished, published, or preview.
- * - title: Comment title, linked to the comment.
- * - attributes: HTML attributes for the containing element.
- *   The attributes.class may contain one or more of the following classes:
- *   - comment: The current template type; for instance, 'theming hook'.
- *   - by-anonymous: Comment by an unregistered user.
- *   - by-{entity-type}-author: Comment by the author of the parent entity,
- *     eg. by-node-author.
- *   - preview: When previewing a new or edited comment.
- *   The following applies only to viewers who are registered users:
- *   - unpublished: An unpublished comment visible only to administrators.
- * - title_prefix: Additional output populated by modules, intended to be
- *   displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- *   displayed after the main title tag that appears in the template.
- * - content_attributes: List of classes for the styling of the comment content.
- * - title_attributes: Same as attributes, except applied to the main title
- *   tag that appears in the template.
- * - threaded: A flag indicating whether the comments are threaded or not.
- *
- * These variables are provided to give context about the parent comment (if
- * any):
- * - comment_parent: Full parent comment entity (if any).
- * - parent_author: Equivalent to author for the parent comment.
- * - parent_created: Equivalent to created for the parent comment.
- * - parent_changed: Equivalent to changed for the parent comment.
- * - parent_title: Equivalent to title for the parent comment.
- * - parent_permalink: Equivalent to permalink for the parent comment.
- * - parent: A text string of parent comment submission information created from
- *   'parent_author' and 'parent_created' during template_preprocess_comment().
- *   This information is presented to help screen readers follow lengthy
- *   discussion threads. You can hide this from sighted users using the class
- *   visually-hidden.
- *
- * These two variables are provided for context:
- * - comment: Full comment object.
- * - entity: Entity the comments are attached to.
- *
- * @see template_preprocess_comment()
- *
- * @ingroup themeable
- */
-#}
-
-<article{{ attributes.addClass('js-comment', 'media') }}>
-  {#
-    Hide the "new" indicator by default, let a piece of JavaScript ask the
-    server which comments are new for the user. Rendering the final "new"
-    indicator here would break the render cache.
-  #}
-  <mark class="hidden tag is-primary comment-indicator" data-comment-timestamp="{{ new_indicator_timestamp }}"></mark>
-    {% if parent %}
-        <p class="visually-hidden">{{ parent }}</p>
-    {% endif %}
-
-  <figure class="media-left">
-    <p>{{ author }}</p>
-    <p><small><a href="{{ permalink_url }}" class="permalink" rel="bookmark" title="{% trans %}Permalink{% endtrans %}">{{ created }}</a></small></p>
-    {{ user_picture }}
-    {# Until we have FlatComments in D8 officially, we'll do this.  Gnuget did
-    the port: https://www.drupal.org/project/flatcomments/issues/2820578 #}
-    {% if user.hasPermission('administer comments') %}
-      {{ content.links }}
-    {% endif %}
-  </figure>
-
-  <div class="media-content">
-    <div class="content">
-      {{ content|without('links') }}
-    </div>
-  </div>
-</article>
diff --git a/web/themes/custom/geofresco/src/templates/elements/container--more-link.html.twig b/web/themes/custom/geofresco/src/templates/elements/container--more-link.html.twig
deleted file mode 100644
index c84d223..0000000
--- a/web/themes/custom/geofresco/src/templates/elements/container--more-link.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
- * @file
- * Theme override of a container used to wrap child elements.
- *
- * Used for grouped form items. Can also be used as a theme wrapper for any
- * renderable element, to surround it with a <div> and HTML attributes.
- * See \Drupal\Core\Render\Element\RenderElement for more
- * information on the #theme_wrappers render array property, and
- * \Drupal\Core\Render\Element\container for usage of the container render
- * element.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing element.
- * - children: The rendered child elements of the container.
- * - has_parent: A flag to indicate that the container has one or more parent
-     containers.
- *
- * @see template_preprocess_container()
- */
-#}
-<div{{ attributes.addClass('button') }}>{{ children }}</div>
diff --git a/web/themes/custom/geofresco/src/templates/elements/field--field-subtitle.html.twig b/web/themes/custom/geofresco/src/templates/elements/field--field-subtitle.html.twig
index dcae43e..35294b2 100644
--- a/web/themes/custom/geofresco/src/templates/elements/field--field-subtitle.html.twig
+++ b/web/themes/custom/geofresco/src/templates/elements/field--field-subtitle.html.twig
@@ -37,5 +37,5 @@
  */
 #}
 {% for item in items %}
-   <h3{{ item.attributes.addClass('subtitle is-4 is-size-3-desktop is-size-2-widescreen') }}>{{ item.content }}</h3>
+   <h4{{ item.attributes.addClass('subtitle') }}>{{ item.content }}</h4>
 {% endfor %}
diff --git a/web/themes/custom/geofresco/src/templates/elements/field--node--field-media-image--full.html.twig b/web/themes/custom/geofresco/src/templates/elements/field--node--field-image.html.twig
similarity index 100%
rename from web/themes/custom/geofresco/src/templates/elements/field--node--field-media-image--full.html.twig
rename to web/themes/custom/geofresco/src/templates/elements/field--node--field-image.html.twig
diff --git a/web/themes/custom/geofresco/src/templates/elements/image.html.twig b/web/themes/custom/geofresco/src/templates/elements/image.html.twig
index 545911a..4ab5521 100644
--- a/web/themes/custom/geofresco/src/templates/elements/image.html.twig
+++ b/web/themes/custom/geofresco/src/templates/elements/image.html.twig
@@ -12,6 +12,6 @@
  * @ingroup themeable
  */
 #}
-<figure class="image">
+<figure class="image no-upscale">
   <img{{ attributes }} />
 </figure>
diff --git a/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig b/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig
index ffc614c..5d70476 100644
--- a/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig
+++ b/web/themes/custom/geofresco/src/templates/elements/menu--nav-bulma.html.twig
@@ -58,7 +58,7 @@
           %}
         {% endif %}
         {% if item.url|render == '/search' %}
-          {% set item_classes = item_classes|merge(['is-hidden-desktop search-icon']) %}
+          {% set item_classes = item_classes|merge(['is-hidden-tablet']) %}
         {% endif %}
       {% endif %}
       {{ link(
diff --git a/web/themes/custom/geofresco/src/templates/elements/page-title.html.twig b/web/themes/custom/geofresco/src/templates/elements/page-title.html.twig
index 9ab67f8..4424fd9 100644
--- a/web/themes/custom/geofresco/src/templates/elements/page-title.html.twig
+++ b/web/themes/custom/geofresco/src/templates/elements/page-title.html.twig
@@ -1,7 +1,7 @@
-{% extends "@stable9/content/page-title.html.twig" %}
+{% extends "@stable/content/page-title.html.twig" %}
 {#
 /**
  * Make page titles larger by adding a class (where size 1 is the largest).
  */
 #}
-{% set title_attributes = title_attributes.addClass("is-size-4 is-size-3-tablet is-size-2-desktop is-size-1-widescreen") %}
+{% set title_attributes = title_attributes.addClass("is-size-2") %}
diff --git a/web/themes/custom/geofresco/src/templates/layout/ds-1col--node-card.html.twig b/web/themes/custom/geofresco/src/templates/layout/ds-1col--node-card.html.twig
deleted file mode 100644
index ceaf294..0000000
--- a/web/themes/custom/geofresco/src/templates/layout/ds-1col--node-card.html.twig
+++ /dev/null
@@ -1,30 +0,0 @@
-{#
-/**
- * @file
- * Display Suite 1 column template.
- *
- * Available variables:
- * - ds_content_wrapper: wrapper around content
- * - attributes: content region attributes
- * - ds_content: content region
- */
-#}
-<{{ ds_content_wrapper }}{{ attributes.addClass('ds-1col', 'card', 'clearfix') }}>
-
-  {{ title_suffix.contextual_links }}
-
-{#
-  {% set route_options = [] %}
-  {% set route_options['node'] = node %}
-  {% set link_path = path('entity.node.canonical', route_options) %}
-  {{ url }}
-#}
-  {% set image = ds_content.field_media_image|render %}
-  {% if image %}
-    {{ image }}
-  {% else %}
-    <a href="/node/{{ node.id }}" class="background-replacement-for-no-image image"></a>
-  {% endif %}
-  {{ ds_content|without('field_media_image') }}
-
-</{{ ds_content_wrapper }}>
diff --git a/web/themes/custom/geofresco/src/templates/layout/ds-2col--node-teaser.html.twig b/web/themes/custom/geofresco/src/templates/layout/ds-2col--node-teaser.html.twig
deleted file mode 100644
index a724067..0000000
--- a/web/themes/custom/geofresco/src/templates/layout/ds-2col--node-teaser.html.twig
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "ds-2col.html.twig" %}
-{% set attributes = attributes.addClass('is-desktop') %}
-{%
-  set left_classes = [
-    'is-6-desktop',
-    'is-5-widescreen',
-  ]
-%}
-{% set left_attributes = left_attributes.addClass(left_classes) %}
diff --git a/web/themes/custom/geofresco/src/templates/layout/ds-2col-stacked.html.twig b/web/themes/custom/geofresco/src/templates/layout/ds-2col-stacked.html.twig
deleted file mode 100644
index 63f5902..0000000
--- a/web/themes/custom/geofresco/src/templates/layout/ds-2col-stacked.html.twig
+++ /dev/null
@@ -1,77 +0,0 @@
-{#
-/**
- * @file
- * Display Suite 2 column stacked template.
- *
- * Available variables:
- * - outer_wrapper: outer wrapper element
- * - header_wrapper: wrapper element around header region
- * - left_wrapper: wrapper element around left region
- * - right_wrapper: wrapper element around right region
- * - footer_wrapper: wrapper element around footer region
- * - attributes: layout attributes
- * - header_attributes: attributes for header region
- * - left_attributes: attributes for left region
- * - right_attributes: attributes for right region
- * - footer_attributes: attributes for footer region
- * - header: content of header region
- * - left: content of left region
- * - right: content of right region
- * - footer: content of footer region
- */
-#}
-{% set attributes = attributes.addClass('columns is-multiline') %}
-{%
-  set header_classes = [
-    'column',
-    'is-12'
-  ]
-%}
-{% set header_attributes = header_attributes.addClass(header_classes) %}
-{%
-  set left_classes = [
-    'column',
-    'is-3'
-  ]
-%}
-{% set left_attributes = left_attributes.addClass(left_classes) %}
-{%
-  set right_classes = [
-    'column',
-    'is-9'
-  ]
-%}
-{% set right_attributes = right_attributes.addClass(right_classes) %}
-{%
-  set footer_classes = [
-    'column',
-    'is-12'
-  ]
-%}
-{% set footer_attributes = footer_attributes.addClass(footer_classes) %}
-<{{ outer_wrapper }}{{ attributes.addClass('ds-2col-stacked', 'clearfix') }}>
-
-  {{ title_suffix.contextual_links }}
-
-  <{{ header_wrapper }}{{ header_attributes.addClass('group-header') }}>
-    {% if header.field_media_image|render is empty %}
-      <div class="featured-image">
-        <figure class="background-replacement-for-no-image image"></figure>
-      </div>
-    {% endif %}
-    {{ header }}
-  </{{ header_wrapper }}>
-
-  <{{ left_wrapper }}{{ left_attributes.addClass('group-left') }}>
-    {{ left }}
-  </{{ left_wrapper }}>
-
-  <{{ right_wrapper }}{{ right_attributes.addClass('group-right') }}>
-    {{ right }}
-  </{{ right_wrapper }}>
-
-  <{{ footer_wrapper }}{{ footer_attributes.addClass('group-footer') }}>
-    {{ footer }}
-  </{{ footer_wrapper }}>
-
-</{{ outer_wrapper }}>
diff --git a/web/themes/custom/geofresco/src/templates/layout/node.html.twig b/web/themes/custom/geofresco/src/templates/layout/node.html.twig
index 84b06b2..46e7cfb 100644
--- a/web/themes/custom/geofresco/src/templates/layout/node.html.twig
+++ b/web/themes/custom/geofresco/src/templates/layout/node.html.twig
@@ -80,6 +80,7 @@ node.isSticky() ? 'is-sticky',
 not node.isPublished() ? 'is-unpublished',
 view_mode ? view_mode|clean_class,
 'clearfix',
+content.field_image|render is empty ? 'no-featured-image',
 ] %}
 <article{{ attributes.addClass(classes) }}>
 
diff --git a/web/themes/custom/geofresco/src/templates/layout/page.html.twig b/web/themes/custom/geofresco/src/templates/layout/page.html.twig
index 3c7e6fd..8067182 100644
--- a/web/themes/custom/geofresco/src/templates/layout/page.html.twig
+++ b/web/themes/custom/geofresco/src/templates/layout/page.html.twig
@@ -16,15 +16,25 @@
   %}
 {% endif %}
 {% block navbar %}
-{# We put everything in Bulma columns so must do navbar in header block, not here #}
+{# We put everything in Bulma columns so must do navbar in header block #}
 {% endblock navbar %}
 {% block header %}
-<div class="header columns is-marginless">
+<div class="header columns is-mobile is-multiline is-marginless">
   {% block navbar_branding %}
   {{ page.navbar_branding }}
   {% endblock navbar_branding %}
   <nav class="navigation column">
     <div class="columns">
+      {% if page.header_search %}
+      <div class="search-bar column has-text-right">
+        {{ page.header_search }}
+      </div>
+      {% endif %}
+      {% if page.header_user %}
+      <div class="user-account-menu column is-narrow">
+        {{ page.header_user }}
+      </div>
+      {% endif %}
       {% block navbar_social %}
       {% if page.navbar_social %}
       <div class="column is-narrow">
@@ -34,26 +44,19 @@
       {% endblock navbar_social %}
       {% block primary_menu %}
       {% if page.primary_menu %}
-      <div class="column">
+      <div class="column is-narrow">
         {{ page.primary_menu }}
       </div>
       {% endif %}
       {% endblock primary_menu %}
-      {% if page.header_search %}
-      <div class="search-bar column is-narrow">
-        {{ page.header_search }}
-      </div>
-      {% endif %}
     </div>
   </nav>
 </div>
-{% if is_front %}
 <div class="columns">
   <div class="column has-text-centered">
     <p class="slogan"><strong class="title">{{ site_slogan }}</strong></p>
   </div>
 </div>
-{% endif %}
 {{ page.highlighted }}
 {{ page.help }}
 {% block tabs %}
@@ -67,7 +70,9 @@
   {# Header region #}
   <div class="container">
     <div class="columns is-vcentered">
-      {{ page.header }}
+      <div class="column">
+        {{ page.header }}
+      </div>
     </div>
   </div>
   {% endif %}
@@ -101,8 +106,8 @@
       {% endblock main_content %}
       {% block sidebar_first %}
       {# Sidebar first #}
-      {% if page.sidebar_first and not is_front and (not node or (node and node.bundle == 'page')) %}
-        {# Set attributes for content. #}
+      {% if page.sidebar_first and not is_front and (node and node.bundle == 'page') %}
+      {# Set attributes for content. #}
         {% if not page.sidebar_first_attributes %}
         {%
           set page = page|merge({
@@ -125,7 +130,7 @@
 </section>
 {% endblock main %}
 {% block footer %}
-{% if page.footer or page.footer_menus or page.footer_info or page.footer_notice or page.header_user %}
+{% if page.footer or page.footer_menus or page.footer_info or page.footer_notice%}
   <footer role="contentinfo" class="footer">
     <div class="container">
       {{ page.footer }}
@@ -134,14 +139,8 @@
           {{ page.footer_menus }}
         {% endif %}
         {% if page.footer_info %}
-          <div class="column">
-            {{ page.footer_info }}
-          </div>
-        {% endif %}
-        {% if page.header_user %}
-          <div class="user-account-menu column is-narrow">
-            {{ page.header_user }}
-          </div>
+          <div class="column"></div>
+          {{ page.footer_info }}
         {% endif %}
       </div>
       {% if page.footer_notice %}
diff --git a/web/themes/custom/geofresco/src/templates/paragraph/paragraph--slide.html.twig b/web/themes/custom/geofresco/src/templates/paragraph/paragraph--slide.html.twig
deleted file mode 100644
index 8540ef6..0000000
--- a/web/themes/custom/geofresco/src/templates/paragraph/paragraph--slide.html.twig
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "@octavia/paragraph/paragraph--slide.html.twig" %}
-
-{% set item_classes = item_classes ?? [] %}
-{%
-  set item_classes_override = item_classes|merge([
-    'button',
-    'is-primary',
-  ])
-%}
diff --git a/web/web.config b/web/web.config
index b769e45..3fc5b10 100644
--- a/web/web.config
+++ b/web/web.config
@@ -22,7 +22,7 @@
     <rewrite>
       <rules>
         <rule name="Protect files and directories from prying eyes" stopProcessing="true">
-          <match url="\.(engine|inc|install|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format|composer\.(json|lock)|\.htaccess|yarn.lock|package.json)$" />
+          <match url="\.(engine|inc|install|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format|composer\.(json|lock))$" />
           <action type="CustomResponse" statusCode="403" subStatusCode="0" statusReason="Forbidden" statusDescription="Access is forbidden." />
         </rule>
 
@@ -33,6 +33,18 @@
             <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
           </conditions>
         </rule>
+     <!-- If running on a PHP version affected by httpoxy vulnerability
+      uncomment the following rule to mitigate it's impact. To make this
+      rule work, you will also need to add HTTP_PROXY to the allowed server
+      variables manually in IIS. See https://www.drupal.org/node/2783079.
+        <rule name="Erase HTTP_PROXY" patternSyntax="Wildcard">
+          <match url="*.*" />
+          <serverVariables>
+            <set name="HTTP_PROXY" value="" />
+          </serverVariables>
+          <action type="None" />
+        </rule>
+    -->
     <!-- To redirect all users to access the site WITH the 'www.' prefix,
      http://example.com/foo will be redirected to http://www.example.com/foo)
      adapt and uncomment the following:   -->